body {
  font-family: 'Jost', sans-serif;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 3.7rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.625rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.96rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.59rem;
    font-size: calc( 1.945rem + (3.7 - 1.945) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.945rem + (3.7 - 1.945) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.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: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 2rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #8364e2 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
  box-shadow: #8364e2 2px 2px 20px 0px;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #4e26ca !important;
  border-color: #4e26ca !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
  box-shadow: #8364e2 2px 2px 20px 0px;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #4e26ca !important;
  border-color: #4e26ca !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  box-shadow: #47b5ed 2px 2px 20px 0px;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  box-shadow: #40b0bf 2px 2px 20px 0px;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  box-shadow: #ffe161 2px 2px 20px 0px;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  box-shadow: #ff9966 2px 2px 20px 0px;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white {
  color: #8364e2 !important;
  background-color: white;
}
.btn-white,
.btn-white:active {
  background-color: white !important;
  border-color: white !important;
  color: #000000 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #000000 !important;
  background-color: white !important;
  border-color: white !important;
  box-shadow: white 2px 2px 20px 0px;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #000000 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-white:hover,
.btn-white:active {
  color: #8364e2 !important;
  box-shadow: #8364e2 2px 2px 20px 0px;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
  box-shadow: #232323 2px 2px 20px 0px;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8364e2;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #4e26ca !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8364e2;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #4e26ca !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #8364e2 !important;
  border-color: #8364e2 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #8364e2 !important;
}
.text-secondary {
  color: #8364e2 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #4923bd !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #4923bd !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #8364e2;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #8364e2;
  border-color: #8364e2;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #8364e2;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #8364e2 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #8364e2;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #8364e2;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #8364e2;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #8364e2;
  border-bottom-color: #8364e2;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #8364e2 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #8364e2 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%238364e2' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uwyPqyMdOj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uwyPqyMdOj nav.navbar {
  position: fixed;
}
.cid-uwyPqyMdOj .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-uwyPqyMdOj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwyPqyMdOj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwyPqyMdOj .dropdown-item:hover,
.cid-uwyPqyMdOj .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uwyPqyMdOj .dropdown-item:hover span {
  color: white;
}
.cid-uwyPqyMdOj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwyPqyMdOj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwyPqyMdOj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwyPqyMdOj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwyPqyMdOj .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uwyPqyMdOj .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uwyPqyMdOj .container {
    flex-wrap: nowrap;
  }
}
.cid-uwyPqyMdOj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uwyPqyMdOj .dropdown-menu,
.cid-uwyPqyMdOj .navbar.opened {
  background: #000000 !important;
}
.cid-uwyPqyMdOj .nav-item:focus,
.cid-uwyPqyMdOj .nav-link:focus {
  outline: none;
}
.cid-uwyPqyMdOj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwyPqyMdOj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwyPqyMdOj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwyPqyMdOj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwyPqyMdOj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwyPqyMdOj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwyPqyMdOj .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-uwyPqyMdOj .navbar.opened {
  transition: all 0.3s;
}
.cid-uwyPqyMdOj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwyPqyMdOj .navbar .navbar-logo img {
  width: auto;
}
.cid-uwyPqyMdOj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwyPqyMdOj .navbar.collapsed {
  justify-content: center;
}
.cid-uwyPqyMdOj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwyPqyMdOj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uwyPqyMdOj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uwyPqyMdOj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwyPqyMdOj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwyPqyMdOj .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-uwyPqyMdOj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwyPqyMdOj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwyPqyMdOj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwyPqyMdOj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwyPqyMdOj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwyPqyMdOj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwyPqyMdOj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwyPqyMdOj .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-uwyPqyMdOj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwyPqyMdOj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwyPqyMdOj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwyPqyMdOj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwyPqyMdOj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwyPqyMdOj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwyPqyMdOj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwyPqyMdOj .navbar.navbar-short {
  min-height: 60px;
}
.cid-uwyPqyMdOj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwyPqyMdOj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uwyPqyMdOj .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-uwyPqyMdOj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwyPqyMdOj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwyPqyMdOj .dropdown-item.active,
.cid-uwyPqyMdOj .dropdown-item:active {
  background-color: transparent;
}
.cid-uwyPqyMdOj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwyPqyMdOj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwyPqyMdOj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwyPqyMdOj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uwyPqyMdOj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwyPqyMdOj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwyPqyMdOj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwyPqyMdOj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uwyPqyMdOj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uwyPqyMdOj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uwyPqyMdOj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uwyPqyMdOj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwyPqyMdOj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwyPqyMdOj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uwyPqyMdOj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwyPqyMdOj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uwyPqyMdOj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwyPqyMdOj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwyPqyMdOj .navbar-dropdown {
  position: fixed;
}
.cid-uwyPqyMdOj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwyPqyMdOj .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-uwyPqyMdOj .navbar {
    height: 70px;
  }
  .cid-uwyPqyMdOj .navbar.opened {
    height: auto;
  }
  .cid-uwyPqyMdOj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwyPqzaODp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwyPqzaODp .mbr-section-title {
  color: #0d0c22;
}
.cid-uwyPqzaODp .mbr-text,
.cid-uwyPqzaODp .mbr-section-btn {
  color: #727272;
}
.cid-uwyPqzaODp .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uwyPqzaODp img {
  border-radius: 2rem;
}
.cid-uwyPqzC0Og {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwyPqzC0Og .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uwyPqzC0Og .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwyPqzC0Og .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwyPqA1zFu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uwyPqA1zFu::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uwyPqA1zFu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwyPqA1zFu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwyPqA1zFu .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uwyPqA1zFu .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uwyPqA1zFu .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uwyPqA1zFu .container {
    padding: 0 22px;
  }
}
.cid-uwyPqA1zFu .row {
  position: relative;
  z-index: 1;
}
.cid-uwyPqA1zFu .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uwyPqA1zFu .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uwyPqA1zFu .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uwyPqA1zFu .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uwyPqA1zFu .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyPqA1zFu .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uwyPqA1zFu .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uwyPqA1zFu .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uwyPqA1zFu .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uwyPqA1zFu .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uwyPqA1zFu .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uwyPqA1zFu .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uwyPqA1zFu .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uwyPqA1zFu .nav-wrapper .list .item-wrap:hover,
.cid-uwyPqA1zFu .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uwyPqA1zFu .nav-wrapper .list .item-wrap:hover::before,
.cid-uwyPqA1zFu .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uwyPqA1zFu .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-uwyPqA1zFu .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyPqA1zFu .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uwyPqA1zFu .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uwyPqA1zFu .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uwyPqA1zFu .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uwyPqA1zFu .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uwyPqA1zFu .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uwyPqA1zFu .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uwyPqA1zFu .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uwyPqA1zFu .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uwyPqA1zFu .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uwyPqA1zFu .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-uwyPqA1zFu .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyPqA1zFu .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uwyPqA1zFu .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uwyPqA1zFu .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uwyPqA1zFu .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uwyPqA1zFu .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uwyPqA1zFu .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uwyPqA1zFu .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uwyPqA1zFu .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uwyPqA1zFu .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uwyPqA1zFu .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uwyPqA1zFu .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uwyPqA1zFu .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uwyPqA1zFu .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uwyPqA1zFu .mbr-section-title {
  color: #ffffff;
}
.cid-uwyPqA1zFu .mbr-text {
  color: #ffffff;
}
.cid-uwyPqA1zFu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uwyPqA1zFu .list {
  color: #ffffff;
}
.cid-uwyPqA1zFu .mbr-contact {
  color: #ffffff;
}
.cid-uwyPqA1zFu .mbr-desc {
  color: #ffffff;
}
.cid-uwyPqA1zFu .mbr-contact,
.cid-uwyPqA1zFu .item-contact {
  color: #ffffff;
}
.cid-uwyPqAFK9N.popup-builder {
  background-color: #ffffff;
}
.cid-uwyPqAFK9N.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwyPqAFK9N.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwyPqAFK9N .modal-content,
.cid-uwyPqAFK9N .modal-dialog {
  height: auto;
}
.cid-uwyPqAFK9N .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwyPqAFK9N .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwyPqAFK9N .form-wrapper .mbr-form .form-group,
  .cid-uwyPqAFK9N .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwyPqAFK9N .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwyPqAFK9N .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-uwyPqAFK9N .mbr-text {
  text-align: center;
}
.cid-uwyPqAFK9N .pt-0 {
  padding-top: 0 !important;
}
.cid-uwyPqAFK9N .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwyPqAFK9N .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwyPqAFK9N .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwyPqAFK9N .modal-open {
  overflow: hidden;
}
.cid-uwyPqAFK9N .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwyPqAFK9N .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwyPqAFK9N .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwyPqAFK9N .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-uwyPqAFK9N .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwyPqAFK9N .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwyPqAFK9N .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwyPqAFK9N .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-uwyPqAFK9N .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwyPqAFK9N .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwyPqAFK9N .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwyPqAFK9N .modal-backdrop.show {
  opacity: .5;
}
.cid-uwyPqAFK9N .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-uwyPqAFK9N .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyPqAFK9N .modal-header {
    padding: 1rem;
  }
}
.cid-uwyPqAFK9N .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwyPqAFK9N .modal-header .close svg {
  fill: #353535;
}
.cid-uwyPqAFK9N .modal-header .close:hover {
  opacity: 1;
}
.cid-uwyPqAFK9N .modal-header .close:focus {
  outline: none;
}
.cid-uwyPqAFK9N .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uwyPqAFK9N .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwyPqAFK9N .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyPqAFK9N .modal-body {
    padding: 1rem;
  }
}
.cid-uwyPqAFK9N .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-uwyPqAFK9N .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyPqAFK9N .modal-footer {
    padding: 1rem;
  }
}
.cid-uwyPqAFK9N .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwyPqAFK9N .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwyPqAFK9N .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwyPqAFK9N .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwyPqAFK9N .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwyPqAFK9N .modal-lg,
  .cid-uwyPqAFK9N .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwyPqAFK9N .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwyPqAFK9N .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwyPqAFK9N .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-uwyPqAFK9N .form-group {
  margin-bottom: 1rem;
}
.cid-uwyPqAFK9N .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwyPqAFK9N .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwyPqAFK9N .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-uwyPqAFK9N .mbr-section-btn {
  margin: 0;
}
.cid-uwyPqAFK9N .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwyMYRGxhT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uwyMYRGxhT nav.navbar {
  position: fixed;
}
.cid-uwyMYRGxhT .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-uwyMYRGxhT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwyMYRGxhT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwyMYRGxhT .dropdown-item:hover,
.cid-uwyMYRGxhT .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uwyMYRGxhT .dropdown-item:hover span {
  color: white;
}
.cid-uwyMYRGxhT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwyMYRGxhT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwyMYRGxhT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwyMYRGxhT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwyMYRGxhT .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uwyMYRGxhT .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uwyMYRGxhT .container {
    flex-wrap: nowrap;
  }
}
.cid-uwyMYRGxhT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uwyMYRGxhT .dropdown-menu,
.cid-uwyMYRGxhT .navbar.opened {
  background: #000000 !important;
}
.cid-uwyMYRGxhT .nav-item:focus,
.cid-uwyMYRGxhT .nav-link:focus {
  outline: none;
}
.cid-uwyMYRGxhT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwyMYRGxhT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwyMYRGxhT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwyMYRGxhT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwyMYRGxhT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwyMYRGxhT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwyMYRGxhT .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-uwyMYRGxhT .navbar.opened {
  transition: all 0.3s;
}
.cid-uwyMYRGxhT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwyMYRGxhT .navbar .navbar-logo img {
  width: auto;
}
.cid-uwyMYRGxhT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwyMYRGxhT .navbar.collapsed {
  justify-content: center;
}
.cid-uwyMYRGxhT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwyMYRGxhT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uwyMYRGxhT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uwyMYRGxhT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwyMYRGxhT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwyMYRGxhT .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-uwyMYRGxhT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwyMYRGxhT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwyMYRGxhT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwyMYRGxhT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwyMYRGxhT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwyMYRGxhT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwyMYRGxhT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwyMYRGxhT .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-uwyMYRGxhT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwyMYRGxhT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwyMYRGxhT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwyMYRGxhT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwyMYRGxhT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwyMYRGxhT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwyMYRGxhT .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwyMYRGxhT .navbar.navbar-short {
  min-height: 60px;
}
.cid-uwyMYRGxhT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwyMYRGxhT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uwyMYRGxhT .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-uwyMYRGxhT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwyMYRGxhT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwyMYRGxhT .dropdown-item.active,
.cid-uwyMYRGxhT .dropdown-item:active {
  background-color: transparent;
}
.cid-uwyMYRGxhT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwyMYRGxhT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwyMYRGxhT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwyMYRGxhT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uwyMYRGxhT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwyMYRGxhT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwyMYRGxhT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwyMYRGxhT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uwyMYRGxhT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uwyMYRGxhT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uwyMYRGxhT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uwyMYRGxhT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwyMYRGxhT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwyMYRGxhT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uwyMYRGxhT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwyMYRGxhT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uwyMYRGxhT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwyMYRGxhT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwyMYRGxhT .navbar-dropdown {
  position: fixed;
}
.cid-uwyMYRGxhT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwyMYRGxhT .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-uwyMYRGxhT .navbar {
    height: 70px;
  }
  .cid-uwyMYRGxhT .navbar.opened {
    height: auto;
  }
  .cid-uwyMYRGxhT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwyMYS4fmn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwyMYS4fmn .mbr-section-title {
  color: #0d0c22;
}
.cid-uwyMYS4fmn .mbr-text,
.cid-uwyMYS4fmn .mbr-section-btn {
  color: #727272;
}
.cid-uwyMYS4fmn .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uwyMYS4fmn img {
  border-radius: 2rem;
}
.cid-uwyMYSuPeE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwyMYSuPeE .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uwyMYSuPeE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwyMYSuPeE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwyMYSR5Z4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uwyMYSR5Z4::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uwyMYSR5Z4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwyMYSR5Z4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwyMYSR5Z4 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uwyMYSR5Z4 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uwyMYSR5Z4 .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uwyMYSR5Z4 .container {
    padding: 0 22px;
  }
}
.cid-uwyMYSR5Z4 .row {
  position: relative;
  z-index: 1;
}
.cid-uwyMYSR5Z4 .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uwyMYSR5Z4 .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uwyMYSR5Z4 .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uwyMYSR5Z4 .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uwyMYSR5Z4 .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyMYSR5Z4 .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uwyMYSR5Z4 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uwyMYSR5Z4 .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uwyMYSR5Z4 .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uwyMYSR5Z4 .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uwyMYSR5Z4 .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uwyMYSR5Z4 .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uwyMYSR5Z4 .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uwyMYSR5Z4 .nav-wrapper .list .item-wrap:hover,
.cid-uwyMYSR5Z4 .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uwyMYSR5Z4 .nav-wrapper .list .item-wrap:hover::before,
.cid-uwyMYSR5Z4 .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uwyMYSR5Z4 .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-uwyMYSR5Z4 .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyMYSR5Z4 .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uwyMYSR5Z4 .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uwyMYSR5Z4 .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uwyMYSR5Z4 .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uwyMYSR5Z4 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uwyMYSR5Z4 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uwyMYSR5Z4 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uwyMYSR5Z4 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uwyMYSR5Z4 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uwyMYSR5Z4 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uwyMYSR5Z4 .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-uwyMYSR5Z4 .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyMYSR5Z4 .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uwyMYSR5Z4 .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uwyMYSR5Z4 .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uwyMYSR5Z4 .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uwyMYSR5Z4 .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uwyMYSR5Z4 .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uwyMYSR5Z4 .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uwyMYSR5Z4 .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uwyMYSR5Z4 .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uwyMYSR5Z4 .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uwyMYSR5Z4 .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uwyMYSR5Z4 .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uwyMYSR5Z4 .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uwyMYSR5Z4 .mbr-section-title {
  color: #ffffff;
}
.cid-uwyMYSR5Z4 .mbr-text {
  color: #ffffff;
}
.cid-uwyMYSR5Z4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uwyMYSR5Z4 .list {
  color: #ffffff;
}
.cid-uwyMYSR5Z4 .mbr-contact {
  color: #ffffff;
}
.cid-uwyMYSR5Z4 .mbr-desc {
  color: #ffffff;
}
.cid-uwyMYSR5Z4 .mbr-contact,
.cid-uwyMYSR5Z4 .item-contact {
  color: #ffffff;
}
.cid-uwyMYTqphT.popup-builder {
  background-color: #ffffff;
}
.cid-uwyMYTqphT.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwyMYTqphT.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwyMYTqphT .modal-content,
.cid-uwyMYTqphT .modal-dialog {
  height: auto;
}
.cid-uwyMYTqphT .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwyMYTqphT .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwyMYTqphT .form-wrapper .mbr-form .form-group,
  .cid-uwyMYTqphT .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwyMYTqphT .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwyMYTqphT .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-uwyMYTqphT .mbr-text {
  text-align: center;
}
.cid-uwyMYTqphT .pt-0 {
  padding-top: 0 !important;
}
.cid-uwyMYTqphT .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwyMYTqphT .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwyMYTqphT .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwyMYTqphT .modal-open {
  overflow: hidden;
}
.cid-uwyMYTqphT .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwyMYTqphT .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwyMYTqphT .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwyMYTqphT .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-uwyMYTqphT .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwyMYTqphT .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwyMYTqphT .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwyMYTqphT .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-uwyMYTqphT .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwyMYTqphT .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwyMYTqphT .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwyMYTqphT .modal-backdrop.show {
  opacity: .5;
}
.cid-uwyMYTqphT .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-uwyMYTqphT .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyMYTqphT .modal-header {
    padding: 1rem;
  }
}
.cid-uwyMYTqphT .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwyMYTqphT .modal-header .close svg {
  fill: #353535;
}
.cid-uwyMYTqphT .modal-header .close:hover {
  opacity: 1;
}
.cid-uwyMYTqphT .modal-header .close:focus {
  outline: none;
}
.cid-uwyMYTqphT .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uwyMYTqphT .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwyMYTqphT .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyMYTqphT .modal-body {
    padding: 1rem;
  }
}
.cid-uwyMYTqphT .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-uwyMYTqphT .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyMYTqphT .modal-footer {
    padding: 1rem;
  }
}
.cid-uwyMYTqphT .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwyMYTqphT .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwyMYTqphT .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwyMYTqphT .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwyMYTqphT .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwyMYTqphT .modal-lg,
  .cid-uwyMYTqphT .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwyMYTqphT .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwyMYTqphT .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwyMYTqphT .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-uwyMYTqphT .form-group {
  margin-bottom: 1rem;
}
.cid-uwyMYTqphT .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwyMYTqphT .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwyMYTqphT .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-uwyMYTqphT .mbr-section-btn {
  margin: 0;
}
.cid-uwyMYTqphT .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwyQCNSt2z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uwyQCNSt2z nav.navbar {
  position: fixed;
}
.cid-uwyQCNSt2z .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-uwyQCNSt2z .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwyQCNSt2z .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwyQCNSt2z .dropdown-item:hover,
.cid-uwyQCNSt2z .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uwyQCNSt2z .dropdown-item:hover span {
  color: white;
}
.cid-uwyQCNSt2z .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwyQCNSt2z .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwyQCNSt2z .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwyQCNSt2z .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwyQCNSt2z .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uwyQCNSt2z .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uwyQCNSt2z .container {
    flex-wrap: nowrap;
  }
}
.cid-uwyQCNSt2z .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uwyQCNSt2z .dropdown-menu,
.cid-uwyQCNSt2z .navbar.opened {
  background: #000000 !important;
}
.cid-uwyQCNSt2z .nav-item:focus,
.cid-uwyQCNSt2z .nav-link:focus {
  outline: none;
}
.cid-uwyQCNSt2z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwyQCNSt2z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwyQCNSt2z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwyQCNSt2z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwyQCNSt2z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwyQCNSt2z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwyQCNSt2z .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-uwyQCNSt2z .navbar.opened {
  transition: all 0.3s;
}
.cid-uwyQCNSt2z .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwyQCNSt2z .navbar .navbar-logo img {
  width: auto;
}
.cid-uwyQCNSt2z .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwyQCNSt2z .navbar.collapsed {
  justify-content: center;
}
.cid-uwyQCNSt2z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwyQCNSt2z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uwyQCNSt2z .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uwyQCNSt2z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwyQCNSt2z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwyQCNSt2z .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-uwyQCNSt2z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwyQCNSt2z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwyQCNSt2z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwyQCNSt2z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwyQCNSt2z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwyQCNSt2z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwyQCNSt2z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwyQCNSt2z .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-uwyQCNSt2z .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwyQCNSt2z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwyQCNSt2z .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwyQCNSt2z .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwyQCNSt2z .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwyQCNSt2z .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwyQCNSt2z .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwyQCNSt2z .navbar.navbar-short {
  min-height: 60px;
}
.cid-uwyQCNSt2z .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwyQCNSt2z .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uwyQCNSt2z .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-uwyQCNSt2z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwyQCNSt2z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwyQCNSt2z .dropdown-item.active,
.cid-uwyQCNSt2z .dropdown-item:active {
  background-color: transparent;
}
.cid-uwyQCNSt2z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwyQCNSt2z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwyQCNSt2z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwyQCNSt2z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uwyQCNSt2z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwyQCNSt2z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwyQCNSt2z ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwyQCNSt2z .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uwyQCNSt2z button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uwyQCNSt2z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uwyQCNSt2z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uwyQCNSt2z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwyQCNSt2z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwyQCNSt2z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uwyQCNSt2z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwyQCNSt2z nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uwyQCNSt2z nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwyQCNSt2z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwyQCNSt2z .navbar-dropdown {
  position: fixed;
}
.cid-uwyQCNSt2z a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwyQCNSt2z .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-uwyQCNSt2z .navbar {
    height: 70px;
  }
  .cid-uwyQCNSt2z .navbar.opened {
    height: auto;
  }
  .cid-uwyQCNSt2z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwyQCOgE5r {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwyQCOgE5r .mbr-section-title {
  color: #0d0c22;
}
.cid-uwyQCOgE5r .mbr-text,
.cid-uwyQCOgE5r .mbr-section-btn {
  color: #727272;
}
.cid-uwyQCOgE5r .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uwyQCOgE5r img {
  border-radius: 2rem;
}
.cid-uwyQCOFV05 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwyQCOFV05 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uwyQCOFV05 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwyQCOFV05 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwyQCP5o8Y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uwyQCP5o8Y::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uwyQCP5o8Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwyQCP5o8Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwyQCP5o8Y .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uwyQCP5o8Y .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uwyQCP5o8Y .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uwyQCP5o8Y .container {
    padding: 0 22px;
  }
}
.cid-uwyQCP5o8Y .row {
  position: relative;
  z-index: 1;
}
.cid-uwyQCP5o8Y .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uwyQCP5o8Y .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uwyQCP5o8Y .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uwyQCP5o8Y .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uwyQCP5o8Y .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyQCP5o8Y .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uwyQCP5o8Y .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uwyQCP5o8Y .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uwyQCP5o8Y .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uwyQCP5o8Y .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uwyQCP5o8Y .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uwyQCP5o8Y .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uwyQCP5o8Y .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uwyQCP5o8Y .nav-wrapper .list .item-wrap:hover,
.cid-uwyQCP5o8Y .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uwyQCP5o8Y .nav-wrapper .list .item-wrap:hover::before,
.cid-uwyQCP5o8Y .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uwyQCP5o8Y .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-uwyQCP5o8Y .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyQCP5o8Y .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uwyQCP5o8Y .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uwyQCP5o8Y .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uwyQCP5o8Y .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uwyQCP5o8Y .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uwyQCP5o8Y .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uwyQCP5o8Y .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uwyQCP5o8Y .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uwyQCP5o8Y .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uwyQCP5o8Y .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uwyQCP5o8Y .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-uwyQCP5o8Y .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyQCP5o8Y .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uwyQCP5o8Y .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uwyQCP5o8Y .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uwyQCP5o8Y .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uwyQCP5o8Y .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uwyQCP5o8Y .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uwyQCP5o8Y .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uwyQCP5o8Y .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uwyQCP5o8Y .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uwyQCP5o8Y .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uwyQCP5o8Y .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uwyQCP5o8Y .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uwyQCP5o8Y .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uwyQCP5o8Y .mbr-section-title {
  color: #ffffff;
}
.cid-uwyQCP5o8Y .mbr-text {
  color: #ffffff;
}
.cid-uwyQCP5o8Y .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uwyQCP5o8Y .list {
  color: #ffffff;
}
.cid-uwyQCP5o8Y .mbr-contact {
  color: #ffffff;
}
.cid-uwyQCP5o8Y .mbr-desc {
  color: #ffffff;
}
.cid-uwyQCP5o8Y .mbr-contact,
.cid-uwyQCP5o8Y .item-contact {
  color: #ffffff;
}
.cid-uwyQCPKOfX.popup-builder {
  background-color: #ffffff;
}
.cid-uwyQCPKOfX.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwyQCPKOfX.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwyQCPKOfX .modal-content,
.cid-uwyQCPKOfX .modal-dialog {
  height: auto;
}
.cid-uwyQCPKOfX .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwyQCPKOfX .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwyQCPKOfX .form-wrapper .mbr-form .form-group,
  .cid-uwyQCPKOfX .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwyQCPKOfX .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwyQCPKOfX .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-uwyQCPKOfX .mbr-text {
  text-align: center;
}
.cid-uwyQCPKOfX .pt-0 {
  padding-top: 0 !important;
}
.cid-uwyQCPKOfX .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwyQCPKOfX .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwyQCPKOfX .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwyQCPKOfX .modal-open {
  overflow: hidden;
}
.cid-uwyQCPKOfX .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwyQCPKOfX .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwyQCPKOfX .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwyQCPKOfX .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-uwyQCPKOfX .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwyQCPKOfX .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwyQCPKOfX .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwyQCPKOfX .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-uwyQCPKOfX .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwyQCPKOfX .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwyQCPKOfX .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwyQCPKOfX .modal-backdrop.show {
  opacity: .5;
}
.cid-uwyQCPKOfX .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-uwyQCPKOfX .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyQCPKOfX .modal-header {
    padding: 1rem;
  }
}
.cid-uwyQCPKOfX .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwyQCPKOfX .modal-header .close svg {
  fill: #353535;
}
.cid-uwyQCPKOfX .modal-header .close:hover {
  opacity: 1;
}
.cid-uwyQCPKOfX .modal-header .close:focus {
  outline: none;
}
.cid-uwyQCPKOfX .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uwyQCPKOfX .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwyQCPKOfX .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyQCPKOfX .modal-body {
    padding: 1rem;
  }
}
.cid-uwyQCPKOfX .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-uwyQCPKOfX .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyQCPKOfX .modal-footer {
    padding: 1rem;
  }
}
.cid-uwyQCPKOfX .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwyQCPKOfX .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwyQCPKOfX .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwyQCPKOfX .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwyQCPKOfX .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwyQCPKOfX .modal-lg,
  .cid-uwyQCPKOfX .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwyQCPKOfX .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwyQCPKOfX .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwyQCPKOfX .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-uwyQCPKOfX .form-group {
  margin-bottom: 1rem;
}
.cid-uwyQCPKOfX .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwyQCPKOfX .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwyQCPKOfX .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-uwyQCPKOfX .mbr-section-btn {
  margin: 0;
}
.cid-uwyQCPKOfX .mbr-section-btn .btn {
  margin: 0;
}
.cid-uk067mRRD2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uk067mRRD2 nav.navbar {
  position: fixed;
}
.cid-uk067mRRD2 .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-uk067mRRD2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uk067mRRD2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uk067mRRD2 .dropdown-item:hover,
.cid-uk067mRRD2 .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uk067mRRD2 .dropdown-item:hover span {
  color: white;
}
.cid-uk067mRRD2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uk067mRRD2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uk067mRRD2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uk067mRRD2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uk067mRRD2 .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uk067mRRD2 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uk067mRRD2 .container {
    flex-wrap: nowrap;
  }
}
.cid-uk067mRRD2 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uk067mRRD2 .dropdown-menu,
.cid-uk067mRRD2 .navbar.opened {
  background: #000000 !important;
}
.cid-uk067mRRD2 .nav-item:focus,
.cid-uk067mRRD2 .nav-link:focus {
  outline: none;
}
.cid-uk067mRRD2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uk067mRRD2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uk067mRRD2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uk067mRRD2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uk067mRRD2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uk067mRRD2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uk067mRRD2 .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-uk067mRRD2 .navbar.opened {
  transition: all 0.3s;
}
.cid-uk067mRRD2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uk067mRRD2 .navbar .navbar-logo img {
  width: auto;
}
.cid-uk067mRRD2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uk067mRRD2 .navbar.collapsed {
  justify-content: center;
}
.cid-uk067mRRD2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uk067mRRD2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uk067mRRD2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uk067mRRD2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uk067mRRD2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uk067mRRD2 .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-uk067mRRD2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uk067mRRD2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uk067mRRD2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uk067mRRD2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uk067mRRD2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uk067mRRD2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uk067mRRD2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uk067mRRD2 .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-uk067mRRD2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uk067mRRD2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uk067mRRD2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uk067mRRD2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uk067mRRD2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uk067mRRD2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uk067mRRD2 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uk067mRRD2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uk067mRRD2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uk067mRRD2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uk067mRRD2 .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-uk067mRRD2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uk067mRRD2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uk067mRRD2 .dropdown-item.active,
.cid-uk067mRRD2 .dropdown-item:active {
  background-color: transparent;
}
.cid-uk067mRRD2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uk067mRRD2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uk067mRRD2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uk067mRRD2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uk067mRRD2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uk067mRRD2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uk067mRRD2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uk067mRRD2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uk067mRRD2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uk067mRRD2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uk067mRRD2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uk067mRRD2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uk067mRRD2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uk067mRRD2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uk067mRRD2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uk067mRRD2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uk067mRRD2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uk067mRRD2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uk067mRRD2 .navbar-dropdown {
  position: fixed;
}
.cid-uk067mRRD2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uk067mRRD2 .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-uk067mRRD2 .navbar {
    height: 70px;
  }
  .cid-uk067mRRD2 .navbar.opened {
    height: auto;
  }
  .cid-uk067mRRD2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uk0ummQDJC {
  display: flex;
  background-image: url("../../../assets/images/adsz-tasarm-88-2000x1000.png");
}
.cid-uk0ummQDJC .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-uk0ummQDJC .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-uk0ummQDJC {
    align-items: center;
  }
  .cid-uk0ummQDJC .row {
    justify-content: flex-start;
  }
  .cid-uk0ummQDJC .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uk0ummQDJC .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uk0ummQDJC {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uk0ummQDJC .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uk0ummQDJC .content-wrap {
    width: 100%;
  }
}
.cid-uk0ummQDJC .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uk0ummQDJC .mbr-text,
.cid-uk0ummQDJC .mbr-section-btn {
  color: #ffffff;
}
#custom-html-5 {
  /* Type valid CSS here */
}
#custom-html-5 div {
  padding: 9px 0;
  color: #777;
  text-align: center;
}
#custom-html-5 p {
  font-size: 9px;
  color: #777;
}
.cid-sQknOmvbyo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #212428;
}
.cid-sQknOmvbyo .iconfont-wrapper {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.cid-sQknOmvbyo .card-box {
  z-index: 2;
  position: relative;
}
.cid-sQknOmvbyo .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  background: #8364e2;
  width: 80px;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}
.cid-sQknOmvbyo .mbr-iconfont-big {
  font-size: 16rem;
  color: #8364e2;
  position: absolute;
  bottom: -5rem;
  right: -4rem;
  z-index: -1;
  transition: all 0.6s;
  opacity: 0.1;
}
.cid-sQknOmvbyo .card-title,
.cid-sQknOmvbyo .card-text {
  transition: all 0.3s;
}
.cid-sQknOmvbyo .card-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  padding: 4rem 3rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
  background: #212428;
  transition: all 0.3s;
}
.cid-sQknOmvbyo .card-wrapper:hover .mbr-iconfont-big {
  transform: rotate(-20deg);
}
@media (max-width: 767px) {
  .cid-sQknOmvbyo .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-sQknOmvbyo .card-title,
.cid-sQknOmvbyo .iconfont-wrapper {
  color: #ffffff;
}
.cid-sQknOmvbyo .card-text {
  color: #bbbbbb;
}
.cid-sQknOmvbyo .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sQknOmvbyo .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-sQknTlW601 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-sQknTlW601 .mbr-section-title {
  color: #ffffff;
}
.cid-sQknTlW601 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sQknTlW601 .line {
  background: #353535;
  height: 1px;
  width: 100%;
  margin-top: 2rem;
}
.cid-sQknU6PUTh {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #212428;
}
.cid-sQknU6PUTh .item-img {
  position: relative;
}
.cid-sQknU6PUTh .tag {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
}
.cid-sQknU6PUTh .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}
.cid-sQknU6PUTh .btn-tag:hover,
.cid-sQknU6PUTh .btn-tag:focus {
  box-shadow: none;
}
.cid-sQknU6PUTh img,
.cid-sQknU6PUTh .item-img {
  width: 100%;
  margin-bottom: 1rem;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sQknU6PUTh .item:focus,
.cid-sQknU6PUTh span:focus {
  outline: none;
}
.cid-sQknU6PUTh .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sQknU6PUTh .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-sQknU6PUTh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sQknU6PUTh .mbr-section-title {
  color: #232323;
}
.cid-sQknU6PUTh .mbr-text,
.cid-sQknU6PUTh .mbr-section-btn {
  color: #bbbbbb;
}
.cid-sQknU6PUTh .item-title {
  color: #bbbbbb;
}
.cid-sQknU6PUTh .item-subtitle {
  color: #ffffff;
}
#custom-html-1o {
  /* Type valid CSS here */
}
#custom-html-1o div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1o p {
  font-size: 60px;
  color: #777;
}
.cid-uwt1KudBsz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uwt1KudBsz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwt1KudBsz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uwt1KudBsz .container {
    padding: 0 15px;
  }
}
.cid-uwt1KudBsz .row {
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cid-uwt1KudBsz .content-wrapper {
  position: relative;
}
.cid-uwt1KudBsz .content-wrapper .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uwt1KudBsz .content-wrapper .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uwt1KudBsz .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uwt1KudBsz .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uwt1KudBsz .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-uwt1KudBsz .dragArea.row .mbr-section-title {
  margin-bottom: 40px !important;
}
.cid-uwt1KudBsz .dragArea.row .mbr-text {
  margin-bottom: 40px !important;
}
.cid-uwt1KudBsz .dragArea.row .form-group {
  margin-bottom: 30px !important;
  padding: 0 15px;
}
.cid-uwt1KudBsz .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 15px;
}
.cid-uwt1KudBsz .dragArea.row .form-group .form-control {
  padding: 20px 40px 24px;
  border: 1px solid #232323 !important;
  box-shadow: none;
  border-radius: 0 !important;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uwt1KudBsz .dragArea.row .form-group .form-control {
    padding: 20px 30px;
  }
}
.cid-uwt1KudBsz .dragArea.row .form-group .form-control:hover,
.cid-uwt1KudBsz .dragArea.row .form-group .form-control:focus {
  border: 1px solid #000000 !important;
}
.cid-uwt1KudBsz .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
  font-size: 20px;
}
.cid-uwt1KudBsz .dragArea.row .form-group textarea {
  min-height: 200px;
}
.cid-uwt1KudBsz .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-uwt1KudBsz .dragArea.row .form-group .form-check .form-check-input {
  background-color: #232323;
  border-color: #232323;
  border-radius: 0;
}
.cid-uwt1KudBsz .dragArea.row .mbr-section-btn {
  width: 100%;
  margin: 0;
  padding: 0;
}
.cid-uwt1KudBsz .mbr-section-title {
  color: #ffffff;
}
.cid-uwt1KudBsz .mbr-desc {
  color: #000000;
}
.cid-uwt1KudBsz label {
  color: #ffffff;
}
.cid-uwt1KudBsz .mbr-section-btn {
  text-align: right;
}
.cid-uk06k49i9I {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uk06k49i9I::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uk06k49i9I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk06k49i9I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk06k49i9I .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uk06k49i9I .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uk06k49i9I .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uk06k49i9I .container {
    padding: 0 22px;
  }
}
.cid-uk06k49i9I .row {
  position: relative;
  z-index: 1;
}
.cid-uk06k49i9I .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uk06k49i9I .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uk06k49i9I .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uk06k49i9I .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uk06k49i9I .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk06k49i9I .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uk06k49i9I .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uk06k49i9I .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uk06k49i9I .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uk06k49i9I .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uk06k49i9I .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uk06k49i9I .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uk06k49i9I .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uk06k49i9I .nav-wrapper .list .item-wrap:hover,
.cid-uk06k49i9I .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uk06k49i9I .nav-wrapper .list .item-wrap:hover::before,
.cid-uk06k49i9I .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uk06k49i9I .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-uk06k49i9I .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk06k49i9I .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uk06k49i9I .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-uk06k49i9I .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk06k49i9I .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uk06k49i9I .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uk06k49i9I .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uk06k49i9I .mbr-section-title {
  color: #ffffff;
}
.cid-uk06k49i9I .mbr-text {
  color: #ffffff;
}
.cid-uk06k49i9I .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uk06k49i9I .list {
  color: #ffffff;
}
.cid-uk06k49i9I .mbr-contact {
  color: #ffffff;
}
.cid-uk06k49i9I .mbr-desc {
  color: #ffffff;
}
.cid-uk06k49i9I .mbr-contact,
.cid-uk06k49i9I .item-contact {
  color: #ffffff;
}
.cid-ujVj07Az4Y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ujVj07Az4Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujVj07Az4Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujVj07Az4Y .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-ujVzBa1lCG.popup-builder {
  background-color: #ffffff;
}
.cid-ujVzBa1lCG.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ujVzBa1lCG.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ujVzBa1lCG .modal-content,
.cid-ujVzBa1lCG .modal-dialog {
  height: auto;
}
.cid-ujVzBa1lCG .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ujVzBa1lCG .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ujVzBa1lCG .form-wrapper .mbr-form .form-group,
  .cid-ujVzBa1lCG .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ujVzBa1lCG .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ujVzBa1lCG .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-ujVzBa1lCG .mbr-text {
  text-align: center;
}
.cid-ujVzBa1lCG .pt-0 {
  padding-top: 0 !important;
}
.cid-ujVzBa1lCG .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ujVzBa1lCG .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ujVzBa1lCG .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ujVzBa1lCG .modal-open {
  overflow: hidden;
}
.cid-ujVzBa1lCG .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ujVzBa1lCG .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ujVzBa1lCG .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ujVzBa1lCG .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-ujVzBa1lCG .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ujVzBa1lCG .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ujVzBa1lCG .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ujVzBa1lCG .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-ujVzBa1lCG .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ujVzBa1lCG .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ujVzBa1lCG .modal-backdrop.fade {
  opacity: 0;
}
.cid-ujVzBa1lCG .modal-backdrop.show {
  opacity: .5;
}
.cid-ujVzBa1lCG .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-ujVzBa1lCG .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ujVzBa1lCG .modal-header {
    padding: 1rem;
  }
}
.cid-ujVzBa1lCG .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ujVzBa1lCG .modal-header .close svg {
  fill: #353535;
}
.cid-ujVzBa1lCG .modal-header .close:hover {
  opacity: 1;
}
.cid-ujVzBa1lCG .modal-header .close:focus {
  outline: none;
}
.cid-ujVzBa1lCG .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-ujVzBa1lCG .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ujVzBa1lCG .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujVzBa1lCG .modal-body {
    padding: 1rem;
  }
}
.cid-ujVzBa1lCG .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-ujVzBa1lCG .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujVzBa1lCG .modal-footer {
    padding: 1rem;
  }
}
.cid-ujVzBa1lCG .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ujVzBa1lCG .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ujVzBa1lCG .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ujVzBa1lCG .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ujVzBa1lCG .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ujVzBa1lCG .modal-lg,
  .cid-ujVzBa1lCG .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ujVzBa1lCG .modal-xl {
    max-width: 1140px;
  }
}
.cid-ujVzBa1lCG .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ujVzBa1lCG .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-ujVzBa1lCG .form-group {
  margin-bottom: 1rem;
}
.cid-ujVzBa1lCG .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ujVzBa1lCG .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ujVzBa1lCG .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-ujVzBa1lCG .mbr-section-btn {
  margin: 0;
}
.cid-ujVzBa1lCG .mbr-section-btn .btn {
  margin: 0;
}
#custom-html-45 {
  /* Type valid CSS here */
}
#custom-html-45 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-45 p {
  font-size: 60px;
  color: #777;
}
.cid-uxSnixyhI5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uxSnixyhI5 nav.navbar {
  position: fixed;
}
.cid-uxSnixyhI5 .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-uxSnixyhI5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uxSnixyhI5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uxSnixyhI5 .dropdown-item:hover,
.cid-uxSnixyhI5 .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uxSnixyhI5 .dropdown-item:hover span {
  color: white;
}
.cid-uxSnixyhI5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uxSnixyhI5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uxSnixyhI5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uxSnixyhI5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uxSnixyhI5 .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uxSnixyhI5 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uxSnixyhI5 .container {
    flex-wrap: nowrap;
  }
}
.cid-uxSnixyhI5 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uxSnixyhI5 .dropdown-menu,
.cid-uxSnixyhI5 .navbar.opened {
  background: #000000 !important;
}
.cid-uxSnixyhI5 .nav-item:focus,
.cid-uxSnixyhI5 .nav-link:focus {
  outline: none;
}
.cid-uxSnixyhI5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uxSnixyhI5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uxSnixyhI5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uxSnixyhI5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uxSnixyhI5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uxSnixyhI5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uxSnixyhI5 .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-uxSnixyhI5 .navbar.opened {
  transition: all 0.3s;
}
.cid-uxSnixyhI5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uxSnixyhI5 .navbar .navbar-logo img {
  width: auto;
}
.cid-uxSnixyhI5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uxSnixyhI5 .navbar.collapsed {
  justify-content: center;
}
.cid-uxSnixyhI5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uxSnixyhI5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uxSnixyhI5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uxSnixyhI5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uxSnixyhI5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uxSnixyhI5 .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-uxSnixyhI5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uxSnixyhI5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uxSnixyhI5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uxSnixyhI5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uxSnixyhI5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxSnixyhI5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxSnixyhI5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uxSnixyhI5 .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-uxSnixyhI5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uxSnixyhI5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uxSnixyhI5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uxSnixyhI5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uxSnixyhI5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uxSnixyhI5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uxSnixyhI5 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uxSnixyhI5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uxSnixyhI5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uxSnixyhI5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uxSnixyhI5 .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-uxSnixyhI5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uxSnixyhI5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uxSnixyhI5 .dropdown-item.active,
.cid-uxSnixyhI5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uxSnixyhI5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uxSnixyhI5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxSnixyhI5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxSnixyhI5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uxSnixyhI5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uxSnixyhI5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxSnixyhI5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uxSnixyhI5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uxSnixyhI5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uxSnixyhI5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uxSnixyhI5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uxSnixyhI5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxSnixyhI5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxSnixyhI5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxSnixyhI5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxSnixyhI5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxSnixyhI5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxSnixyhI5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxSnixyhI5 .navbar-dropdown {
  position: fixed;
}
.cid-uxSnixyhI5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uxSnixyhI5 .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-uxSnixyhI5 .navbar {
    height: 70px;
  }
  .cid-uxSnixyhI5 .navbar.opened {
    height: auto;
  }
  .cid-uxSnixyhI5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxSnixQ7ta {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #212428;
}
.cid-uxSnixQ7ta .item-img {
  position: relative;
}
.cid-uxSnixQ7ta .tag {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
}
.cid-uxSnixQ7ta .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}
.cid-uxSnixQ7ta .btn-tag:hover,
.cid-uxSnixQ7ta .btn-tag:focus {
  box-shadow: none;
}
.cid-uxSnixQ7ta img,
.cid-uxSnixQ7ta .item-img {
  width: 100%;
  margin-bottom: 1rem;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uxSnixQ7ta .item:focus,
.cid-uxSnixQ7ta span:focus {
  outline: none;
}
.cid-uxSnixQ7ta .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uxSnixQ7ta .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-uxSnixQ7ta .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uxSnixQ7ta .mbr-section-title {
  color: #ffffff;
}
.cid-uxSnixQ7ta .mbr-text,
.cid-uxSnixQ7ta .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uxSnixQ7ta .item-title {
  color: #bbbbbb;
}
.cid-uxSnixQ7ta .item-subtitle {
  color: #ffffff;
}
.cid-uxSnixQ7ta .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxSniz5qNo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uxSniz5qNo::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uxSniz5qNo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxSniz5qNo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxSniz5qNo .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uxSniz5qNo .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uxSniz5qNo .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uxSniz5qNo .container {
    padding: 0 22px;
  }
}
.cid-uxSniz5qNo .row {
  position: relative;
  z-index: 1;
}
.cid-uxSniz5qNo .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uxSniz5qNo .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uxSniz5qNo .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uxSniz5qNo .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uxSniz5qNo .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSniz5qNo .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uxSniz5qNo .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uxSniz5qNo .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uxSniz5qNo .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uxSniz5qNo .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uxSniz5qNo .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uxSniz5qNo .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uxSniz5qNo .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uxSniz5qNo .nav-wrapper .list .item-wrap:hover,
.cid-uxSniz5qNo .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uxSniz5qNo .nav-wrapper .list .item-wrap:hover::before,
.cid-uxSniz5qNo .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uxSniz5qNo .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-uxSniz5qNo .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSniz5qNo .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uxSniz5qNo .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uxSniz5qNo .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uxSniz5qNo .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uxSniz5qNo .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uxSniz5qNo .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uxSniz5qNo .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uxSniz5qNo .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uxSniz5qNo .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uxSniz5qNo .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uxSniz5qNo .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-uxSniz5qNo .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSniz5qNo .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uxSniz5qNo .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uxSniz5qNo .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uxSniz5qNo .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uxSniz5qNo .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uxSniz5qNo .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uxSniz5qNo .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uxSniz5qNo .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uxSniz5qNo .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uxSniz5qNo .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uxSniz5qNo .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uxSniz5qNo .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxSniz5qNo .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uxSniz5qNo .mbr-section-title {
  color: #ffffff;
}
.cid-uxSniz5qNo .mbr-text {
  color: #ffffff;
}
.cid-uxSniz5qNo .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxSniz5qNo .list {
  color: #ffffff;
}
.cid-uxSniz5qNo .mbr-contact {
  color: #ffffff;
}
.cid-uxSniz5qNo .mbr-desc {
  color: #ffffff;
}
.cid-uxSniz5qNo .mbr-contact,
.cid-uxSniz5qNo .item-contact {
  color: #ffffff;
}
.cid-uwyMyWSxlW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uwyMyWSxlW nav.navbar {
  position: fixed;
}
.cid-uwyMyWSxlW .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-uwyMyWSxlW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwyMyWSxlW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwyMyWSxlW .dropdown-item:hover,
.cid-uwyMyWSxlW .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uwyMyWSxlW .dropdown-item:hover span {
  color: white;
}
.cid-uwyMyWSxlW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwyMyWSxlW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwyMyWSxlW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwyMyWSxlW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwyMyWSxlW .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uwyMyWSxlW .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uwyMyWSxlW .container {
    flex-wrap: nowrap;
  }
}
.cid-uwyMyWSxlW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uwyMyWSxlW .dropdown-menu,
.cid-uwyMyWSxlW .navbar.opened {
  background: #000000 !important;
}
.cid-uwyMyWSxlW .nav-item:focus,
.cid-uwyMyWSxlW .nav-link:focus {
  outline: none;
}
.cid-uwyMyWSxlW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwyMyWSxlW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwyMyWSxlW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwyMyWSxlW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwyMyWSxlW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwyMyWSxlW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwyMyWSxlW .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-uwyMyWSxlW .navbar.opened {
  transition: all 0.3s;
}
.cid-uwyMyWSxlW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwyMyWSxlW .navbar .navbar-logo img {
  width: auto;
}
.cid-uwyMyWSxlW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwyMyWSxlW .navbar.collapsed {
  justify-content: center;
}
.cid-uwyMyWSxlW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwyMyWSxlW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uwyMyWSxlW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uwyMyWSxlW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwyMyWSxlW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwyMyWSxlW .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-uwyMyWSxlW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwyMyWSxlW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwyMyWSxlW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwyMyWSxlW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwyMyWSxlW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwyMyWSxlW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwyMyWSxlW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwyMyWSxlW .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-uwyMyWSxlW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwyMyWSxlW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwyMyWSxlW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwyMyWSxlW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwyMyWSxlW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwyMyWSxlW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwyMyWSxlW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwyMyWSxlW .navbar.navbar-short {
  min-height: 60px;
}
.cid-uwyMyWSxlW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwyMyWSxlW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uwyMyWSxlW .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-uwyMyWSxlW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwyMyWSxlW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwyMyWSxlW .dropdown-item.active,
.cid-uwyMyWSxlW .dropdown-item:active {
  background-color: transparent;
}
.cid-uwyMyWSxlW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwyMyWSxlW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwyMyWSxlW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwyMyWSxlW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uwyMyWSxlW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwyMyWSxlW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwyMyWSxlW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwyMyWSxlW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uwyMyWSxlW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uwyMyWSxlW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uwyMyWSxlW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uwyMyWSxlW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwyMyWSxlW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwyMyWSxlW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uwyMyWSxlW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwyMyWSxlW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uwyMyWSxlW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwyMyWSxlW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwyMyWSxlW .navbar-dropdown {
  position: fixed;
}
.cid-uwyMyWSxlW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwyMyWSxlW .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-uwyMyWSxlW .navbar {
    height: 70px;
  }
  .cid-uwyMyWSxlW .navbar.opened {
    height: auto;
  }
  .cid-uwyMyWSxlW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwyMyXBbb1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwyMyXBbb1 .mbr-section-title {
  color: #0d0c22;
}
.cid-uwyMyXBbb1 .mbr-text,
.cid-uwyMyXBbb1 .mbr-section-btn {
  color: #727272;
}
.cid-uwyMyXBbb1 .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uwyMyXBbb1 img {
  border-radius: 2rem;
}
.cid-uwyMyYfnf7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwyMyYfnf7 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uwyMyYfnf7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwyMyYfnf7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwyMyYCU7c {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uwyMyYCU7c::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uwyMyYCU7c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwyMyYCU7c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwyMyYCU7c .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uwyMyYCU7c .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uwyMyYCU7c .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uwyMyYCU7c .container {
    padding: 0 22px;
  }
}
.cid-uwyMyYCU7c .row {
  position: relative;
  z-index: 1;
}
.cid-uwyMyYCU7c .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uwyMyYCU7c .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uwyMyYCU7c .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uwyMyYCU7c .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uwyMyYCU7c .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyMyYCU7c .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uwyMyYCU7c .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uwyMyYCU7c .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uwyMyYCU7c .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uwyMyYCU7c .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uwyMyYCU7c .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uwyMyYCU7c .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uwyMyYCU7c .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uwyMyYCU7c .nav-wrapper .list .item-wrap:hover,
.cid-uwyMyYCU7c .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uwyMyYCU7c .nav-wrapper .list .item-wrap:hover::before,
.cid-uwyMyYCU7c .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uwyMyYCU7c .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-uwyMyYCU7c .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyMyYCU7c .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uwyMyYCU7c .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uwyMyYCU7c .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uwyMyYCU7c .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uwyMyYCU7c .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uwyMyYCU7c .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uwyMyYCU7c .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uwyMyYCU7c .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uwyMyYCU7c .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uwyMyYCU7c .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uwyMyYCU7c .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-uwyMyYCU7c .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyMyYCU7c .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uwyMyYCU7c .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uwyMyYCU7c .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uwyMyYCU7c .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uwyMyYCU7c .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uwyMyYCU7c .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uwyMyYCU7c .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uwyMyYCU7c .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uwyMyYCU7c .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uwyMyYCU7c .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uwyMyYCU7c .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uwyMyYCU7c .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uwyMyYCU7c .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uwyMyYCU7c .mbr-section-title {
  color: #ffffff;
}
.cid-uwyMyYCU7c .mbr-text {
  color: #ffffff;
}
.cid-uwyMyYCU7c .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uwyMyYCU7c .list {
  color: #ffffff;
}
.cid-uwyMyYCU7c .mbr-contact {
  color: #ffffff;
}
.cid-uwyMyYCU7c .mbr-desc {
  color: #ffffff;
}
.cid-uwyMyYCU7c .mbr-contact,
.cid-uwyMyYCU7c .item-contact {
  color: #ffffff;
}
.cid-uwyMyZcpL9.popup-builder {
  background-color: #ffffff;
}
.cid-uwyMyZcpL9.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwyMyZcpL9.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwyMyZcpL9 .modal-content,
.cid-uwyMyZcpL9 .modal-dialog {
  height: auto;
}
.cid-uwyMyZcpL9 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwyMyZcpL9 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwyMyZcpL9 .form-wrapper .mbr-form .form-group,
  .cid-uwyMyZcpL9 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwyMyZcpL9 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwyMyZcpL9 .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-uwyMyZcpL9 .mbr-text {
  text-align: center;
}
.cid-uwyMyZcpL9 .pt-0 {
  padding-top: 0 !important;
}
.cid-uwyMyZcpL9 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwyMyZcpL9 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwyMyZcpL9 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwyMyZcpL9 .modal-open {
  overflow: hidden;
}
.cid-uwyMyZcpL9 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwyMyZcpL9 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwyMyZcpL9 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwyMyZcpL9 .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-uwyMyZcpL9 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwyMyZcpL9 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwyMyZcpL9 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwyMyZcpL9 .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-uwyMyZcpL9 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwyMyZcpL9 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwyMyZcpL9 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwyMyZcpL9 .modal-backdrop.show {
  opacity: .5;
}
.cid-uwyMyZcpL9 .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-uwyMyZcpL9 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyMyZcpL9 .modal-header {
    padding: 1rem;
  }
}
.cid-uwyMyZcpL9 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwyMyZcpL9 .modal-header .close svg {
  fill: #353535;
}
.cid-uwyMyZcpL9 .modal-header .close:hover {
  opacity: 1;
}
.cid-uwyMyZcpL9 .modal-header .close:focus {
  outline: none;
}
.cid-uwyMyZcpL9 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uwyMyZcpL9 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwyMyZcpL9 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyMyZcpL9 .modal-body {
    padding: 1rem;
  }
}
.cid-uwyMyZcpL9 .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-uwyMyZcpL9 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyMyZcpL9 .modal-footer {
    padding: 1rem;
  }
}
.cid-uwyMyZcpL9 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwyMyZcpL9 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwyMyZcpL9 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwyMyZcpL9 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwyMyZcpL9 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwyMyZcpL9 .modal-lg,
  .cid-uwyMyZcpL9 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwyMyZcpL9 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwyMyZcpL9 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwyMyZcpL9 .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-uwyMyZcpL9 .form-group {
  margin-bottom: 1rem;
}
.cid-uwyMyZcpL9 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwyMyZcpL9 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwyMyZcpL9 .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-uwyMyZcpL9 .mbr-section-btn {
  margin: 0;
}
.cid-uwyMyZcpL9 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uk0bnAEesv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uk0bnAEesv nav.navbar {
  position: fixed;
}
.cid-uk0bnAEesv .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-uk0bnAEesv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uk0bnAEesv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uk0bnAEesv .dropdown-item:hover,
.cid-uk0bnAEesv .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uk0bnAEesv .dropdown-item:hover span {
  color: white;
}
.cid-uk0bnAEesv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uk0bnAEesv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uk0bnAEesv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uk0bnAEesv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uk0bnAEesv .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uk0bnAEesv .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uk0bnAEesv .container {
    flex-wrap: nowrap;
  }
}
.cid-uk0bnAEesv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uk0bnAEesv .dropdown-menu,
.cid-uk0bnAEesv .navbar.opened {
  background: #000000 !important;
}
.cid-uk0bnAEesv .nav-item:focus,
.cid-uk0bnAEesv .nav-link:focus {
  outline: none;
}
.cid-uk0bnAEesv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uk0bnAEesv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uk0bnAEesv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uk0bnAEesv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uk0bnAEesv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uk0bnAEesv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uk0bnAEesv .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-uk0bnAEesv .navbar.opened {
  transition: all 0.3s;
}
.cid-uk0bnAEesv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uk0bnAEesv .navbar .navbar-logo img {
  width: auto;
}
.cid-uk0bnAEesv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uk0bnAEesv .navbar.collapsed {
  justify-content: center;
}
.cid-uk0bnAEesv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uk0bnAEesv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uk0bnAEesv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uk0bnAEesv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uk0bnAEesv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uk0bnAEesv .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-uk0bnAEesv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uk0bnAEesv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uk0bnAEesv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uk0bnAEesv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uk0bnAEesv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uk0bnAEesv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uk0bnAEesv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uk0bnAEesv .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-uk0bnAEesv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uk0bnAEesv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uk0bnAEesv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uk0bnAEesv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uk0bnAEesv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uk0bnAEesv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uk0bnAEesv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uk0bnAEesv .navbar.navbar-short {
  min-height: 60px;
}
.cid-uk0bnAEesv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uk0bnAEesv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uk0bnAEesv .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-uk0bnAEesv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uk0bnAEesv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uk0bnAEesv .dropdown-item.active,
.cid-uk0bnAEesv .dropdown-item:active {
  background-color: transparent;
}
.cid-uk0bnAEesv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uk0bnAEesv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uk0bnAEesv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uk0bnAEesv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uk0bnAEesv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uk0bnAEesv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uk0bnAEesv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uk0bnAEesv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uk0bnAEesv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uk0bnAEesv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uk0bnAEesv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uk0bnAEesv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uk0bnAEesv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uk0bnAEesv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uk0bnAEesv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uk0bnAEesv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uk0bnAEesv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uk0bnAEesv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uk0bnAEesv .navbar-dropdown {
  position: fixed;
}
.cid-uk0bnAEesv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uk0bnAEesv .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-uk0bnAEesv .navbar {
    height: 70px;
  }
  .cid-uk0bnAEesv .navbar.opened {
    height: auto;
  }
  .cid-uk0bnAEesv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxSo81jbig {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uxSo81jbig blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-uxSo81jbig .quote {
  color: #e43f3f;
}
.cid-uxSo81jbig .quote,
.cid-uxSo81jbig blockquote {
  color: #353535;
}
.cid-uk0bnA5npZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uk0bnA5npZ::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uk0bnA5npZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk0bnA5npZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk0bnA5npZ .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uk0bnA5npZ .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uk0bnA5npZ .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uk0bnA5npZ .container {
    padding: 0 22px;
  }
}
.cid-uk0bnA5npZ .row {
  position: relative;
  z-index: 1;
}
.cid-uk0bnA5npZ .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uk0bnA5npZ .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uk0bnA5npZ .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uk0bnA5npZ .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uk0bnA5npZ .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk0bnA5npZ .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uk0bnA5npZ .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uk0bnA5npZ .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uk0bnA5npZ .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uk0bnA5npZ .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uk0bnA5npZ .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uk0bnA5npZ .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uk0bnA5npZ .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uk0bnA5npZ .nav-wrapper .list .item-wrap:hover,
.cid-uk0bnA5npZ .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uk0bnA5npZ .nav-wrapper .list .item-wrap:hover::before,
.cid-uk0bnA5npZ .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uk0bnA5npZ .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-uk0bnA5npZ .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk0bnA5npZ .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uk0bnA5npZ .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uk0bnA5npZ .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uk0bnA5npZ .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uk0bnA5npZ .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uk0bnA5npZ .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uk0bnA5npZ .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uk0bnA5npZ .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uk0bnA5npZ .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uk0bnA5npZ .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uk0bnA5npZ .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-uk0bnA5npZ .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk0bnA5npZ .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uk0bnA5npZ .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uk0bnA5npZ .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uk0bnA5npZ .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uk0bnA5npZ .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uk0bnA5npZ .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uk0bnA5npZ .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uk0bnA5npZ .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uk0bnA5npZ .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uk0bnA5npZ .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uk0bnA5npZ .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uk0bnA5npZ .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uk0bnA5npZ .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uk0bnA5npZ .mbr-section-title {
  color: #ffffff;
}
.cid-uk0bnA5npZ .mbr-text {
  color: #ffffff;
}
.cid-uk0bnA5npZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uk0bnA5npZ .list {
  color: #ffffff;
}
.cid-uk0bnA5npZ .mbr-contact {
  color: #ffffff;
}
.cid-uk0bnA5npZ .mbr-desc {
  color: #ffffff;
}
.cid-uk0bnA5npZ .mbr-contact,
.cid-uk0bnA5npZ .item-contact {
  color: #ffffff;
}
.cid-uwyNEgukmA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uwyNEgukmA nav.navbar {
  position: fixed;
}
.cid-uwyNEgukmA .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-uwyNEgukmA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwyNEgukmA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwyNEgukmA .dropdown-item:hover,
.cid-uwyNEgukmA .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uwyNEgukmA .dropdown-item:hover span {
  color: white;
}
.cid-uwyNEgukmA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwyNEgukmA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwyNEgukmA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwyNEgukmA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwyNEgukmA .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uwyNEgukmA .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uwyNEgukmA .container {
    flex-wrap: nowrap;
  }
}
.cid-uwyNEgukmA .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uwyNEgukmA .dropdown-menu,
.cid-uwyNEgukmA .navbar.opened {
  background: #000000 !important;
}
.cid-uwyNEgukmA .nav-item:focus,
.cid-uwyNEgukmA .nav-link:focus {
  outline: none;
}
.cid-uwyNEgukmA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwyNEgukmA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwyNEgukmA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwyNEgukmA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwyNEgukmA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwyNEgukmA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwyNEgukmA .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-uwyNEgukmA .navbar.opened {
  transition: all 0.3s;
}
.cid-uwyNEgukmA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwyNEgukmA .navbar .navbar-logo img {
  width: auto;
}
.cid-uwyNEgukmA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwyNEgukmA .navbar.collapsed {
  justify-content: center;
}
.cid-uwyNEgukmA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwyNEgukmA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uwyNEgukmA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uwyNEgukmA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwyNEgukmA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwyNEgukmA .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-uwyNEgukmA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwyNEgukmA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwyNEgukmA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwyNEgukmA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwyNEgukmA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwyNEgukmA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwyNEgukmA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwyNEgukmA .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-uwyNEgukmA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwyNEgukmA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwyNEgukmA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwyNEgukmA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwyNEgukmA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwyNEgukmA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwyNEgukmA .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwyNEgukmA .navbar.navbar-short {
  min-height: 60px;
}
.cid-uwyNEgukmA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwyNEgukmA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uwyNEgukmA .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-uwyNEgukmA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwyNEgukmA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwyNEgukmA .dropdown-item.active,
.cid-uwyNEgukmA .dropdown-item:active {
  background-color: transparent;
}
.cid-uwyNEgukmA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwyNEgukmA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwyNEgukmA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwyNEgukmA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uwyNEgukmA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwyNEgukmA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwyNEgukmA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwyNEgukmA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uwyNEgukmA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uwyNEgukmA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uwyNEgukmA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uwyNEgukmA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwyNEgukmA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwyNEgukmA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uwyNEgukmA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwyNEgukmA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uwyNEgukmA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwyNEgukmA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwyNEgukmA .navbar-dropdown {
  position: fixed;
}
.cid-uwyNEgukmA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwyNEgukmA .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-uwyNEgukmA .navbar {
    height: 70px;
  }
  .cid-uwyNEgukmA .navbar.opened {
    height: auto;
  }
  .cid-uwyNEgukmA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwyNEgSk38 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwyNEgSk38 .mbr-section-title {
  color: #0d0c22;
}
.cid-uwyNEgSk38 .mbr-text,
.cid-uwyNEgSk38 .mbr-section-btn {
  color: #727272;
}
.cid-uwyNEgSk38 .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uwyNEgSk38 img {
  border-radius: 2rem;
}
.cid-uwyNEhiYso {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwyNEhiYso .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uwyNEhiYso .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwyNEhiYso .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwyNEhFoo6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uwyNEhFoo6::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uwyNEhFoo6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwyNEhFoo6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwyNEhFoo6 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uwyNEhFoo6 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uwyNEhFoo6 .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uwyNEhFoo6 .container {
    padding: 0 22px;
  }
}
.cid-uwyNEhFoo6 .row {
  position: relative;
  z-index: 1;
}
.cid-uwyNEhFoo6 .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uwyNEhFoo6 .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uwyNEhFoo6 .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uwyNEhFoo6 .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uwyNEhFoo6 .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyNEhFoo6 .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uwyNEhFoo6 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uwyNEhFoo6 .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uwyNEhFoo6 .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uwyNEhFoo6 .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uwyNEhFoo6 .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uwyNEhFoo6 .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uwyNEhFoo6 .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uwyNEhFoo6 .nav-wrapper .list .item-wrap:hover,
.cid-uwyNEhFoo6 .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uwyNEhFoo6 .nav-wrapper .list .item-wrap:hover::before,
.cid-uwyNEhFoo6 .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uwyNEhFoo6 .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-uwyNEhFoo6 .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyNEhFoo6 .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uwyNEhFoo6 .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uwyNEhFoo6 .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uwyNEhFoo6 .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uwyNEhFoo6 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uwyNEhFoo6 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uwyNEhFoo6 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uwyNEhFoo6 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uwyNEhFoo6 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uwyNEhFoo6 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uwyNEhFoo6 .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-uwyNEhFoo6 .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyNEhFoo6 .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uwyNEhFoo6 .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uwyNEhFoo6 .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uwyNEhFoo6 .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uwyNEhFoo6 .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uwyNEhFoo6 .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uwyNEhFoo6 .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uwyNEhFoo6 .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uwyNEhFoo6 .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uwyNEhFoo6 .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uwyNEhFoo6 .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uwyNEhFoo6 .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uwyNEhFoo6 .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uwyNEhFoo6 .mbr-section-title {
  color: #ffffff;
}
.cid-uwyNEhFoo6 .mbr-text {
  color: #ffffff;
}
.cid-uwyNEhFoo6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uwyNEhFoo6 .list {
  color: #ffffff;
}
.cid-uwyNEhFoo6 .mbr-contact {
  color: #ffffff;
}
.cid-uwyNEhFoo6 .mbr-desc {
  color: #ffffff;
}
.cid-uwyNEhFoo6 .mbr-contact,
.cid-uwyNEhFoo6 .item-contact {
  color: #ffffff;
}
.cid-uwyNEijhoJ.popup-builder {
  background-color: #ffffff;
}
.cid-uwyNEijhoJ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwyNEijhoJ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwyNEijhoJ .modal-content,
.cid-uwyNEijhoJ .modal-dialog {
  height: auto;
}
.cid-uwyNEijhoJ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwyNEijhoJ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwyNEijhoJ .form-wrapper .mbr-form .form-group,
  .cid-uwyNEijhoJ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwyNEijhoJ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwyNEijhoJ .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-uwyNEijhoJ .mbr-text {
  text-align: center;
}
.cid-uwyNEijhoJ .pt-0 {
  padding-top: 0 !important;
}
.cid-uwyNEijhoJ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwyNEijhoJ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwyNEijhoJ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwyNEijhoJ .modal-open {
  overflow: hidden;
}
.cid-uwyNEijhoJ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwyNEijhoJ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwyNEijhoJ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwyNEijhoJ .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-uwyNEijhoJ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwyNEijhoJ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwyNEijhoJ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwyNEijhoJ .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-uwyNEijhoJ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwyNEijhoJ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwyNEijhoJ .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwyNEijhoJ .modal-backdrop.show {
  opacity: .5;
}
.cid-uwyNEijhoJ .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-uwyNEijhoJ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyNEijhoJ .modal-header {
    padding: 1rem;
  }
}
.cid-uwyNEijhoJ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwyNEijhoJ .modal-header .close svg {
  fill: #353535;
}
.cid-uwyNEijhoJ .modal-header .close:hover {
  opacity: 1;
}
.cid-uwyNEijhoJ .modal-header .close:focus {
  outline: none;
}
.cid-uwyNEijhoJ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uwyNEijhoJ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwyNEijhoJ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyNEijhoJ .modal-body {
    padding: 1rem;
  }
}
.cid-uwyNEijhoJ .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-uwyNEijhoJ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyNEijhoJ .modal-footer {
    padding: 1rem;
  }
}
.cid-uwyNEijhoJ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwyNEijhoJ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwyNEijhoJ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwyNEijhoJ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwyNEijhoJ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwyNEijhoJ .modal-lg,
  .cid-uwyNEijhoJ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwyNEijhoJ .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwyNEijhoJ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwyNEijhoJ .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-uwyNEijhoJ .form-group {
  margin-bottom: 1rem;
}
.cid-uwyNEijhoJ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwyNEijhoJ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwyNEijhoJ .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-uwyNEijhoJ .mbr-section-btn {
  margin: 0;
}
.cid-uwyNEijhoJ .mbr-section-btn .btn {
  margin: 0;
}
.cid-uxSoNxmTFH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uxSoNxmTFH nav.navbar {
  position: fixed;
}
.cid-uxSoNxmTFH .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-uxSoNxmTFH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uxSoNxmTFH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uxSoNxmTFH .dropdown-item:hover,
.cid-uxSoNxmTFH .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uxSoNxmTFH .dropdown-item:hover span {
  color: white;
}
.cid-uxSoNxmTFH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uxSoNxmTFH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uxSoNxmTFH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uxSoNxmTFH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uxSoNxmTFH .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uxSoNxmTFH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uxSoNxmTFH .container {
    flex-wrap: nowrap;
  }
}
.cid-uxSoNxmTFH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uxSoNxmTFH .dropdown-menu,
.cid-uxSoNxmTFH .navbar.opened {
  background: #000000 !important;
}
.cid-uxSoNxmTFH .nav-item:focus,
.cid-uxSoNxmTFH .nav-link:focus {
  outline: none;
}
.cid-uxSoNxmTFH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uxSoNxmTFH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uxSoNxmTFH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uxSoNxmTFH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uxSoNxmTFH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uxSoNxmTFH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uxSoNxmTFH .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-uxSoNxmTFH .navbar.opened {
  transition: all 0.3s;
}
.cid-uxSoNxmTFH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uxSoNxmTFH .navbar .navbar-logo img {
  width: auto;
}
.cid-uxSoNxmTFH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uxSoNxmTFH .navbar.collapsed {
  justify-content: center;
}
.cid-uxSoNxmTFH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uxSoNxmTFH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uxSoNxmTFH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uxSoNxmTFH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uxSoNxmTFH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uxSoNxmTFH .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-uxSoNxmTFH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uxSoNxmTFH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uxSoNxmTFH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uxSoNxmTFH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uxSoNxmTFH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxSoNxmTFH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxSoNxmTFH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uxSoNxmTFH .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-uxSoNxmTFH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uxSoNxmTFH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uxSoNxmTFH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uxSoNxmTFH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uxSoNxmTFH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uxSoNxmTFH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uxSoNxmTFH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uxSoNxmTFH .navbar.navbar-short {
  min-height: 60px;
}
.cid-uxSoNxmTFH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uxSoNxmTFH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uxSoNxmTFH .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-uxSoNxmTFH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uxSoNxmTFH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uxSoNxmTFH .dropdown-item.active,
.cid-uxSoNxmTFH .dropdown-item:active {
  background-color: transparent;
}
.cid-uxSoNxmTFH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uxSoNxmTFH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxSoNxmTFH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxSoNxmTFH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uxSoNxmTFH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uxSoNxmTFH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxSoNxmTFH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uxSoNxmTFH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uxSoNxmTFH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uxSoNxmTFH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uxSoNxmTFH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uxSoNxmTFH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxSoNxmTFH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxSoNxmTFH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxSoNxmTFH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxSoNxmTFH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxSoNxmTFH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxSoNxmTFH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxSoNxmTFH .navbar-dropdown {
  position: fixed;
}
.cid-uxSoNxmTFH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uxSoNxmTFH .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-uxSoNxmTFH .navbar {
    height: 70px;
  }
  .cid-uxSoNxmTFH .navbar.opened {
    height: auto;
  }
  .cid-uxSoNxmTFH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxSoNxHKb3 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uxSoNxHKb3 blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-uxSoNxHKb3 .quote {
  color: #e43f3f;
}
.cid-uxSoNxHKb3 .quote,
.cid-uxSoNxHKb3 blockquote {
  color: #353535;
}
.cid-uxSoNy5YrR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uxSoNy5YrR::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uxSoNy5YrR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxSoNy5YrR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxSoNy5YrR .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uxSoNy5YrR .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uxSoNy5YrR .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uxSoNy5YrR .container {
    padding: 0 22px;
  }
}
.cid-uxSoNy5YrR .row {
  position: relative;
  z-index: 1;
}
.cid-uxSoNy5YrR .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uxSoNy5YrR .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uxSoNy5YrR .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uxSoNy5YrR .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uxSoNy5YrR .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSoNy5YrR .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uxSoNy5YrR .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uxSoNy5YrR .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uxSoNy5YrR .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uxSoNy5YrR .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uxSoNy5YrR .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uxSoNy5YrR .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uxSoNy5YrR .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uxSoNy5YrR .nav-wrapper .list .item-wrap:hover,
.cid-uxSoNy5YrR .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uxSoNy5YrR .nav-wrapper .list .item-wrap:hover::before,
.cid-uxSoNy5YrR .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uxSoNy5YrR .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-uxSoNy5YrR .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSoNy5YrR .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uxSoNy5YrR .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uxSoNy5YrR .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uxSoNy5YrR .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uxSoNy5YrR .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uxSoNy5YrR .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uxSoNy5YrR .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uxSoNy5YrR .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uxSoNy5YrR .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uxSoNy5YrR .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uxSoNy5YrR .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-uxSoNy5YrR .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSoNy5YrR .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uxSoNy5YrR .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uxSoNy5YrR .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uxSoNy5YrR .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uxSoNy5YrR .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uxSoNy5YrR .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uxSoNy5YrR .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uxSoNy5YrR .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uxSoNy5YrR .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uxSoNy5YrR .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uxSoNy5YrR .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uxSoNy5YrR .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxSoNy5YrR .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uxSoNy5YrR .mbr-section-title {
  color: #ffffff;
}
.cid-uxSoNy5YrR .mbr-text {
  color: #ffffff;
}
.cid-uxSoNy5YrR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxSoNy5YrR .list {
  color: #ffffff;
}
.cid-uxSoNy5YrR .mbr-contact {
  color: #ffffff;
}
.cid-uxSoNy5YrR .mbr-desc {
  color: #ffffff;
}
.cid-uxSoNy5YrR .mbr-contact,
.cid-uxSoNy5YrR .item-contact {
  color: #ffffff;
}
.cid-uxSpwIkjch {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uxSpwIkjch nav.navbar {
  position: fixed;
}
.cid-uxSpwIkjch .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-uxSpwIkjch .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uxSpwIkjch .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uxSpwIkjch .dropdown-item:hover,
.cid-uxSpwIkjch .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uxSpwIkjch .dropdown-item:hover span {
  color: white;
}
.cid-uxSpwIkjch .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uxSpwIkjch .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uxSpwIkjch .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uxSpwIkjch .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uxSpwIkjch .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uxSpwIkjch .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uxSpwIkjch .container {
    flex-wrap: nowrap;
  }
}
.cid-uxSpwIkjch .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uxSpwIkjch .dropdown-menu,
.cid-uxSpwIkjch .navbar.opened {
  background: #000000 !important;
}
.cid-uxSpwIkjch .nav-item:focus,
.cid-uxSpwIkjch .nav-link:focus {
  outline: none;
}
.cid-uxSpwIkjch .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uxSpwIkjch .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uxSpwIkjch .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uxSpwIkjch .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uxSpwIkjch .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uxSpwIkjch .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uxSpwIkjch .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-uxSpwIkjch .navbar.opened {
  transition: all 0.3s;
}
.cid-uxSpwIkjch .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uxSpwIkjch .navbar .navbar-logo img {
  width: auto;
}
.cid-uxSpwIkjch .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uxSpwIkjch .navbar.collapsed {
  justify-content: center;
}
.cid-uxSpwIkjch .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uxSpwIkjch .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uxSpwIkjch .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uxSpwIkjch .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uxSpwIkjch .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uxSpwIkjch .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-uxSpwIkjch .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uxSpwIkjch .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uxSpwIkjch .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uxSpwIkjch .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uxSpwIkjch .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxSpwIkjch .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxSpwIkjch .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uxSpwIkjch .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-uxSpwIkjch .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uxSpwIkjch .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uxSpwIkjch .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uxSpwIkjch .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uxSpwIkjch .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uxSpwIkjch .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uxSpwIkjch .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uxSpwIkjch .navbar.navbar-short {
  min-height: 60px;
}
.cid-uxSpwIkjch .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uxSpwIkjch .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uxSpwIkjch .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-uxSpwIkjch .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uxSpwIkjch .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uxSpwIkjch .dropdown-item.active,
.cid-uxSpwIkjch .dropdown-item:active {
  background-color: transparent;
}
.cid-uxSpwIkjch .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uxSpwIkjch .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxSpwIkjch .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxSpwIkjch .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uxSpwIkjch .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uxSpwIkjch .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxSpwIkjch ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uxSpwIkjch .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uxSpwIkjch button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uxSpwIkjch button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uxSpwIkjch button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uxSpwIkjch button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxSpwIkjch button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxSpwIkjch button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxSpwIkjch nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxSpwIkjch nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxSpwIkjch nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxSpwIkjch nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxSpwIkjch .navbar-dropdown {
  position: fixed;
}
.cid-uxSpwIkjch a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uxSpwIkjch .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-uxSpwIkjch .navbar {
    height: 70px;
  }
  .cid-uxSpwIkjch .navbar.opened {
    height: auto;
  }
  .cid-uxSpwIkjch .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxSpwIH8Ox {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uxSpwIH8Ox blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-uxSpwIH8Ox .quote {
  color: #e43f3f;
}
.cid-uxSpwIH8Ox .quote,
.cid-uxSpwIH8Ox blockquote {
  color: #353535;
}
.cid-uxSpwJ4M0v {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uxSpwJ4M0v::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uxSpwJ4M0v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxSpwJ4M0v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxSpwJ4M0v .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uxSpwJ4M0v .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uxSpwJ4M0v .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uxSpwJ4M0v .container {
    padding: 0 22px;
  }
}
.cid-uxSpwJ4M0v .row {
  position: relative;
  z-index: 1;
}
.cid-uxSpwJ4M0v .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uxSpwJ4M0v .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uxSpwJ4M0v .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uxSpwJ4M0v .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uxSpwJ4M0v .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSpwJ4M0v .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uxSpwJ4M0v .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uxSpwJ4M0v .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uxSpwJ4M0v .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uxSpwJ4M0v .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uxSpwJ4M0v .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uxSpwJ4M0v .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uxSpwJ4M0v .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uxSpwJ4M0v .nav-wrapper .list .item-wrap:hover,
.cid-uxSpwJ4M0v .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uxSpwJ4M0v .nav-wrapper .list .item-wrap:hover::before,
.cid-uxSpwJ4M0v .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uxSpwJ4M0v .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-uxSpwJ4M0v .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSpwJ4M0v .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uxSpwJ4M0v .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uxSpwJ4M0v .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uxSpwJ4M0v .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uxSpwJ4M0v .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uxSpwJ4M0v .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uxSpwJ4M0v .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uxSpwJ4M0v .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uxSpwJ4M0v .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uxSpwJ4M0v .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uxSpwJ4M0v .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-uxSpwJ4M0v .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSpwJ4M0v .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uxSpwJ4M0v .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uxSpwJ4M0v .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uxSpwJ4M0v .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uxSpwJ4M0v .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uxSpwJ4M0v .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uxSpwJ4M0v .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uxSpwJ4M0v .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uxSpwJ4M0v .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uxSpwJ4M0v .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uxSpwJ4M0v .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uxSpwJ4M0v .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxSpwJ4M0v .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uxSpwJ4M0v .mbr-section-title {
  color: #ffffff;
}
.cid-uxSpwJ4M0v .mbr-text {
  color: #ffffff;
}
.cid-uxSpwJ4M0v .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxSpwJ4M0v .list {
  color: #ffffff;
}
.cid-uxSpwJ4M0v .mbr-contact {
  color: #ffffff;
}
.cid-uxSpwJ4M0v .mbr-desc {
  color: #ffffff;
}
.cid-uxSpwJ4M0v .mbr-contact,
.cid-uxSpwJ4M0v .item-contact {
  color: #ffffff;
}
.cid-uk0bnAEesv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uk0bnAEesv nav.navbar {
  position: fixed;
}
.cid-uk0bnAEesv .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-uk0bnAEesv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uk0bnAEesv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uk0bnAEesv .dropdown-item:hover,
.cid-uk0bnAEesv .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uk0bnAEesv .dropdown-item:hover span {
  color: white;
}
.cid-uk0bnAEesv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uk0bnAEesv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uk0bnAEesv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uk0bnAEesv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uk0bnAEesv .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uk0bnAEesv .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uk0bnAEesv .container {
    flex-wrap: nowrap;
  }
}
.cid-uk0bnAEesv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uk0bnAEesv .dropdown-menu,
.cid-uk0bnAEesv .navbar.opened {
  background: #000000 !important;
}
.cid-uk0bnAEesv .nav-item:focus,
.cid-uk0bnAEesv .nav-link:focus {
  outline: none;
}
.cid-uk0bnAEesv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uk0bnAEesv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uk0bnAEesv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uk0bnAEesv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uk0bnAEesv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uk0bnAEesv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uk0bnAEesv .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-uk0bnAEesv .navbar.opened {
  transition: all 0.3s;
}
.cid-uk0bnAEesv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uk0bnAEesv .navbar .navbar-logo img {
  width: auto;
}
.cid-uk0bnAEesv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uk0bnAEesv .navbar.collapsed {
  justify-content: center;
}
.cid-uk0bnAEesv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uk0bnAEesv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uk0bnAEesv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uk0bnAEesv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uk0bnAEesv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uk0bnAEesv .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-uk0bnAEesv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uk0bnAEesv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uk0bnAEesv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uk0bnAEesv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uk0bnAEesv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uk0bnAEesv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uk0bnAEesv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uk0bnAEesv .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-uk0bnAEesv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uk0bnAEesv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uk0bnAEesv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uk0bnAEesv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uk0bnAEesv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uk0bnAEesv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uk0bnAEesv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uk0bnAEesv .navbar.navbar-short {
  min-height: 60px;
}
.cid-uk0bnAEesv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uk0bnAEesv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uk0bnAEesv .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-uk0bnAEesv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uk0bnAEesv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uk0bnAEesv .dropdown-item.active,
.cid-uk0bnAEesv .dropdown-item:active {
  background-color: transparent;
}
.cid-uk0bnAEesv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uk0bnAEesv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uk0bnAEesv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uk0bnAEesv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uk0bnAEesv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uk0bnAEesv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uk0bnAEesv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uk0bnAEesv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uk0bnAEesv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uk0bnAEesv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uk0bnAEesv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uk0bnAEesv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uk0bnAEesv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uk0bnAEesv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uk0bnAEesv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uk0bnAEesv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uk0bnAEesv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uk0bnAEesv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uk0bnAEesv .navbar-dropdown {
  position: fixed;
}
.cid-uk0bnAEesv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uk0bnAEesv .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-uk0bnAEesv .navbar {
    height: 70px;
  }
  .cid-uk0bnAEesv .navbar.opened {
    height: auto;
  }
  .cid-uk0bnAEesv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uk0bnziCGC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uk0bnziCGC .mbr-section-title {
  color: #0d0c22;
}
.cid-uk0bnziCGC .mbr-text,
.cid-uk0bnziCGC .mbr-section-btn {
  color: #727272;
}
.cid-uk0bnziCGC .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uk0bnziCGC img {
  border-radius: 2rem;
}
.cid-uk0bnzINCa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uk0bnzINCa .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uk0bnzINCa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk0bnzINCa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk0bnA5npZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uk0bnA5npZ::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uk0bnA5npZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk0bnA5npZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk0bnA5npZ .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uk0bnA5npZ .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uk0bnA5npZ .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uk0bnA5npZ .container {
    padding: 0 22px;
  }
}
.cid-uk0bnA5npZ .row {
  position: relative;
  z-index: 1;
}
.cid-uk0bnA5npZ .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uk0bnA5npZ .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uk0bnA5npZ .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uk0bnA5npZ .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uk0bnA5npZ .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk0bnA5npZ .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uk0bnA5npZ .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uk0bnA5npZ .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uk0bnA5npZ .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uk0bnA5npZ .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uk0bnA5npZ .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uk0bnA5npZ .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uk0bnA5npZ .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uk0bnA5npZ .nav-wrapper .list .item-wrap:hover,
.cid-uk0bnA5npZ .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uk0bnA5npZ .nav-wrapper .list .item-wrap:hover::before,
.cid-uk0bnA5npZ .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uk0bnA5npZ .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-uk0bnA5npZ .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk0bnA5npZ .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uk0bnA5npZ .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uk0bnA5npZ .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uk0bnA5npZ .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uk0bnA5npZ .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uk0bnA5npZ .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uk0bnA5npZ .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uk0bnA5npZ .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uk0bnA5npZ .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uk0bnA5npZ .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uk0bnA5npZ .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-uk0bnA5npZ .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk0bnA5npZ .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uk0bnA5npZ .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uk0bnA5npZ .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uk0bnA5npZ .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uk0bnA5npZ .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uk0bnA5npZ .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uk0bnA5npZ .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uk0bnA5npZ .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uk0bnA5npZ .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uk0bnA5npZ .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uk0bnA5npZ .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uk0bnA5npZ .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uk0bnA5npZ .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uk0bnA5npZ .mbr-section-title {
  color: #ffffff;
}
.cid-uk0bnA5npZ .mbr-text {
  color: #ffffff;
}
.cid-uk0bnA5npZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uk0bnA5npZ .list {
  color: #ffffff;
}
.cid-uk0bnA5npZ .mbr-contact {
  color: #ffffff;
}
.cid-uk0bnA5npZ .mbr-desc {
  color: #ffffff;
}
.cid-uk0bnA5npZ .mbr-contact,
.cid-uk0bnA5npZ .item-contact {
  color: #ffffff;
}
.cid-uk0o2Fa67V.popup-builder {
  background-color: #ffffff;
}
.cid-uk0o2Fa67V.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uk0o2Fa67V.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uk0o2Fa67V .modal-content,
.cid-uk0o2Fa67V .modal-dialog {
  height: auto;
}
.cid-uk0o2Fa67V .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uk0o2Fa67V .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uk0o2Fa67V .form-wrapper .mbr-form .form-group,
  .cid-uk0o2Fa67V .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uk0o2Fa67V .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uk0o2Fa67V .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-uk0o2Fa67V .mbr-text {
  text-align: center;
}
.cid-uk0o2Fa67V .pt-0 {
  padding-top: 0 !important;
}
.cid-uk0o2Fa67V .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uk0o2Fa67V .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uk0o2Fa67V .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uk0o2Fa67V .modal-open {
  overflow: hidden;
}
.cid-uk0o2Fa67V .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uk0o2Fa67V .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uk0o2Fa67V .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uk0o2Fa67V .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-uk0o2Fa67V .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uk0o2Fa67V .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uk0o2Fa67V .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uk0o2Fa67V .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-uk0o2Fa67V .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uk0o2Fa67V .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uk0o2Fa67V .modal-backdrop.fade {
  opacity: 0;
}
.cid-uk0o2Fa67V .modal-backdrop.show {
  opacity: .5;
}
.cid-uk0o2Fa67V .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-uk0o2Fa67V .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uk0o2Fa67V .modal-header {
    padding: 1rem;
  }
}
.cid-uk0o2Fa67V .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uk0o2Fa67V .modal-header .close svg {
  fill: #353535;
}
.cid-uk0o2Fa67V .modal-header .close:hover {
  opacity: 1;
}
.cid-uk0o2Fa67V .modal-header .close:focus {
  outline: none;
}
.cid-uk0o2Fa67V .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uk0o2Fa67V .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uk0o2Fa67V .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uk0o2Fa67V .modal-body {
    padding: 1rem;
  }
}
.cid-uk0o2Fa67V .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-uk0o2Fa67V .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uk0o2Fa67V .modal-footer {
    padding: 1rem;
  }
}
.cid-uk0o2Fa67V .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uk0o2Fa67V .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uk0o2Fa67V .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uk0o2Fa67V .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uk0o2Fa67V .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uk0o2Fa67V .modal-lg,
  .cid-uk0o2Fa67V .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uk0o2Fa67V .modal-xl {
    max-width: 1140px;
  }
}
.cid-uk0o2Fa67V .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uk0o2Fa67V .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-uk0o2Fa67V .form-group {
  margin-bottom: 1rem;
}
.cid-uk0o2Fa67V .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uk0o2Fa67V .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uk0o2Fa67V .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-uk0o2Fa67V .mbr-section-btn {
  margin: 0;
}
.cid-uk0o2Fa67V .mbr-section-btn .btn {
  margin: 0;
}
.cid-uxSqh9u3fE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uxSqh9u3fE nav.navbar {
  position: fixed;
}
.cid-uxSqh9u3fE .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-uxSqh9u3fE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uxSqh9u3fE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uxSqh9u3fE .dropdown-item:hover,
.cid-uxSqh9u3fE .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uxSqh9u3fE .dropdown-item:hover span {
  color: white;
}
.cid-uxSqh9u3fE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uxSqh9u3fE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uxSqh9u3fE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uxSqh9u3fE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uxSqh9u3fE .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uxSqh9u3fE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uxSqh9u3fE .container {
    flex-wrap: nowrap;
  }
}
.cid-uxSqh9u3fE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uxSqh9u3fE .dropdown-menu,
.cid-uxSqh9u3fE .navbar.opened {
  background: #000000 !important;
}
.cid-uxSqh9u3fE .nav-item:focus,
.cid-uxSqh9u3fE .nav-link:focus {
  outline: none;
}
.cid-uxSqh9u3fE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uxSqh9u3fE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uxSqh9u3fE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uxSqh9u3fE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uxSqh9u3fE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uxSqh9u3fE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uxSqh9u3fE .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-uxSqh9u3fE .navbar.opened {
  transition: all 0.3s;
}
.cid-uxSqh9u3fE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uxSqh9u3fE .navbar .navbar-logo img {
  width: auto;
}
.cid-uxSqh9u3fE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uxSqh9u3fE .navbar.collapsed {
  justify-content: center;
}
.cid-uxSqh9u3fE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uxSqh9u3fE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uxSqh9u3fE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uxSqh9u3fE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uxSqh9u3fE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uxSqh9u3fE .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-uxSqh9u3fE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uxSqh9u3fE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uxSqh9u3fE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uxSqh9u3fE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uxSqh9u3fE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxSqh9u3fE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxSqh9u3fE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uxSqh9u3fE .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-uxSqh9u3fE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uxSqh9u3fE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uxSqh9u3fE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uxSqh9u3fE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uxSqh9u3fE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uxSqh9u3fE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uxSqh9u3fE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uxSqh9u3fE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uxSqh9u3fE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uxSqh9u3fE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uxSqh9u3fE .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-uxSqh9u3fE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uxSqh9u3fE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uxSqh9u3fE .dropdown-item.active,
.cid-uxSqh9u3fE .dropdown-item:active {
  background-color: transparent;
}
.cid-uxSqh9u3fE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uxSqh9u3fE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxSqh9u3fE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxSqh9u3fE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uxSqh9u3fE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uxSqh9u3fE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxSqh9u3fE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uxSqh9u3fE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uxSqh9u3fE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uxSqh9u3fE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uxSqh9u3fE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uxSqh9u3fE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxSqh9u3fE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxSqh9u3fE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxSqh9u3fE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxSqh9u3fE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxSqh9u3fE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxSqh9u3fE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxSqh9u3fE .navbar-dropdown {
  position: fixed;
}
.cid-uxSqh9u3fE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uxSqh9u3fE .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-uxSqh9u3fE .navbar {
    height: 70px;
  }
  .cid-uxSqh9u3fE .navbar.opened {
    height: auto;
  }
  .cid-uxSqh9u3fE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxSqh9Ohow {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uxSqh9Ohow blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-uxSqh9Ohow .quote {
  color: #e43f3f;
}
.cid-uxSqh9Ohow .quote,
.cid-uxSqh9Ohow blockquote {
  color: #353535;
}
.cid-uxSqhae3TK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uxSqhae3TK::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uxSqhae3TK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxSqhae3TK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxSqhae3TK .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uxSqhae3TK .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uxSqhae3TK .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uxSqhae3TK .container {
    padding: 0 22px;
  }
}
.cid-uxSqhae3TK .row {
  position: relative;
  z-index: 1;
}
.cid-uxSqhae3TK .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uxSqhae3TK .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uxSqhae3TK .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uxSqhae3TK .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uxSqhae3TK .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSqhae3TK .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uxSqhae3TK .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uxSqhae3TK .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uxSqhae3TK .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uxSqhae3TK .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uxSqhae3TK .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uxSqhae3TK .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uxSqhae3TK .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uxSqhae3TK .nav-wrapper .list .item-wrap:hover,
.cid-uxSqhae3TK .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uxSqhae3TK .nav-wrapper .list .item-wrap:hover::before,
.cid-uxSqhae3TK .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uxSqhae3TK .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-uxSqhae3TK .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSqhae3TK .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uxSqhae3TK .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uxSqhae3TK .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uxSqhae3TK .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uxSqhae3TK .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uxSqhae3TK .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uxSqhae3TK .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uxSqhae3TK .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uxSqhae3TK .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uxSqhae3TK .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uxSqhae3TK .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-uxSqhae3TK .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSqhae3TK .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uxSqhae3TK .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uxSqhae3TK .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uxSqhae3TK .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uxSqhae3TK .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uxSqhae3TK .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uxSqhae3TK .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uxSqhae3TK .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uxSqhae3TK .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uxSqhae3TK .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uxSqhae3TK .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uxSqhae3TK .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxSqhae3TK .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uxSqhae3TK .mbr-section-title {
  color: #ffffff;
}
.cid-uxSqhae3TK .mbr-text {
  color: #ffffff;
}
.cid-uxSqhae3TK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxSqhae3TK .list {
  color: #ffffff;
}
.cid-uxSqhae3TK .mbr-contact {
  color: #ffffff;
}
.cid-uxSqhae3TK .mbr-desc {
  color: #ffffff;
}
.cid-uxSqhae3TK .mbr-contact,
.cid-uxSqhae3TK .item-contact {
  color: #ffffff;
}
.cid-uk0clAJqbo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uk0clAJqbo nav.navbar {
  position: fixed;
}
.cid-uk0clAJqbo .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-uk0clAJqbo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uk0clAJqbo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uk0clAJqbo .dropdown-item:hover,
.cid-uk0clAJqbo .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uk0clAJqbo .dropdown-item:hover span {
  color: white;
}
.cid-uk0clAJqbo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uk0clAJqbo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uk0clAJqbo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uk0clAJqbo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uk0clAJqbo .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uk0clAJqbo .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uk0clAJqbo .container {
    flex-wrap: nowrap;
  }
}
.cid-uk0clAJqbo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uk0clAJqbo .dropdown-menu,
.cid-uk0clAJqbo .navbar.opened {
  background: #000000 !important;
}
.cid-uk0clAJqbo .nav-item:focus,
.cid-uk0clAJqbo .nav-link:focus {
  outline: none;
}
.cid-uk0clAJqbo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uk0clAJqbo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uk0clAJqbo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uk0clAJqbo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uk0clAJqbo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uk0clAJqbo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uk0clAJqbo .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-uk0clAJqbo .navbar.opened {
  transition: all 0.3s;
}
.cid-uk0clAJqbo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uk0clAJqbo .navbar .navbar-logo img {
  width: auto;
}
.cid-uk0clAJqbo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uk0clAJqbo .navbar.collapsed {
  justify-content: center;
}
.cid-uk0clAJqbo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uk0clAJqbo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uk0clAJqbo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uk0clAJqbo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uk0clAJqbo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uk0clAJqbo .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-uk0clAJqbo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uk0clAJqbo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uk0clAJqbo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uk0clAJqbo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uk0clAJqbo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uk0clAJqbo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uk0clAJqbo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uk0clAJqbo .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-uk0clAJqbo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uk0clAJqbo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uk0clAJqbo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uk0clAJqbo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uk0clAJqbo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uk0clAJqbo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uk0clAJqbo .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uk0clAJqbo .navbar.navbar-short {
  min-height: 60px;
}
.cid-uk0clAJqbo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uk0clAJqbo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uk0clAJqbo .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-uk0clAJqbo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uk0clAJqbo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uk0clAJqbo .dropdown-item.active,
.cid-uk0clAJqbo .dropdown-item:active {
  background-color: transparent;
}
.cid-uk0clAJqbo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uk0clAJqbo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uk0clAJqbo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uk0clAJqbo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uk0clAJqbo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uk0clAJqbo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uk0clAJqbo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uk0clAJqbo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uk0clAJqbo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uk0clAJqbo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uk0clAJqbo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uk0clAJqbo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uk0clAJqbo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uk0clAJqbo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uk0clAJqbo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uk0clAJqbo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uk0clAJqbo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uk0clAJqbo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uk0clAJqbo .navbar-dropdown {
  position: fixed;
}
.cid-uk0clAJqbo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uk0clAJqbo .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-uk0clAJqbo .navbar {
    height: 70px;
  }
  .cid-uk0clAJqbo .navbar.opened {
    height: auto;
  }
  .cid-uk0clAJqbo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uk0clz2fa5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uk0clz2fa5 .mbr-section-title {
  color: #0d0c22;
}
.cid-uk0clz2fa5 .mbr-text,
.cid-uk0clz2fa5 .mbr-section-btn {
  color: #727272;
}
.cid-uk0clz2fa5 .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uk0clz2fa5 img {
  border-radius: 2rem;
}
.cid-uk0clzCORl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uk0clzCORl .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uk0clzCORl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk0clzCORl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk0clA77IW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uk0clA77IW::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uk0clA77IW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk0clA77IW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk0clA77IW .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uk0clA77IW .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uk0clA77IW .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uk0clA77IW .container {
    padding: 0 22px;
  }
}
.cid-uk0clA77IW .row {
  position: relative;
  z-index: 1;
}
.cid-uk0clA77IW .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uk0clA77IW .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uk0clA77IW .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uk0clA77IW .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uk0clA77IW .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk0clA77IW .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uk0clA77IW .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uk0clA77IW .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uk0clA77IW .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uk0clA77IW .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uk0clA77IW .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uk0clA77IW .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uk0clA77IW .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uk0clA77IW .nav-wrapper .list .item-wrap:hover,
.cid-uk0clA77IW .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uk0clA77IW .nav-wrapper .list .item-wrap:hover::before,
.cid-uk0clA77IW .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uk0clA77IW .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-uk0clA77IW .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk0clA77IW .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uk0clA77IW .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uk0clA77IW .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uk0clA77IW .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uk0clA77IW .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uk0clA77IW .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uk0clA77IW .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uk0clA77IW .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uk0clA77IW .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uk0clA77IW .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uk0clA77IW .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-uk0clA77IW .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk0clA77IW .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uk0clA77IW .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uk0clA77IW .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uk0clA77IW .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uk0clA77IW .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uk0clA77IW .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uk0clA77IW .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uk0clA77IW .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uk0clA77IW .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uk0clA77IW .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uk0clA77IW .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uk0clA77IW .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uk0clA77IW .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uk0clA77IW .mbr-section-title {
  color: #ffffff;
}
.cid-uk0clA77IW .mbr-text {
  color: #ffffff;
}
.cid-uk0clA77IW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uk0clA77IW .list {
  color: #ffffff;
}
.cid-uk0clA77IW .mbr-contact {
  color: #ffffff;
}
.cid-uk0clA77IW .mbr-desc {
  color: #ffffff;
}
.cid-uk0clA77IW .mbr-contact,
.cid-uk0clA77IW .item-contact {
  color: #ffffff;
}
.cid-uk0o2Fa1Am.popup-builder {
  background-color: #ffffff;
}
.cid-uk0o2Fa1Am.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uk0o2Fa1Am.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uk0o2Fa1Am .modal-content,
.cid-uk0o2Fa1Am .modal-dialog {
  height: auto;
}
.cid-uk0o2Fa1Am .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uk0o2Fa1Am .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uk0o2Fa1Am .form-wrapper .mbr-form .form-group,
  .cid-uk0o2Fa1Am .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uk0o2Fa1Am .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uk0o2Fa1Am .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-uk0o2Fa1Am .mbr-text {
  text-align: center;
}
.cid-uk0o2Fa1Am .pt-0 {
  padding-top: 0 !important;
}
.cid-uk0o2Fa1Am .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uk0o2Fa1Am .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uk0o2Fa1Am .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uk0o2Fa1Am .modal-open {
  overflow: hidden;
}
.cid-uk0o2Fa1Am .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uk0o2Fa1Am .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uk0o2Fa1Am .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uk0o2Fa1Am .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-uk0o2Fa1Am .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uk0o2Fa1Am .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uk0o2Fa1Am .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uk0o2Fa1Am .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-uk0o2Fa1Am .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uk0o2Fa1Am .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uk0o2Fa1Am .modal-backdrop.fade {
  opacity: 0;
}
.cid-uk0o2Fa1Am .modal-backdrop.show {
  opacity: .5;
}
.cid-uk0o2Fa1Am .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-uk0o2Fa1Am .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uk0o2Fa1Am .modal-header {
    padding: 1rem;
  }
}
.cid-uk0o2Fa1Am .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uk0o2Fa1Am .modal-header .close svg {
  fill: #353535;
}
.cid-uk0o2Fa1Am .modal-header .close:hover {
  opacity: 1;
}
.cid-uk0o2Fa1Am .modal-header .close:focus {
  outline: none;
}
.cid-uk0o2Fa1Am .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uk0o2Fa1Am .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uk0o2Fa1Am .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uk0o2Fa1Am .modal-body {
    padding: 1rem;
  }
}
.cid-uk0o2Fa1Am .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-uk0o2Fa1Am .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uk0o2Fa1Am .modal-footer {
    padding: 1rem;
  }
}
.cid-uk0o2Fa1Am .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uk0o2Fa1Am .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uk0o2Fa1Am .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uk0o2Fa1Am .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uk0o2Fa1Am .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uk0o2Fa1Am .modal-lg,
  .cid-uk0o2Fa1Am .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uk0o2Fa1Am .modal-xl {
    max-width: 1140px;
  }
}
.cid-uk0o2Fa1Am .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uk0o2Fa1Am .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-uk0o2Fa1Am .form-group {
  margin-bottom: 1rem;
}
.cid-uk0o2Fa1Am .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uk0o2Fa1Am .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uk0o2Fa1Am .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-uk0o2Fa1Am .mbr-section-btn {
  margin: 0;
}
.cid-uk0o2Fa1Am .mbr-section-btn .btn {
  margin: 0;
}
.cid-uxSrjjGy0p {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uxSrjjGy0p nav.navbar {
  position: fixed;
}
.cid-uxSrjjGy0p .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-uxSrjjGy0p .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uxSrjjGy0p .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uxSrjjGy0p .dropdown-item:hover,
.cid-uxSrjjGy0p .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uxSrjjGy0p .dropdown-item:hover span {
  color: white;
}
.cid-uxSrjjGy0p .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uxSrjjGy0p .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uxSrjjGy0p .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uxSrjjGy0p .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uxSrjjGy0p .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uxSrjjGy0p .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uxSrjjGy0p .container {
    flex-wrap: nowrap;
  }
}
.cid-uxSrjjGy0p .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uxSrjjGy0p .dropdown-menu,
.cid-uxSrjjGy0p .navbar.opened {
  background: #000000 !important;
}
.cid-uxSrjjGy0p .nav-item:focus,
.cid-uxSrjjGy0p .nav-link:focus {
  outline: none;
}
.cid-uxSrjjGy0p .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uxSrjjGy0p .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uxSrjjGy0p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uxSrjjGy0p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uxSrjjGy0p .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uxSrjjGy0p .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uxSrjjGy0p .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-uxSrjjGy0p .navbar.opened {
  transition: all 0.3s;
}
.cid-uxSrjjGy0p .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uxSrjjGy0p .navbar .navbar-logo img {
  width: auto;
}
.cid-uxSrjjGy0p .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uxSrjjGy0p .navbar.collapsed {
  justify-content: center;
}
.cid-uxSrjjGy0p .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uxSrjjGy0p .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uxSrjjGy0p .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uxSrjjGy0p .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uxSrjjGy0p .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uxSrjjGy0p .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-uxSrjjGy0p .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uxSrjjGy0p .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uxSrjjGy0p .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uxSrjjGy0p .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uxSrjjGy0p .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxSrjjGy0p .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxSrjjGy0p .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uxSrjjGy0p .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-uxSrjjGy0p .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uxSrjjGy0p .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uxSrjjGy0p .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uxSrjjGy0p .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uxSrjjGy0p .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uxSrjjGy0p .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uxSrjjGy0p .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uxSrjjGy0p .navbar.navbar-short {
  min-height: 60px;
}
.cid-uxSrjjGy0p .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uxSrjjGy0p .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uxSrjjGy0p .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-uxSrjjGy0p .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uxSrjjGy0p .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uxSrjjGy0p .dropdown-item.active,
.cid-uxSrjjGy0p .dropdown-item:active {
  background-color: transparent;
}
.cid-uxSrjjGy0p .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uxSrjjGy0p .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxSrjjGy0p .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxSrjjGy0p .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uxSrjjGy0p .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uxSrjjGy0p .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxSrjjGy0p ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uxSrjjGy0p .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uxSrjjGy0p button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uxSrjjGy0p button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uxSrjjGy0p button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uxSrjjGy0p button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxSrjjGy0p button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxSrjjGy0p button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxSrjjGy0p nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxSrjjGy0p nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxSrjjGy0p nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxSrjjGy0p nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxSrjjGy0p .navbar-dropdown {
  position: fixed;
}
.cid-uxSrjjGy0p a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uxSrjjGy0p .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-uxSrjjGy0p .navbar {
    height: 70px;
  }
  .cid-uxSrjjGy0p .navbar.opened {
    height: auto;
  }
  .cid-uxSrjjGy0p .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxSrjk2GP9 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uxSrjk2GP9 blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-uxSrjk2GP9 .quote {
  color: #e43f3f;
}
.cid-uxSrjk2GP9 .quote,
.cid-uxSrjk2GP9 blockquote {
  color: #353535;
}
.cid-uxSrjksrf3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uxSrjksrf3::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uxSrjksrf3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxSrjksrf3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxSrjksrf3 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uxSrjksrf3 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uxSrjksrf3 .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uxSrjksrf3 .container {
    padding: 0 22px;
  }
}
.cid-uxSrjksrf3 .row {
  position: relative;
  z-index: 1;
}
.cid-uxSrjksrf3 .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uxSrjksrf3 .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uxSrjksrf3 .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uxSrjksrf3 .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uxSrjksrf3 .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSrjksrf3 .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uxSrjksrf3 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uxSrjksrf3 .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uxSrjksrf3 .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uxSrjksrf3 .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uxSrjksrf3 .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uxSrjksrf3 .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uxSrjksrf3 .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uxSrjksrf3 .nav-wrapper .list .item-wrap:hover,
.cid-uxSrjksrf3 .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uxSrjksrf3 .nav-wrapper .list .item-wrap:hover::before,
.cid-uxSrjksrf3 .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uxSrjksrf3 .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-uxSrjksrf3 .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSrjksrf3 .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uxSrjksrf3 .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uxSrjksrf3 .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uxSrjksrf3 .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uxSrjksrf3 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uxSrjksrf3 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uxSrjksrf3 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uxSrjksrf3 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uxSrjksrf3 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uxSrjksrf3 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uxSrjksrf3 .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-uxSrjksrf3 .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSrjksrf3 .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uxSrjksrf3 .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uxSrjksrf3 .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uxSrjksrf3 .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uxSrjksrf3 .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uxSrjksrf3 .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uxSrjksrf3 .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uxSrjksrf3 .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uxSrjksrf3 .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uxSrjksrf3 .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uxSrjksrf3 .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uxSrjksrf3 .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxSrjksrf3 .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uxSrjksrf3 .mbr-section-title {
  color: #ffffff;
}
.cid-uxSrjksrf3 .mbr-text {
  color: #ffffff;
}
.cid-uxSrjksrf3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxSrjksrf3 .list {
  color: #ffffff;
}
.cid-uxSrjksrf3 .mbr-contact {
  color: #ffffff;
}
.cid-uxSrjksrf3 .mbr-desc {
  color: #ffffff;
}
.cid-uxSrjksrf3 .mbr-contact,
.cid-uxSrjksrf3 .item-contact {
  color: #ffffff;
}
.cid-uxSt2voafp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uxSt2voafp nav.navbar {
  position: fixed;
}
.cid-uxSt2voafp .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-uxSt2voafp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uxSt2voafp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uxSt2voafp .dropdown-item:hover,
.cid-uxSt2voafp .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uxSt2voafp .dropdown-item:hover span {
  color: white;
}
.cid-uxSt2voafp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uxSt2voafp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uxSt2voafp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uxSt2voafp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uxSt2voafp .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uxSt2voafp .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uxSt2voafp .container {
    flex-wrap: nowrap;
  }
}
.cid-uxSt2voafp .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uxSt2voafp .dropdown-menu,
.cid-uxSt2voafp .navbar.opened {
  background: #000000 !important;
}
.cid-uxSt2voafp .nav-item:focus,
.cid-uxSt2voafp .nav-link:focus {
  outline: none;
}
.cid-uxSt2voafp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uxSt2voafp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uxSt2voafp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uxSt2voafp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uxSt2voafp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uxSt2voafp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uxSt2voafp .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-uxSt2voafp .navbar.opened {
  transition: all 0.3s;
}
.cid-uxSt2voafp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uxSt2voafp .navbar .navbar-logo img {
  width: auto;
}
.cid-uxSt2voafp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uxSt2voafp .navbar.collapsed {
  justify-content: center;
}
.cid-uxSt2voafp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uxSt2voafp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uxSt2voafp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uxSt2voafp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uxSt2voafp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uxSt2voafp .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-uxSt2voafp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uxSt2voafp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uxSt2voafp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uxSt2voafp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uxSt2voafp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxSt2voafp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxSt2voafp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uxSt2voafp .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-uxSt2voafp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uxSt2voafp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uxSt2voafp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uxSt2voafp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uxSt2voafp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uxSt2voafp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uxSt2voafp .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uxSt2voafp .navbar.navbar-short {
  min-height: 60px;
}
.cid-uxSt2voafp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uxSt2voafp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uxSt2voafp .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-uxSt2voafp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uxSt2voafp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uxSt2voafp .dropdown-item.active,
.cid-uxSt2voafp .dropdown-item:active {
  background-color: transparent;
}
.cid-uxSt2voafp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uxSt2voafp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxSt2voafp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxSt2voafp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uxSt2voafp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uxSt2voafp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxSt2voafp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uxSt2voafp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uxSt2voafp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uxSt2voafp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uxSt2voafp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uxSt2voafp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxSt2voafp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxSt2voafp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxSt2voafp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxSt2voafp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxSt2voafp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxSt2voafp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxSt2voafp .navbar-dropdown {
  position: fixed;
}
.cid-uxSt2voafp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uxSt2voafp .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-uxSt2voafp .navbar {
    height: 70px;
  }
  .cid-uxSt2voafp .navbar.opened {
    height: auto;
  }
  .cid-uxSt2voafp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxSt2w4PGC {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uxSt2w4PGC blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-uxSt2w4PGC .quote {
  color: #e43f3f;
}
.cid-uxSt2w4PGC .quote,
.cid-uxSt2w4PGC blockquote {
  color: #353535;
}
.cid-uxSt2wvTWR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uxSt2wvTWR::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uxSt2wvTWR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxSt2wvTWR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxSt2wvTWR .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uxSt2wvTWR .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uxSt2wvTWR .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uxSt2wvTWR .container {
    padding: 0 22px;
  }
}
.cid-uxSt2wvTWR .row {
  position: relative;
  z-index: 1;
}
.cid-uxSt2wvTWR .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uxSt2wvTWR .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uxSt2wvTWR .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uxSt2wvTWR .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uxSt2wvTWR .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSt2wvTWR .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uxSt2wvTWR .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uxSt2wvTWR .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uxSt2wvTWR .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uxSt2wvTWR .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uxSt2wvTWR .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uxSt2wvTWR .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uxSt2wvTWR .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uxSt2wvTWR .nav-wrapper .list .item-wrap:hover,
.cid-uxSt2wvTWR .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uxSt2wvTWR .nav-wrapper .list .item-wrap:hover::before,
.cid-uxSt2wvTWR .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uxSt2wvTWR .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-uxSt2wvTWR .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSt2wvTWR .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uxSt2wvTWR .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uxSt2wvTWR .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uxSt2wvTWR .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uxSt2wvTWR .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uxSt2wvTWR .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uxSt2wvTWR .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uxSt2wvTWR .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uxSt2wvTWR .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uxSt2wvTWR .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uxSt2wvTWR .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-uxSt2wvTWR .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSt2wvTWR .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uxSt2wvTWR .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uxSt2wvTWR .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uxSt2wvTWR .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uxSt2wvTWR .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uxSt2wvTWR .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uxSt2wvTWR .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uxSt2wvTWR .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uxSt2wvTWR .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uxSt2wvTWR .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uxSt2wvTWR .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uxSt2wvTWR .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxSt2wvTWR .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uxSt2wvTWR .mbr-section-title {
  color: #ffffff;
}
.cid-uxSt2wvTWR .mbr-text {
  color: #ffffff;
}
.cid-uxSt2wvTWR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxSt2wvTWR .list {
  color: #ffffff;
}
.cid-uxSt2wvTWR .mbr-contact {
  color: #ffffff;
}
.cid-uxSt2wvTWR .mbr-desc {
  color: #ffffff;
}
.cid-uxSt2wvTWR .mbr-contact,
.cid-uxSt2wvTWR .item-contact {
  color: #ffffff;
}
.cid-uk0dcZX14V {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uk0dcZX14V nav.navbar {
  position: fixed;
}
.cid-uk0dcZX14V .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-uk0dcZX14V .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uk0dcZX14V .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uk0dcZX14V .dropdown-item:hover,
.cid-uk0dcZX14V .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uk0dcZX14V .dropdown-item:hover span {
  color: white;
}
.cid-uk0dcZX14V .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uk0dcZX14V .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uk0dcZX14V .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uk0dcZX14V .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uk0dcZX14V .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uk0dcZX14V .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uk0dcZX14V .container {
    flex-wrap: nowrap;
  }
}
.cid-uk0dcZX14V .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uk0dcZX14V .dropdown-menu,
.cid-uk0dcZX14V .navbar.opened {
  background: #000000 !important;
}
.cid-uk0dcZX14V .nav-item:focus,
.cid-uk0dcZX14V .nav-link:focus {
  outline: none;
}
.cid-uk0dcZX14V .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uk0dcZX14V .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uk0dcZX14V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uk0dcZX14V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uk0dcZX14V .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uk0dcZX14V .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uk0dcZX14V .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-uk0dcZX14V .navbar.opened {
  transition: all 0.3s;
}
.cid-uk0dcZX14V .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uk0dcZX14V .navbar .navbar-logo img {
  width: auto;
}
.cid-uk0dcZX14V .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uk0dcZX14V .navbar.collapsed {
  justify-content: center;
}
.cid-uk0dcZX14V .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uk0dcZX14V .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uk0dcZX14V .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uk0dcZX14V .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uk0dcZX14V .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uk0dcZX14V .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-uk0dcZX14V .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uk0dcZX14V .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uk0dcZX14V .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uk0dcZX14V .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uk0dcZX14V .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uk0dcZX14V .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uk0dcZX14V .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uk0dcZX14V .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-uk0dcZX14V .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uk0dcZX14V .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uk0dcZX14V .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uk0dcZX14V .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uk0dcZX14V .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uk0dcZX14V .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uk0dcZX14V .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uk0dcZX14V .navbar.navbar-short {
  min-height: 60px;
}
.cid-uk0dcZX14V .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uk0dcZX14V .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uk0dcZX14V .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-uk0dcZX14V .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uk0dcZX14V .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uk0dcZX14V .dropdown-item.active,
.cid-uk0dcZX14V .dropdown-item:active {
  background-color: transparent;
}
.cid-uk0dcZX14V .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uk0dcZX14V .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uk0dcZX14V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uk0dcZX14V .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uk0dcZX14V .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uk0dcZX14V .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uk0dcZX14V ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uk0dcZX14V .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uk0dcZX14V button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uk0dcZX14V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uk0dcZX14V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uk0dcZX14V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uk0dcZX14V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uk0dcZX14V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uk0dcZX14V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uk0dcZX14V nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uk0dcZX14V nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uk0dcZX14V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uk0dcZX14V .navbar-dropdown {
  position: fixed;
}
.cid-uk0dcZX14V a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uk0dcZX14V .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-uk0dcZX14V .navbar {
    height: 70px;
  }
  .cid-uk0dcZX14V .navbar.opened {
    height: auto;
  }
  .cid-uk0dcZX14V .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uk0dcXQ3WH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uk0dcXQ3WH .mbr-section-title {
  color: #0d0c22;
}
.cid-uk0dcXQ3WH .mbr-text,
.cid-uk0dcXQ3WH .mbr-section-btn {
  color: #727272;
}
.cid-uk0dcXQ3WH .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uk0dcXQ3WH img {
  border-radius: 2rem;
}
.cid-uk0dcYimu2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uk0dcYimu2 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uk0dcYimu2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk0dcYimu2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk0dcZiTXb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uk0dcZiTXb::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uk0dcZiTXb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk0dcZiTXb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk0dcZiTXb .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uk0dcZiTXb .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uk0dcZiTXb .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uk0dcZiTXb .container {
    padding: 0 22px;
  }
}
.cid-uk0dcZiTXb .row {
  position: relative;
  z-index: 1;
}
.cid-uk0dcZiTXb .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uk0dcZiTXb .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uk0dcZiTXb .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uk0dcZiTXb .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uk0dcZiTXb .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk0dcZiTXb .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uk0dcZiTXb .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uk0dcZiTXb .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uk0dcZiTXb .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uk0dcZiTXb .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uk0dcZiTXb .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uk0dcZiTXb .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uk0dcZiTXb .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uk0dcZiTXb .nav-wrapper .list .item-wrap:hover,
.cid-uk0dcZiTXb .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uk0dcZiTXb .nav-wrapper .list .item-wrap:hover::before,
.cid-uk0dcZiTXb .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uk0dcZiTXb .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-uk0dcZiTXb .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk0dcZiTXb .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uk0dcZiTXb .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uk0dcZiTXb .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uk0dcZiTXb .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uk0dcZiTXb .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uk0dcZiTXb .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uk0dcZiTXb .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uk0dcZiTXb .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uk0dcZiTXb .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uk0dcZiTXb .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uk0dcZiTXb .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-uk0dcZiTXb .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk0dcZiTXb .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uk0dcZiTXb .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uk0dcZiTXb .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uk0dcZiTXb .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uk0dcZiTXb .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uk0dcZiTXb .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uk0dcZiTXb .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uk0dcZiTXb .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uk0dcZiTXb .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uk0dcZiTXb .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uk0dcZiTXb .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uk0dcZiTXb .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uk0dcZiTXb .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uk0dcZiTXb .mbr-section-title {
  color: #ffffff;
}
.cid-uk0dcZiTXb .mbr-text {
  color: #ffffff;
}
.cid-uk0dcZiTXb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uk0dcZiTXb .list {
  color: #ffffff;
}
.cid-uk0dcZiTXb .mbr-contact {
  color: #ffffff;
}
.cid-uk0dcZiTXb .mbr-desc {
  color: #ffffff;
}
.cid-uk0dcZiTXb .mbr-contact,
.cid-uk0dcZiTXb .item-contact {
  color: #ffffff;
}
.cid-uk0o2FaiV4.popup-builder {
  background-color: #ffffff;
}
.cid-uk0o2FaiV4.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uk0o2FaiV4.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uk0o2FaiV4 .modal-content,
.cid-uk0o2FaiV4 .modal-dialog {
  height: auto;
}
.cid-uk0o2FaiV4 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uk0o2FaiV4 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uk0o2FaiV4 .form-wrapper .mbr-form .form-group,
  .cid-uk0o2FaiV4 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uk0o2FaiV4 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uk0o2FaiV4 .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-uk0o2FaiV4 .mbr-text {
  text-align: center;
}
.cid-uk0o2FaiV4 .pt-0 {
  padding-top: 0 !important;
}
.cid-uk0o2FaiV4 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uk0o2FaiV4 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uk0o2FaiV4 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uk0o2FaiV4 .modal-open {
  overflow: hidden;
}
.cid-uk0o2FaiV4 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uk0o2FaiV4 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uk0o2FaiV4 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uk0o2FaiV4 .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-uk0o2FaiV4 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uk0o2FaiV4 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uk0o2FaiV4 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uk0o2FaiV4 .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-uk0o2FaiV4 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uk0o2FaiV4 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uk0o2FaiV4 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uk0o2FaiV4 .modal-backdrop.show {
  opacity: .5;
}
.cid-uk0o2FaiV4 .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-uk0o2FaiV4 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uk0o2FaiV4 .modal-header {
    padding: 1rem;
  }
}
.cid-uk0o2FaiV4 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uk0o2FaiV4 .modal-header .close svg {
  fill: #353535;
}
.cid-uk0o2FaiV4 .modal-header .close:hover {
  opacity: 1;
}
.cid-uk0o2FaiV4 .modal-header .close:focus {
  outline: none;
}
.cid-uk0o2FaiV4 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uk0o2FaiV4 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uk0o2FaiV4 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uk0o2FaiV4 .modal-body {
    padding: 1rem;
  }
}
.cid-uk0o2FaiV4 .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-uk0o2FaiV4 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uk0o2FaiV4 .modal-footer {
    padding: 1rem;
  }
}
.cid-uk0o2FaiV4 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uk0o2FaiV4 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uk0o2FaiV4 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uk0o2FaiV4 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uk0o2FaiV4 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uk0o2FaiV4 .modal-lg,
  .cid-uk0o2FaiV4 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uk0o2FaiV4 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uk0o2FaiV4 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uk0o2FaiV4 .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-uk0o2FaiV4 .form-group {
  margin-bottom: 1rem;
}
.cid-uk0o2FaiV4 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uk0o2FaiV4 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uk0o2FaiV4 .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-uk0o2FaiV4 .mbr-section-btn {
  margin: 0;
}
.cid-uk0o2FaiV4 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uxStRYzfFN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uxStRYzfFN nav.navbar {
  position: fixed;
}
.cid-uxStRYzfFN .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-uxStRYzfFN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uxStRYzfFN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uxStRYzfFN .dropdown-item:hover,
.cid-uxStRYzfFN .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uxStRYzfFN .dropdown-item:hover span {
  color: white;
}
.cid-uxStRYzfFN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uxStRYzfFN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uxStRYzfFN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uxStRYzfFN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uxStRYzfFN .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uxStRYzfFN .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uxStRYzfFN .container {
    flex-wrap: nowrap;
  }
}
.cid-uxStRYzfFN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uxStRYzfFN .dropdown-menu,
.cid-uxStRYzfFN .navbar.opened {
  background: #000000 !important;
}
.cid-uxStRYzfFN .nav-item:focus,
.cid-uxStRYzfFN .nav-link:focus {
  outline: none;
}
.cid-uxStRYzfFN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uxStRYzfFN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uxStRYzfFN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uxStRYzfFN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uxStRYzfFN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uxStRYzfFN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uxStRYzfFN .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-uxStRYzfFN .navbar.opened {
  transition: all 0.3s;
}
.cid-uxStRYzfFN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uxStRYzfFN .navbar .navbar-logo img {
  width: auto;
}
.cid-uxStRYzfFN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uxStRYzfFN .navbar.collapsed {
  justify-content: center;
}
.cid-uxStRYzfFN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uxStRYzfFN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uxStRYzfFN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uxStRYzfFN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uxStRYzfFN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uxStRYzfFN .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-uxStRYzfFN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uxStRYzfFN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uxStRYzfFN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uxStRYzfFN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uxStRYzfFN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxStRYzfFN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxStRYzfFN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uxStRYzfFN .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-uxStRYzfFN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uxStRYzfFN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uxStRYzfFN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uxStRYzfFN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uxStRYzfFN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uxStRYzfFN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uxStRYzfFN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uxStRYzfFN .navbar.navbar-short {
  min-height: 60px;
}
.cid-uxStRYzfFN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uxStRYzfFN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uxStRYzfFN .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-uxStRYzfFN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uxStRYzfFN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uxStRYzfFN .dropdown-item.active,
.cid-uxStRYzfFN .dropdown-item:active {
  background-color: transparent;
}
.cid-uxStRYzfFN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uxStRYzfFN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxStRYzfFN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxStRYzfFN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uxStRYzfFN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uxStRYzfFN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxStRYzfFN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uxStRYzfFN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uxStRYzfFN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uxStRYzfFN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uxStRYzfFN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uxStRYzfFN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxStRYzfFN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxStRYzfFN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxStRYzfFN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxStRYzfFN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxStRYzfFN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxStRYzfFN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxStRYzfFN .navbar-dropdown {
  position: fixed;
}
.cid-uxStRYzfFN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uxStRYzfFN .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-uxStRYzfFN .navbar {
    height: 70px;
  }
  .cid-uxStRYzfFN .navbar.opened {
    height: auto;
  }
  .cid-uxStRYzfFN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxStRYUU6q {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uxStRYUU6q blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-uxStRYUU6q .quote {
  color: #e43f3f;
}
.cid-uxStRYUU6q .quote,
.cid-uxStRYUU6q blockquote {
  color: #353535;
}
.cid-uxStRZi2xP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uxStRZi2xP::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uxStRZi2xP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxStRZi2xP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxStRZi2xP .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uxStRZi2xP .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uxStRZi2xP .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uxStRZi2xP .container {
    padding: 0 22px;
  }
}
.cid-uxStRZi2xP .row {
  position: relative;
  z-index: 1;
}
.cid-uxStRZi2xP .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uxStRZi2xP .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uxStRZi2xP .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uxStRZi2xP .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uxStRZi2xP .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxStRZi2xP .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uxStRZi2xP .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uxStRZi2xP .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uxStRZi2xP .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uxStRZi2xP .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uxStRZi2xP .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uxStRZi2xP .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uxStRZi2xP .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uxStRZi2xP .nav-wrapper .list .item-wrap:hover,
.cid-uxStRZi2xP .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uxStRZi2xP .nav-wrapper .list .item-wrap:hover::before,
.cid-uxStRZi2xP .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uxStRZi2xP .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-uxStRZi2xP .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxStRZi2xP .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uxStRZi2xP .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uxStRZi2xP .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uxStRZi2xP .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uxStRZi2xP .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uxStRZi2xP .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uxStRZi2xP .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uxStRZi2xP .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uxStRZi2xP .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uxStRZi2xP .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uxStRZi2xP .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-uxStRZi2xP .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxStRZi2xP .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uxStRZi2xP .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uxStRZi2xP .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uxStRZi2xP .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uxStRZi2xP .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uxStRZi2xP .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uxStRZi2xP .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uxStRZi2xP .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uxStRZi2xP .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uxStRZi2xP .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uxStRZi2xP .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uxStRZi2xP .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxStRZi2xP .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uxStRZi2xP .mbr-section-title {
  color: #ffffff;
}
.cid-uxStRZi2xP .mbr-text {
  color: #ffffff;
}
.cid-uxStRZi2xP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxStRZi2xP .list {
  color: #ffffff;
}
.cid-uxStRZi2xP .mbr-contact {
  color: #ffffff;
}
.cid-uxStRZi2xP .mbr-desc {
  color: #ffffff;
}
.cid-uxStRZi2xP .mbr-contact,
.cid-uxStRZi2xP .item-contact {
  color: #ffffff;
}
.cid-uxSuzx1u0l {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uxSuzx1u0l nav.navbar {
  position: fixed;
}
.cid-uxSuzx1u0l .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-uxSuzx1u0l .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uxSuzx1u0l .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uxSuzx1u0l .dropdown-item:hover,
.cid-uxSuzx1u0l .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uxSuzx1u0l .dropdown-item:hover span {
  color: white;
}
.cid-uxSuzx1u0l .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uxSuzx1u0l .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uxSuzx1u0l .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uxSuzx1u0l .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uxSuzx1u0l .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uxSuzx1u0l .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uxSuzx1u0l .container {
    flex-wrap: nowrap;
  }
}
.cid-uxSuzx1u0l .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uxSuzx1u0l .dropdown-menu,
.cid-uxSuzx1u0l .navbar.opened {
  background: #000000 !important;
}
.cid-uxSuzx1u0l .nav-item:focus,
.cid-uxSuzx1u0l .nav-link:focus {
  outline: none;
}
.cid-uxSuzx1u0l .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uxSuzx1u0l .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uxSuzx1u0l .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uxSuzx1u0l .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uxSuzx1u0l .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uxSuzx1u0l .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uxSuzx1u0l .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-uxSuzx1u0l .navbar.opened {
  transition: all 0.3s;
}
.cid-uxSuzx1u0l .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uxSuzx1u0l .navbar .navbar-logo img {
  width: auto;
}
.cid-uxSuzx1u0l .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uxSuzx1u0l .navbar.collapsed {
  justify-content: center;
}
.cid-uxSuzx1u0l .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uxSuzx1u0l .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uxSuzx1u0l .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uxSuzx1u0l .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uxSuzx1u0l .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uxSuzx1u0l .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-uxSuzx1u0l .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uxSuzx1u0l .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uxSuzx1u0l .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uxSuzx1u0l .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uxSuzx1u0l .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxSuzx1u0l .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxSuzx1u0l .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uxSuzx1u0l .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-uxSuzx1u0l .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uxSuzx1u0l .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uxSuzx1u0l .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uxSuzx1u0l .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uxSuzx1u0l .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uxSuzx1u0l .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uxSuzx1u0l .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uxSuzx1u0l .navbar.navbar-short {
  min-height: 60px;
}
.cid-uxSuzx1u0l .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uxSuzx1u0l .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uxSuzx1u0l .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-uxSuzx1u0l .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uxSuzx1u0l .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uxSuzx1u0l .dropdown-item.active,
.cid-uxSuzx1u0l .dropdown-item:active {
  background-color: transparent;
}
.cid-uxSuzx1u0l .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uxSuzx1u0l .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxSuzx1u0l .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxSuzx1u0l .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uxSuzx1u0l .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uxSuzx1u0l .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxSuzx1u0l ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uxSuzx1u0l .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uxSuzx1u0l button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uxSuzx1u0l button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uxSuzx1u0l button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uxSuzx1u0l button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxSuzx1u0l button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxSuzx1u0l button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxSuzx1u0l nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxSuzx1u0l nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxSuzx1u0l nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxSuzx1u0l nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxSuzx1u0l .navbar-dropdown {
  position: fixed;
}
.cid-uxSuzx1u0l a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uxSuzx1u0l .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-uxSuzx1u0l .navbar {
    height: 70px;
  }
  .cid-uxSuzx1u0l .navbar.opened {
    height: auto;
  }
  .cid-uxSuzx1u0l .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxSuzxnDnp {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uxSuzxnDnp blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-uxSuzxnDnp .quote {
  color: #e43f3f;
}
.cid-uxSuzxnDnp .quote,
.cid-uxSuzxnDnp blockquote {
  color: #353535;
}
.cid-uxSuzxNtTj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uxSuzxNtTj::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uxSuzxNtTj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxSuzxNtTj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxSuzxNtTj .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uxSuzxNtTj .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uxSuzxNtTj .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uxSuzxNtTj .container {
    padding: 0 22px;
  }
}
.cid-uxSuzxNtTj .row {
  position: relative;
  z-index: 1;
}
.cid-uxSuzxNtTj .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uxSuzxNtTj .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uxSuzxNtTj .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uxSuzxNtTj .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uxSuzxNtTj .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSuzxNtTj .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uxSuzxNtTj .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uxSuzxNtTj .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uxSuzxNtTj .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uxSuzxNtTj .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uxSuzxNtTj .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uxSuzxNtTj .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uxSuzxNtTj .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uxSuzxNtTj .nav-wrapper .list .item-wrap:hover,
.cid-uxSuzxNtTj .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uxSuzxNtTj .nav-wrapper .list .item-wrap:hover::before,
.cid-uxSuzxNtTj .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uxSuzxNtTj .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-uxSuzxNtTj .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSuzxNtTj .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uxSuzxNtTj .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uxSuzxNtTj .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uxSuzxNtTj .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uxSuzxNtTj .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uxSuzxNtTj .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uxSuzxNtTj .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uxSuzxNtTj .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uxSuzxNtTj .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uxSuzxNtTj .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uxSuzxNtTj .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-uxSuzxNtTj .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSuzxNtTj .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uxSuzxNtTj .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uxSuzxNtTj .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uxSuzxNtTj .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uxSuzxNtTj .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uxSuzxNtTj .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uxSuzxNtTj .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uxSuzxNtTj .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uxSuzxNtTj .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uxSuzxNtTj .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uxSuzxNtTj .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uxSuzxNtTj .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxSuzxNtTj .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uxSuzxNtTj .mbr-section-title {
  color: #ffffff;
}
.cid-uxSuzxNtTj .mbr-text {
  color: #ffffff;
}
.cid-uxSuzxNtTj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxSuzxNtTj .list {
  color: #ffffff;
}
.cid-uxSuzxNtTj .mbr-contact {
  color: #ffffff;
}
.cid-uxSuzxNtTj .mbr-desc {
  color: #ffffff;
}
.cid-uxSuzxNtTj .mbr-contact,
.cid-uxSuzxNtTj .item-contact {
  color: #ffffff;
}
.cid-uox8IKfEFj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uox8IKfEFj nav.navbar {
  position: fixed;
}
.cid-uox8IKfEFj .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-uox8IKfEFj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uox8IKfEFj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uox8IKfEFj .dropdown-item:hover,
.cid-uox8IKfEFj .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uox8IKfEFj .dropdown-item:hover span {
  color: white;
}
.cid-uox8IKfEFj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uox8IKfEFj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uox8IKfEFj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uox8IKfEFj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uox8IKfEFj .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uox8IKfEFj .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uox8IKfEFj .container {
    flex-wrap: nowrap;
  }
}
.cid-uox8IKfEFj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uox8IKfEFj .dropdown-menu,
.cid-uox8IKfEFj .navbar.opened {
  background: #000000 !important;
}
.cid-uox8IKfEFj .nav-item:focus,
.cid-uox8IKfEFj .nav-link:focus {
  outline: none;
}
.cid-uox8IKfEFj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uox8IKfEFj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uox8IKfEFj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uox8IKfEFj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uox8IKfEFj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uox8IKfEFj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uox8IKfEFj .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-uox8IKfEFj .navbar.opened {
  transition: all 0.3s;
}
.cid-uox8IKfEFj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uox8IKfEFj .navbar .navbar-logo img {
  width: auto;
}
.cid-uox8IKfEFj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uox8IKfEFj .navbar.collapsed {
  justify-content: center;
}
.cid-uox8IKfEFj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uox8IKfEFj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uox8IKfEFj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uox8IKfEFj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uox8IKfEFj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uox8IKfEFj .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-uox8IKfEFj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uox8IKfEFj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uox8IKfEFj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uox8IKfEFj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uox8IKfEFj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uox8IKfEFj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uox8IKfEFj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uox8IKfEFj .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-uox8IKfEFj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uox8IKfEFj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uox8IKfEFj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uox8IKfEFj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uox8IKfEFj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uox8IKfEFj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uox8IKfEFj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uox8IKfEFj .navbar.navbar-short {
  min-height: 60px;
}
.cid-uox8IKfEFj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uox8IKfEFj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uox8IKfEFj .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-uox8IKfEFj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uox8IKfEFj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uox8IKfEFj .dropdown-item.active,
.cid-uox8IKfEFj .dropdown-item:active {
  background-color: transparent;
}
.cid-uox8IKfEFj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uox8IKfEFj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uox8IKfEFj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uox8IKfEFj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uox8IKfEFj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uox8IKfEFj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uox8IKfEFj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uox8IKfEFj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uox8IKfEFj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uox8IKfEFj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uox8IKfEFj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uox8IKfEFj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uox8IKfEFj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uox8IKfEFj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uox8IKfEFj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uox8IKfEFj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uox8IKfEFj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uox8IKfEFj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uox8IKfEFj .navbar-dropdown {
  position: fixed;
}
.cid-uox8IKfEFj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uox8IKfEFj .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-uox8IKfEFj .navbar {
    height: 70px;
  }
  .cid-uox8IKfEFj .navbar.opened {
    height: auto;
  }
  .cid-uox8IKfEFj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uox8IKAOAG {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uox8IKAOAG .mbr-section-title {
  color: #0d0c22;
}
.cid-uox8IKAOAG .mbr-text,
.cid-uox8IKAOAG .mbr-section-btn {
  color: #727272;
}
.cid-uox8IKAOAG .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uox8IKAOAG img {
  border-radius: 2rem;
}
.cid-uox8IKUVYT {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uox8IKUVYT .mbr-section-subtitle {
  color: #000000;
}
.cid-uox8IKUVYT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uox8IKUVYT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uox8ILfECw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uox8ILfECw::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uox8ILfECw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uox8ILfECw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uox8ILfECw .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uox8ILfECw .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uox8ILfECw .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uox8ILfECw .container {
    padding: 0 22px;
  }
}
.cid-uox8ILfECw .row {
  position: relative;
  z-index: 1;
}
.cid-uox8ILfECw .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uox8ILfECw .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uox8ILfECw .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uox8ILfECw .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uox8ILfECw .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uox8ILfECw .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uox8ILfECw .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uox8ILfECw .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uox8ILfECw .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uox8ILfECw .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uox8ILfECw .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uox8ILfECw .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uox8ILfECw .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uox8ILfECw .nav-wrapper .list .item-wrap:hover,
.cid-uox8ILfECw .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uox8ILfECw .nav-wrapper .list .item-wrap:hover::before,
.cid-uox8ILfECw .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uox8ILfECw .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-uox8ILfECw .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uox8ILfECw .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uox8ILfECw .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uox8ILfECw .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uox8ILfECw .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uox8ILfECw .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uox8ILfECw .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uox8ILfECw .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uox8ILfECw .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uox8ILfECw .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uox8ILfECw .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uox8ILfECw .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-uox8ILfECw .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uox8ILfECw .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uox8ILfECw .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uox8ILfECw .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uox8ILfECw .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uox8ILfECw .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uox8ILfECw .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uox8ILfECw .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uox8ILfECw .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uox8ILfECw .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uox8ILfECw .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uox8ILfECw .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uox8ILfECw .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uox8ILfECw .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uox8ILfECw .mbr-section-title {
  color: #ffffff;
}
.cid-uox8ILfECw .mbr-text {
  color: #ffffff;
}
.cid-uox8ILfECw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uox8ILfECw .list {
  color: #ffffff;
}
.cid-uox8ILfECw .mbr-contact {
  color: #ffffff;
}
.cid-uox8ILfECw .mbr-desc {
  color: #ffffff;
}
.cid-uox8ILfECw .mbr-contact,
.cid-uox8ILfECw .item-contact {
  color: #ffffff;
}
.cid-uox8ILPG9L.popup-builder {
  background-color: #ffffff;
}
.cid-uox8ILPG9L.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uox8ILPG9L.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uox8ILPG9L .modal-content,
.cid-uox8ILPG9L .modal-dialog {
  height: auto;
}
.cid-uox8ILPG9L .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uox8ILPG9L .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uox8ILPG9L .form-wrapper .mbr-form .form-group,
  .cid-uox8ILPG9L .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uox8ILPG9L .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uox8ILPG9L .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-uox8ILPG9L .mbr-text {
  text-align: center;
}
.cid-uox8ILPG9L .pt-0 {
  padding-top: 0 !important;
}
.cid-uox8ILPG9L .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uox8ILPG9L .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uox8ILPG9L .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uox8ILPG9L .modal-open {
  overflow: hidden;
}
.cid-uox8ILPG9L .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uox8ILPG9L .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uox8ILPG9L .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uox8ILPG9L .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-uox8ILPG9L .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uox8ILPG9L .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uox8ILPG9L .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uox8ILPG9L .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-uox8ILPG9L .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uox8ILPG9L .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uox8ILPG9L .modal-backdrop.fade {
  opacity: 0;
}
.cid-uox8ILPG9L .modal-backdrop.show {
  opacity: .5;
}
.cid-uox8ILPG9L .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-uox8ILPG9L .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uox8ILPG9L .modal-header {
    padding: 1rem;
  }
}
.cid-uox8ILPG9L .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uox8ILPG9L .modal-header .close svg {
  fill: #353535;
}
.cid-uox8ILPG9L .modal-header .close:hover {
  opacity: 1;
}
.cid-uox8ILPG9L .modal-header .close:focus {
  outline: none;
}
.cid-uox8ILPG9L .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uox8ILPG9L .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uox8ILPG9L .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uox8ILPG9L .modal-body {
    padding: 1rem;
  }
}
.cid-uox8ILPG9L .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-uox8ILPG9L .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uox8ILPG9L .modal-footer {
    padding: 1rem;
  }
}
.cid-uox8ILPG9L .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uox8ILPG9L .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uox8ILPG9L .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uox8ILPG9L .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uox8ILPG9L .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uox8ILPG9L .modal-lg,
  .cid-uox8ILPG9L .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uox8ILPG9L .modal-xl {
    max-width: 1140px;
  }
}
.cid-uox8ILPG9L .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uox8ILPG9L .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-uox8ILPG9L .form-group {
  margin-bottom: 1rem;
}
.cid-uox8ILPG9L .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uox8ILPG9L .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uox8ILPG9L .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-uox8ILPG9L .mbr-section-btn {
  margin: 0;
}
.cid-uox8ILPG9L .mbr-section-btn .btn {
  margin: 0;
}
.cid-uxSvmagscH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uxSvmagscH nav.navbar {
  position: fixed;
}
.cid-uxSvmagscH .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-uxSvmagscH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uxSvmagscH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uxSvmagscH .dropdown-item:hover,
.cid-uxSvmagscH .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uxSvmagscH .dropdown-item:hover span {
  color: white;
}
.cid-uxSvmagscH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uxSvmagscH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uxSvmagscH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uxSvmagscH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uxSvmagscH .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uxSvmagscH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uxSvmagscH .container {
    flex-wrap: nowrap;
  }
}
.cid-uxSvmagscH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uxSvmagscH .dropdown-menu,
.cid-uxSvmagscH .navbar.opened {
  background: #000000 !important;
}
.cid-uxSvmagscH .nav-item:focus,
.cid-uxSvmagscH .nav-link:focus {
  outline: none;
}
.cid-uxSvmagscH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uxSvmagscH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uxSvmagscH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uxSvmagscH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uxSvmagscH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uxSvmagscH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uxSvmagscH .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-uxSvmagscH .navbar.opened {
  transition: all 0.3s;
}
.cid-uxSvmagscH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uxSvmagscH .navbar .navbar-logo img {
  width: auto;
}
.cid-uxSvmagscH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uxSvmagscH .navbar.collapsed {
  justify-content: center;
}
.cid-uxSvmagscH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uxSvmagscH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uxSvmagscH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uxSvmagscH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uxSvmagscH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uxSvmagscH .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-uxSvmagscH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uxSvmagscH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uxSvmagscH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uxSvmagscH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uxSvmagscH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxSvmagscH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxSvmagscH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uxSvmagscH .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-uxSvmagscH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uxSvmagscH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uxSvmagscH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uxSvmagscH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uxSvmagscH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uxSvmagscH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uxSvmagscH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uxSvmagscH .navbar.navbar-short {
  min-height: 60px;
}
.cid-uxSvmagscH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uxSvmagscH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uxSvmagscH .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-uxSvmagscH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uxSvmagscH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uxSvmagscH .dropdown-item.active,
.cid-uxSvmagscH .dropdown-item:active {
  background-color: transparent;
}
.cid-uxSvmagscH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uxSvmagscH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxSvmagscH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxSvmagscH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uxSvmagscH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uxSvmagscH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxSvmagscH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uxSvmagscH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uxSvmagscH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uxSvmagscH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uxSvmagscH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uxSvmagscH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxSvmagscH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxSvmagscH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxSvmagscH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxSvmagscH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxSvmagscH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxSvmagscH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxSvmagscH .navbar-dropdown {
  position: fixed;
}
.cid-uxSvmagscH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uxSvmagscH .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-uxSvmagscH .navbar {
    height: 70px;
  }
  .cid-uxSvmagscH .navbar.opened {
    height: auto;
  }
  .cid-uxSvmagscH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxSvmaFW2X {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uxSvmaFW2X blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-uxSvmaFW2X .quote {
  color: #e43f3f;
}
.cid-uxSvmaFW2X .quote,
.cid-uxSvmaFW2X blockquote {
  color: #353535;
}
.cid-uxSvmb5qxV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uxSvmb5qxV::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uxSvmb5qxV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxSvmb5qxV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxSvmb5qxV .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uxSvmb5qxV .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uxSvmb5qxV .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uxSvmb5qxV .container {
    padding: 0 22px;
  }
}
.cid-uxSvmb5qxV .row {
  position: relative;
  z-index: 1;
}
.cid-uxSvmb5qxV .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uxSvmb5qxV .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uxSvmb5qxV .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uxSvmb5qxV .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uxSvmb5qxV .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSvmb5qxV .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uxSvmb5qxV .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uxSvmb5qxV .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uxSvmb5qxV .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uxSvmb5qxV .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uxSvmb5qxV .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uxSvmb5qxV .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uxSvmb5qxV .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uxSvmb5qxV .nav-wrapper .list .item-wrap:hover,
.cid-uxSvmb5qxV .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uxSvmb5qxV .nav-wrapper .list .item-wrap:hover::before,
.cid-uxSvmb5qxV .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uxSvmb5qxV .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-uxSvmb5qxV .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSvmb5qxV .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uxSvmb5qxV .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uxSvmb5qxV .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uxSvmb5qxV .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uxSvmb5qxV .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uxSvmb5qxV .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uxSvmb5qxV .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uxSvmb5qxV .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uxSvmb5qxV .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uxSvmb5qxV .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uxSvmb5qxV .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-uxSvmb5qxV .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSvmb5qxV .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uxSvmb5qxV .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uxSvmb5qxV .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uxSvmb5qxV .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uxSvmb5qxV .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uxSvmb5qxV .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uxSvmb5qxV .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uxSvmb5qxV .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uxSvmb5qxV .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uxSvmb5qxV .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uxSvmb5qxV .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uxSvmb5qxV .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxSvmb5qxV .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uxSvmb5qxV .mbr-section-title {
  color: #ffffff;
}
.cid-uxSvmb5qxV .mbr-text {
  color: #ffffff;
}
.cid-uxSvmb5qxV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxSvmb5qxV .list {
  color: #ffffff;
}
.cid-uxSvmb5qxV .mbr-contact {
  color: #ffffff;
}
.cid-uxSvmb5qxV .mbr-desc {
  color: #ffffff;
}
.cid-uxSvmb5qxV .mbr-contact,
.cid-uxSvmb5qxV .item-contact {
  color: #ffffff;
}
.cid-uk0dcZX14V {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uk0dcZX14V nav.navbar {
  position: fixed;
}
.cid-uk0dcZX14V .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-uk0dcZX14V .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uk0dcZX14V .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uk0dcZX14V .dropdown-item:hover,
.cid-uk0dcZX14V .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uk0dcZX14V .dropdown-item:hover span {
  color: white;
}
.cid-uk0dcZX14V .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uk0dcZX14V .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uk0dcZX14V .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uk0dcZX14V .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uk0dcZX14V .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uk0dcZX14V .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uk0dcZX14V .container {
    flex-wrap: nowrap;
  }
}
.cid-uk0dcZX14V .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uk0dcZX14V .dropdown-menu,
.cid-uk0dcZX14V .navbar.opened {
  background: #000000 !important;
}
.cid-uk0dcZX14V .nav-item:focus,
.cid-uk0dcZX14V .nav-link:focus {
  outline: none;
}
.cid-uk0dcZX14V .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uk0dcZX14V .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uk0dcZX14V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uk0dcZX14V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uk0dcZX14V .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uk0dcZX14V .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uk0dcZX14V .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-uk0dcZX14V .navbar.opened {
  transition: all 0.3s;
}
.cid-uk0dcZX14V .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uk0dcZX14V .navbar .navbar-logo img {
  width: auto;
}
.cid-uk0dcZX14V .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uk0dcZX14V .navbar.collapsed {
  justify-content: center;
}
.cid-uk0dcZX14V .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uk0dcZX14V .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uk0dcZX14V .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uk0dcZX14V .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uk0dcZX14V .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uk0dcZX14V .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-uk0dcZX14V .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uk0dcZX14V .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uk0dcZX14V .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uk0dcZX14V .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uk0dcZX14V .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uk0dcZX14V .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uk0dcZX14V .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uk0dcZX14V .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-uk0dcZX14V .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uk0dcZX14V .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uk0dcZX14V .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uk0dcZX14V .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uk0dcZX14V .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uk0dcZX14V .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uk0dcZX14V .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uk0dcZX14V .navbar.navbar-short {
  min-height: 60px;
}
.cid-uk0dcZX14V .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uk0dcZX14V .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uk0dcZX14V .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-uk0dcZX14V .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uk0dcZX14V .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uk0dcZX14V .dropdown-item.active,
.cid-uk0dcZX14V .dropdown-item:active {
  background-color: transparent;
}
.cid-uk0dcZX14V .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uk0dcZX14V .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uk0dcZX14V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uk0dcZX14V .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uk0dcZX14V .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uk0dcZX14V .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uk0dcZX14V ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uk0dcZX14V .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uk0dcZX14V button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uk0dcZX14V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uk0dcZX14V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uk0dcZX14V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uk0dcZX14V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uk0dcZX14V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uk0dcZX14V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uk0dcZX14V nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uk0dcZX14V nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uk0dcZX14V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uk0dcZX14V .navbar-dropdown {
  position: fixed;
}
.cid-uk0dcZX14V a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uk0dcZX14V .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-uk0dcZX14V .navbar {
    height: 70px;
  }
  .cid-uk0dcZX14V .navbar.opened {
    height: auto;
  }
  .cid-uk0dcZX14V .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uk0mFaocUK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #131313;
}
.cid-uk0mFaocUK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk0mFaocUK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uk0mFaocUK .container {
    padding: 0 30px;
  }
}
.cid-uk0mFaocUK .row .card {
  justify-content: center;
}
.cid-uk0mFaocUK .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uk0mFaocUK .title-wrapper .mbr-section-subtitle {
  opacity: .4;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uk0mFaocUK .image-wrapper {
    margin-top: 30px;
  }
}
.cid-uk0mFaocUK .image-wrapper img {
  width: 500px;
  height: 500px;
  border-radius: 100% !important;
  margin: 0 0 0 auto;
  object-fit: cover;
}
@media (max-width: 1400px) {
  .cid-uk0mFaocUK .image-wrapper img {
    width: 450px;
    height: 450px;
  }
}
@media (max-width: 1199px) {
  .cid-uk0mFaocUK .image-wrapper img {
    width: 360px;
    height: 360px;
  }
}
@media (max-width: 992px) {
  .cid-uk0mFaocUK .image-wrapper img {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .cid-uk0mFaocUK .image-wrapper img {
    width: 245px;
    height: 245px;
  }
}
.cid-uk0mFaocUK .mbr-section-title {
  color: #ffffff;
}
.cid-uk0mFaocUK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uk0mOpgMof {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uk0mOpgMof blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-uk0mOpgMof .quote {
  color: #e43f3f;
}
.cid-uk0mOpgMof .quote,
.cid-uk0mOpgMof blockquote {
  color: #353535;
}
.cid-uk0dcZiTXb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uk0dcZiTXb::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uk0dcZiTXb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk0dcZiTXb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk0dcZiTXb .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uk0dcZiTXb .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uk0dcZiTXb .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uk0dcZiTXb .container {
    padding: 0 22px;
  }
}
.cid-uk0dcZiTXb .row {
  position: relative;
  z-index: 1;
}
.cid-uk0dcZiTXb .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uk0dcZiTXb .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uk0dcZiTXb .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uk0dcZiTXb .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uk0dcZiTXb .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk0dcZiTXb .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uk0dcZiTXb .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uk0dcZiTXb .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uk0dcZiTXb .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uk0dcZiTXb .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uk0dcZiTXb .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uk0dcZiTXb .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uk0dcZiTXb .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uk0dcZiTXb .nav-wrapper .list .item-wrap:hover,
.cid-uk0dcZiTXb .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uk0dcZiTXb .nav-wrapper .list .item-wrap:hover::before,
.cid-uk0dcZiTXb .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uk0dcZiTXb .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-uk0dcZiTXb .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk0dcZiTXb .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uk0dcZiTXb .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uk0dcZiTXb .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uk0dcZiTXb .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uk0dcZiTXb .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uk0dcZiTXb .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uk0dcZiTXb .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uk0dcZiTXb .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uk0dcZiTXb .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uk0dcZiTXb .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uk0dcZiTXb .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-uk0dcZiTXb .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk0dcZiTXb .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uk0dcZiTXb .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uk0dcZiTXb .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uk0dcZiTXb .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uk0dcZiTXb .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uk0dcZiTXb .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uk0dcZiTXb .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uk0dcZiTXb .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uk0dcZiTXb .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uk0dcZiTXb .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uk0dcZiTXb .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uk0dcZiTXb .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uk0dcZiTXb .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uk0dcZiTXb .mbr-section-title {
  color: #ffffff;
}
.cid-uk0dcZiTXb .mbr-text {
  color: #ffffff;
}
.cid-uk0dcZiTXb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uk0dcZiTXb .list {
  color: #ffffff;
}
.cid-uk0dcZiTXb .mbr-contact {
  color: #ffffff;
}
.cid-uk0dcZiTXb .mbr-desc {
  color: #ffffff;
}
.cid-uk0dcZiTXb .mbr-contact,
.cid-uk0dcZiTXb .item-contact {
  color: #ffffff;
}
.cid-uk0o2Fa9Qa.popup-builder {
  background-color: #ffffff;
}
.cid-uk0o2Fa9Qa.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uk0o2Fa9Qa.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uk0o2Fa9Qa .modal-content,
.cid-uk0o2Fa9Qa .modal-dialog {
  height: auto;
}
.cid-uk0o2Fa9Qa .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uk0o2Fa9Qa .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uk0o2Fa9Qa .form-wrapper .mbr-form .form-group,
  .cid-uk0o2Fa9Qa .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uk0o2Fa9Qa .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uk0o2Fa9Qa .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-uk0o2Fa9Qa .mbr-text {
  text-align: center;
}
.cid-uk0o2Fa9Qa .pt-0 {
  padding-top: 0 !important;
}
.cid-uk0o2Fa9Qa .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uk0o2Fa9Qa .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uk0o2Fa9Qa .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uk0o2Fa9Qa .modal-open {
  overflow: hidden;
}
.cid-uk0o2Fa9Qa .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uk0o2Fa9Qa .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uk0o2Fa9Qa .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uk0o2Fa9Qa .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-uk0o2Fa9Qa .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uk0o2Fa9Qa .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uk0o2Fa9Qa .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uk0o2Fa9Qa .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-uk0o2Fa9Qa .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uk0o2Fa9Qa .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uk0o2Fa9Qa .modal-backdrop.fade {
  opacity: 0;
}
.cid-uk0o2Fa9Qa .modal-backdrop.show {
  opacity: .5;
}
.cid-uk0o2Fa9Qa .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-uk0o2Fa9Qa .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uk0o2Fa9Qa .modal-header {
    padding: 1rem;
  }
}
.cid-uk0o2Fa9Qa .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uk0o2Fa9Qa .modal-header .close svg {
  fill: #353535;
}
.cid-uk0o2Fa9Qa .modal-header .close:hover {
  opacity: 1;
}
.cid-uk0o2Fa9Qa .modal-header .close:focus {
  outline: none;
}
.cid-uk0o2Fa9Qa .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uk0o2Fa9Qa .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uk0o2Fa9Qa .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uk0o2Fa9Qa .modal-body {
    padding: 1rem;
  }
}
.cid-uk0o2Fa9Qa .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-uk0o2Fa9Qa .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uk0o2Fa9Qa .modal-footer {
    padding: 1rem;
  }
}
.cid-uk0o2Fa9Qa .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uk0o2Fa9Qa .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uk0o2Fa9Qa .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uk0o2Fa9Qa .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uk0o2Fa9Qa .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uk0o2Fa9Qa .modal-lg,
  .cid-uk0o2Fa9Qa .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uk0o2Fa9Qa .modal-xl {
    max-width: 1140px;
  }
}
.cid-uk0o2Fa9Qa .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uk0o2Fa9Qa .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-uk0o2Fa9Qa .form-group {
  margin-bottom: 1rem;
}
.cid-uk0o2Fa9Qa .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uk0o2Fa9Qa .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uk0o2Fa9Qa .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-uk0o2Fa9Qa .mbr-section-btn {
  margin: 0;
}
.cid-uk0o2Fa9Qa .mbr-section-btn .btn {
  margin: 0;
}
.cid-uxSw0h2Dka {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uxSw0h2Dka nav.navbar {
  position: fixed;
}
.cid-uxSw0h2Dka .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-uxSw0h2Dka .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uxSw0h2Dka .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uxSw0h2Dka .dropdown-item:hover,
.cid-uxSw0h2Dka .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uxSw0h2Dka .dropdown-item:hover span {
  color: white;
}
.cid-uxSw0h2Dka .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uxSw0h2Dka .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uxSw0h2Dka .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uxSw0h2Dka .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uxSw0h2Dka .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uxSw0h2Dka .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uxSw0h2Dka .container {
    flex-wrap: nowrap;
  }
}
.cid-uxSw0h2Dka .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uxSw0h2Dka .dropdown-menu,
.cid-uxSw0h2Dka .navbar.opened {
  background: #000000 !important;
}
.cid-uxSw0h2Dka .nav-item:focus,
.cid-uxSw0h2Dka .nav-link:focus {
  outline: none;
}
.cid-uxSw0h2Dka .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uxSw0h2Dka .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uxSw0h2Dka .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uxSw0h2Dka .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uxSw0h2Dka .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uxSw0h2Dka .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uxSw0h2Dka .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-uxSw0h2Dka .navbar.opened {
  transition: all 0.3s;
}
.cid-uxSw0h2Dka .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uxSw0h2Dka .navbar .navbar-logo img {
  width: auto;
}
.cid-uxSw0h2Dka .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uxSw0h2Dka .navbar.collapsed {
  justify-content: center;
}
.cid-uxSw0h2Dka .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uxSw0h2Dka .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uxSw0h2Dka .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uxSw0h2Dka .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uxSw0h2Dka .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uxSw0h2Dka .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-uxSw0h2Dka .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uxSw0h2Dka .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uxSw0h2Dka .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uxSw0h2Dka .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uxSw0h2Dka .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxSw0h2Dka .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxSw0h2Dka .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uxSw0h2Dka .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-uxSw0h2Dka .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uxSw0h2Dka .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uxSw0h2Dka .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uxSw0h2Dka .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uxSw0h2Dka .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uxSw0h2Dka .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uxSw0h2Dka .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uxSw0h2Dka .navbar.navbar-short {
  min-height: 60px;
}
.cid-uxSw0h2Dka .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uxSw0h2Dka .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uxSw0h2Dka .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-uxSw0h2Dka .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uxSw0h2Dka .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uxSw0h2Dka .dropdown-item.active,
.cid-uxSw0h2Dka .dropdown-item:active {
  background-color: transparent;
}
.cid-uxSw0h2Dka .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uxSw0h2Dka .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxSw0h2Dka .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxSw0h2Dka .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uxSw0h2Dka .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uxSw0h2Dka .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxSw0h2Dka ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uxSw0h2Dka .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uxSw0h2Dka button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uxSw0h2Dka button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uxSw0h2Dka button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uxSw0h2Dka button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxSw0h2Dka button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxSw0h2Dka button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxSw0h2Dka nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxSw0h2Dka nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxSw0h2Dka nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxSw0h2Dka nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxSw0h2Dka .navbar-dropdown {
  position: fixed;
}
.cid-uxSw0h2Dka a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uxSw0h2Dka .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-uxSw0h2Dka .navbar {
    height: 70px;
  }
  .cid-uxSw0h2Dka .navbar.opened {
    height: auto;
  }
  .cid-uxSw0h2Dka .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxSw0hnOCU {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uxSw0hnOCU blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-uxSw0hnOCU .quote {
  color: #e43f3f;
}
.cid-uxSw0hnOCU .quote,
.cid-uxSw0hnOCU blockquote {
  color: #353535;
}
.cid-uxSw0hModL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uxSw0hModL::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uxSw0hModL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxSw0hModL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxSw0hModL .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uxSw0hModL .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uxSw0hModL .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uxSw0hModL .container {
    padding: 0 22px;
  }
}
.cid-uxSw0hModL .row {
  position: relative;
  z-index: 1;
}
.cid-uxSw0hModL .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uxSw0hModL .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uxSw0hModL .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uxSw0hModL .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uxSw0hModL .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSw0hModL .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uxSw0hModL .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uxSw0hModL .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uxSw0hModL .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uxSw0hModL .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uxSw0hModL .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uxSw0hModL .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uxSw0hModL .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uxSw0hModL .nav-wrapper .list .item-wrap:hover,
.cid-uxSw0hModL .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uxSw0hModL .nav-wrapper .list .item-wrap:hover::before,
.cid-uxSw0hModL .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uxSw0hModL .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-uxSw0hModL .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSw0hModL .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uxSw0hModL .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uxSw0hModL .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uxSw0hModL .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uxSw0hModL .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uxSw0hModL .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uxSw0hModL .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uxSw0hModL .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uxSw0hModL .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uxSw0hModL .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uxSw0hModL .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-uxSw0hModL .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSw0hModL .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uxSw0hModL .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uxSw0hModL .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uxSw0hModL .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uxSw0hModL .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uxSw0hModL .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uxSw0hModL .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uxSw0hModL .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uxSw0hModL .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uxSw0hModL .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uxSw0hModL .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uxSw0hModL .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxSw0hModL .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uxSw0hModL .mbr-section-title {
  color: #ffffff;
}
.cid-uxSw0hModL .mbr-text {
  color: #ffffff;
}
.cid-uxSw0hModL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxSw0hModL .list {
  color: #ffffff;
}
.cid-uxSw0hModL .mbr-contact {
  color: #ffffff;
}
.cid-uxSw0hModL .mbr-desc {
  color: #ffffff;
}
.cid-uxSw0hModL .mbr-contact,
.cid-uxSw0hModL .item-contact {
  color: #ffffff;
}
.cid-uxSwHQc7jc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uxSwHQc7jc nav.navbar {
  position: fixed;
}
.cid-uxSwHQc7jc .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-uxSwHQc7jc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uxSwHQc7jc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uxSwHQc7jc .dropdown-item:hover,
.cid-uxSwHQc7jc .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uxSwHQc7jc .dropdown-item:hover span {
  color: white;
}
.cid-uxSwHQc7jc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uxSwHQc7jc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uxSwHQc7jc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uxSwHQc7jc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uxSwHQc7jc .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uxSwHQc7jc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uxSwHQc7jc .container {
    flex-wrap: nowrap;
  }
}
.cid-uxSwHQc7jc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uxSwHQc7jc .dropdown-menu,
.cid-uxSwHQc7jc .navbar.opened {
  background: #000000 !important;
}
.cid-uxSwHQc7jc .nav-item:focus,
.cid-uxSwHQc7jc .nav-link:focus {
  outline: none;
}
.cid-uxSwHQc7jc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uxSwHQc7jc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uxSwHQc7jc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uxSwHQc7jc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uxSwHQc7jc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uxSwHQc7jc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uxSwHQc7jc .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-uxSwHQc7jc .navbar.opened {
  transition: all 0.3s;
}
.cid-uxSwHQc7jc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uxSwHQc7jc .navbar .navbar-logo img {
  width: auto;
}
.cid-uxSwHQc7jc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uxSwHQc7jc .navbar.collapsed {
  justify-content: center;
}
.cid-uxSwHQc7jc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uxSwHQc7jc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uxSwHQc7jc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uxSwHQc7jc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uxSwHQc7jc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uxSwHQc7jc .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-uxSwHQc7jc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uxSwHQc7jc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uxSwHQc7jc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uxSwHQc7jc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uxSwHQc7jc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxSwHQc7jc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxSwHQc7jc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uxSwHQc7jc .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-uxSwHQc7jc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uxSwHQc7jc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uxSwHQc7jc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uxSwHQc7jc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uxSwHQc7jc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uxSwHQc7jc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uxSwHQc7jc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uxSwHQc7jc .navbar.navbar-short {
  min-height: 60px;
}
.cid-uxSwHQc7jc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uxSwHQc7jc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uxSwHQc7jc .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-uxSwHQc7jc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uxSwHQc7jc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uxSwHQc7jc .dropdown-item.active,
.cid-uxSwHQc7jc .dropdown-item:active {
  background-color: transparent;
}
.cid-uxSwHQc7jc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uxSwHQc7jc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxSwHQc7jc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxSwHQc7jc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uxSwHQc7jc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uxSwHQc7jc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxSwHQc7jc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uxSwHQc7jc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uxSwHQc7jc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uxSwHQc7jc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uxSwHQc7jc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uxSwHQc7jc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxSwHQc7jc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxSwHQc7jc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxSwHQc7jc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxSwHQc7jc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxSwHQc7jc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxSwHQc7jc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxSwHQc7jc .navbar-dropdown {
  position: fixed;
}
.cid-uxSwHQc7jc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uxSwHQc7jc .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-uxSwHQc7jc .navbar {
    height: 70px;
  }
  .cid-uxSwHQc7jc .navbar.opened {
    height: auto;
  }
  .cid-uxSwHQc7jc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxSwHQxMV6 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uxSwHQxMV6 blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-uxSwHQxMV6 .quote {
  color: #e43f3f;
}
.cid-uxSwHQxMV6 .quote,
.cid-uxSwHQxMV6 blockquote {
  color: #353535;
}
.cid-uxSwHQUcnP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uxSwHQUcnP::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uxSwHQUcnP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxSwHQUcnP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxSwHQUcnP .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uxSwHQUcnP .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uxSwHQUcnP .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uxSwHQUcnP .container {
    padding: 0 22px;
  }
}
.cid-uxSwHQUcnP .row {
  position: relative;
  z-index: 1;
}
.cid-uxSwHQUcnP .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uxSwHQUcnP .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uxSwHQUcnP .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uxSwHQUcnP .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uxSwHQUcnP .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSwHQUcnP .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uxSwHQUcnP .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uxSwHQUcnP .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uxSwHQUcnP .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uxSwHQUcnP .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uxSwHQUcnP .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uxSwHQUcnP .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uxSwHQUcnP .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uxSwHQUcnP .nav-wrapper .list .item-wrap:hover,
.cid-uxSwHQUcnP .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uxSwHQUcnP .nav-wrapper .list .item-wrap:hover::before,
.cid-uxSwHQUcnP .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uxSwHQUcnP .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-uxSwHQUcnP .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSwHQUcnP .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uxSwHQUcnP .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uxSwHQUcnP .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uxSwHQUcnP .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uxSwHQUcnP .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uxSwHQUcnP .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uxSwHQUcnP .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uxSwHQUcnP .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uxSwHQUcnP .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uxSwHQUcnP .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uxSwHQUcnP .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-uxSwHQUcnP .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSwHQUcnP .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uxSwHQUcnP .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uxSwHQUcnP .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uxSwHQUcnP .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uxSwHQUcnP .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uxSwHQUcnP .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uxSwHQUcnP .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uxSwHQUcnP .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uxSwHQUcnP .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uxSwHQUcnP .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uxSwHQUcnP .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uxSwHQUcnP .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxSwHQUcnP .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uxSwHQUcnP .mbr-section-title {
  color: #ffffff;
}
.cid-uxSwHQUcnP .mbr-text {
  color: #ffffff;
}
.cid-uxSwHQUcnP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxSwHQUcnP .list {
  color: #ffffff;
}
.cid-uxSwHQUcnP .mbr-contact {
  color: #ffffff;
}
.cid-uxSwHQUcnP .mbr-desc {
  color: #ffffff;
}
.cid-uxSwHQUcnP .mbr-contact,
.cid-uxSwHQUcnP .item-contact {
  color: #ffffff;
}
.cid-uk067mRRD2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uk067mRRD2 nav.navbar {
  position: fixed;
}
.cid-uk067mRRD2 .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-uk067mRRD2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uk067mRRD2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uk067mRRD2 .dropdown-item:hover,
.cid-uk067mRRD2 .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uk067mRRD2 .dropdown-item:hover span {
  color: white;
}
.cid-uk067mRRD2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uk067mRRD2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uk067mRRD2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uk067mRRD2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uk067mRRD2 .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uk067mRRD2 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uk067mRRD2 .container {
    flex-wrap: nowrap;
  }
}
.cid-uk067mRRD2 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uk067mRRD2 .dropdown-menu,
.cid-uk067mRRD2 .navbar.opened {
  background: #000000 !important;
}
.cid-uk067mRRD2 .nav-item:focus,
.cid-uk067mRRD2 .nav-link:focus {
  outline: none;
}
.cid-uk067mRRD2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uk067mRRD2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uk067mRRD2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uk067mRRD2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uk067mRRD2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uk067mRRD2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uk067mRRD2 .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-uk067mRRD2 .navbar.opened {
  transition: all 0.3s;
}
.cid-uk067mRRD2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uk067mRRD2 .navbar .navbar-logo img {
  width: auto;
}
.cid-uk067mRRD2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uk067mRRD2 .navbar.collapsed {
  justify-content: center;
}
.cid-uk067mRRD2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uk067mRRD2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uk067mRRD2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uk067mRRD2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uk067mRRD2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uk067mRRD2 .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-uk067mRRD2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uk067mRRD2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uk067mRRD2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uk067mRRD2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uk067mRRD2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uk067mRRD2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uk067mRRD2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uk067mRRD2 .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-uk067mRRD2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uk067mRRD2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uk067mRRD2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uk067mRRD2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uk067mRRD2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uk067mRRD2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uk067mRRD2 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uk067mRRD2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uk067mRRD2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uk067mRRD2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uk067mRRD2 .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-uk067mRRD2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uk067mRRD2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uk067mRRD2 .dropdown-item.active,
.cid-uk067mRRD2 .dropdown-item:active {
  background-color: transparent;
}
.cid-uk067mRRD2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uk067mRRD2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uk067mRRD2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uk067mRRD2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uk067mRRD2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uk067mRRD2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uk067mRRD2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uk067mRRD2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uk067mRRD2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uk067mRRD2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uk067mRRD2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uk067mRRD2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uk067mRRD2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uk067mRRD2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uk067mRRD2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uk067mRRD2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uk067mRRD2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uk067mRRD2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uk067mRRD2 .navbar-dropdown {
  position: fixed;
}
.cid-uk067mRRD2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uk067mRRD2 .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-uk067mRRD2 .navbar {
    height: 70px;
  }
  .cid-uk067mRRD2 .navbar.opened {
    height: auto;
  }
  .cid-uk067mRRD2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQksrcs27E {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sQksrcs27E .mbr-section-title {
  color: #0d0c22;
}
.cid-sQksrcs27E .mbr-text,
.cid-sQksrcs27E .mbr-section-btn {
  color: #727272;
}
.cid-sQksrcs27E .mbr-section-subtitle {
  color: #8364e2;
}
.cid-sQksrcs27E img {
  border-radius: 2rem;
}
#custom-html-8 {
  /* Type valid CSS here */
}
#custom-html-8 div {
  padding: 50px 0;
  color: #777;
  text-align: center;
}
#custom-html-8 p {
  font-size: 60px;
  color: #777;
}
#custom-html-1i {
  /* Type valid CSS here */
}
#custom-html-1i div {
  padding: 25px 0;
  color: #777;
  text-align: center;
}
#custom-html-1i p {
  font-size: 25px;
  color: #777;
}
#custom-html-1h {
  /* Type valid CSS here */
}
#custom-html-1h div {
  padding: 100px 0;
  color: #777;
  text-align: center;
}
#custom-html-1h p {
  font-size: 90px;
  color: #777;
}
.cid-uk06k49i9I {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uk06k49i9I::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uk06k49i9I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk06k49i9I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk06k49i9I .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uk06k49i9I .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uk06k49i9I .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uk06k49i9I .container {
    padding: 0 22px;
  }
}
.cid-uk06k49i9I .row {
  position: relative;
  z-index: 1;
}
.cid-uk06k49i9I .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uk06k49i9I .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uk06k49i9I .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uk06k49i9I .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uk06k49i9I .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk06k49i9I .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uk06k49i9I .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uk06k49i9I .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uk06k49i9I .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uk06k49i9I .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uk06k49i9I .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uk06k49i9I .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uk06k49i9I .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uk06k49i9I .nav-wrapper .list .item-wrap:hover,
.cid-uk06k49i9I .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uk06k49i9I .nav-wrapper .list .item-wrap:hover::before,
.cid-uk06k49i9I .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uk06k49i9I .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-uk06k49i9I .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk06k49i9I .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uk06k49i9I .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-uk06k49i9I .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk06k49i9I .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uk06k49i9I .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uk06k49i9I .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uk06k49i9I .mbr-section-title {
  color: #ffffff;
}
.cid-uk06k49i9I .mbr-text {
  color: #ffffff;
}
.cid-uk06k49i9I .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uk06k49i9I .list {
  color: #ffffff;
}
.cid-uk06k49i9I .mbr-contact {
  color: #ffffff;
}
.cid-uk06k49i9I .mbr-desc {
  color: #ffffff;
}
.cid-uk06k49i9I .mbr-contact,
.cid-uk06k49i9I .item-contact {
  color: #ffffff;
}
.cid-uxSxoxl8PC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uxSxoxl8PC nav.navbar {
  position: fixed;
}
.cid-uxSxoxl8PC .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-uxSxoxl8PC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uxSxoxl8PC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uxSxoxl8PC .dropdown-item:hover,
.cid-uxSxoxl8PC .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uxSxoxl8PC .dropdown-item:hover span {
  color: white;
}
.cid-uxSxoxl8PC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uxSxoxl8PC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uxSxoxl8PC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uxSxoxl8PC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uxSxoxl8PC .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uxSxoxl8PC .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uxSxoxl8PC .container {
    flex-wrap: nowrap;
  }
}
.cid-uxSxoxl8PC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uxSxoxl8PC .dropdown-menu,
.cid-uxSxoxl8PC .navbar.opened {
  background: #000000 !important;
}
.cid-uxSxoxl8PC .nav-item:focus,
.cid-uxSxoxl8PC .nav-link:focus {
  outline: none;
}
.cid-uxSxoxl8PC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uxSxoxl8PC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uxSxoxl8PC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uxSxoxl8PC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uxSxoxl8PC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uxSxoxl8PC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uxSxoxl8PC .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-uxSxoxl8PC .navbar.opened {
  transition: all 0.3s;
}
.cid-uxSxoxl8PC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uxSxoxl8PC .navbar .navbar-logo img {
  width: auto;
}
.cid-uxSxoxl8PC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uxSxoxl8PC .navbar.collapsed {
  justify-content: center;
}
.cid-uxSxoxl8PC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uxSxoxl8PC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uxSxoxl8PC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uxSxoxl8PC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uxSxoxl8PC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uxSxoxl8PC .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-uxSxoxl8PC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uxSxoxl8PC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uxSxoxl8PC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uxSxoxl8PC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uxSxoxl8PC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxSxoxl8PC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxSxoxl8PC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uxSxoxl8PC .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-uxSxoxl8PC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uxSxoxl8PC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uxSxoxl8PC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uxSxoxl8PC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uxSxoxl8PC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uxSxoxl8PC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uxSxoxl8PC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uxSxoxl8PC .navbar.navbar-short {
  min-height: 60px;
}
.cid-uxSxoxl8PC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uxSxoxl8PC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uxSxoxl8PC .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-uxSxoxl8PC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uxSxoxl8PC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uxSxoxl8PC .dropdown-item.active,
.cid-uxSxoxl8PC .dropdown-item:active {
  background-color: transparent;
}
.cid-uxSxoxl8PC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uxSxoxl8PC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxSxoxl8PC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxSxoxl8PC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uxSxoxl8PC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uxSxoxl8PC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxSxoxl8PC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uxSxoxl8PC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uxSxoxl8PC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uxSxoxl8PC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uxSxoxl8PC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uxSxoxl8PC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxSxoxl8PC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxSxoxl8PC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxSxoxl8PC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxSxoxl8PC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxSxoxl8PC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxSxoxl8PC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxSxoxl8PC .navbar-dropdown {
  position: fixed;
}
.cid-uxSxoxl8PC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uxSxoxl8PC .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-uxSxoxl8PC .navbar {
    height: 70px;
  }
  .cid-uxSxoxl8PC .navbar.opened {
    height: auto;
  }
  .cid-uxSxoxl8PC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxSxoxFOoy {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uxSxoxFOoy blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-uxSxoxFOoy .quote {
  color: #e43f3f;
}
.cid-uxSxoxFOoy .quote,
.cid-uxSxoxFOoy blockquote {
  color: #353535;
}
.cid-uxSxoy3kms {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uxSxoy3kms::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uxSxoy3kms .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxSxoy3kms .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxSxoy3kms .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uxSxoy3kms .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uxSxoy3kms .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uxSxoy3kms .container {
    padding: 0 22px;
  }
}
.cid-uxSxoy3kms .row {
  position: relative;
  z-index: 1;
}
.cid-uxSxoy3kms .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uxSxoy3kms .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uxSxoy3kms .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uxSxoy3kms .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uxSxoy3kms .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSxoy3kms .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uxSxoy3kms .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uxSxoy3kms .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uxSxoy3kms .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uxSxoy3kms .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uxSxoy3kms .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uxSxoy3kms .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uxSxoy3kms .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uxSxoy3kms .nav-wrapper .list .item-wrap:hover,
.cid-uxSxoy3kms .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uxSxoy3kms .nav-wrapper .list .item-wrap:hover::before,
.cid-uxSxoy3kms .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uxSxoy3kms .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-uxSxoy3kms .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSxoy3kms .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uxSxoy3kms .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uxSxoy3kms .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uxSxoy3kms .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uxSxoy3kms .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uxSxoy3kms .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uxSxoy3kms .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uxSxoy3kms .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uxSxoy3kms .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uxSxoy3kms .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uxSxoy3kms .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-uxSxoy3kms .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uxSxoy3kms .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uxSxoy3kms .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uxSxoy3kms .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uxSxoy3kms .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uxSxoy3kms .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uxSxoy3kms .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uxSxoy3kms .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uxSxoy3kms .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uxSxoy3kms .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uxSxoy3kms .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uxSxoy3kms .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uxSxoy3kms .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uxSxoy3kms .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uxSxoy3kms .mbr-section-title {
  color: #ffffff;
}
.cid-uxSxoy3kms .mbr-text {
  color: #ffffff;
}
.cid-uxSxoy3kms .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxSxoy3kms .list {
  color: #ffffff;
}
.cid-uxSxoy3kms .mbr-contact {
  color: #ffffff;
}
.cid-uxSxoy3kms .mbr-desc {
  color: #ffffff;
}
.cid-uxSxoy3kms .mbr-contact,
.cid-uxSxoy3kms .item-contact {
  color: #ffffff;
}
.cid-uk067mRRD2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uk067mRRD2 nav.navbar {
  position: fixed;
}
.cid-uk067mRRD2 .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-uk067mRRD2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uk067mRRD2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uk067mRRD2 .dropdown-item:hover,
.cid-uk067mRRD2 .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uk067mRRD2 .dropdown-item:hover span {
  color: white;
}
.cid-uk067mRRD2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uk067mRRD2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uk067mRRD2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uk067mRRD2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uk067mRRD2 .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uk067mRRD2 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uk067mRRD2 .container {
    flex-wrap: nowrap;
  }
}
.cid-uk067mRRD2 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uk067mRRD2 .dropdown-menu,
.cid-uk067mRRD2 .navbar.opened {
  background: #000000 !important;
}
.cid-uk067mRRD2 .nav-item:focus,
.cid-uk067mRRD2 .nav-link:focus {
  outline: none;
}
.cid-uk067mRRD2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uk067mRRD2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uk067mRRD2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uk067mRRD2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uk067mRRD2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uk067mRRD2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uk067mRRD2 .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-uk067mRRD2 .navbar.opened {
  transition: all 0.3s;
}
.cid-uk067mRRD2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uk067mRRD2 .navbar .navbar-logo img {
  width: auto;
}
.cid-uk067mRRD2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uk067mRRD2 .navbar.collapsed {
  justify-content: center;
}
.cid-uk067mRRD2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uk067mRRD2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uk067mRRD2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uk067mRRD2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uk067mRRD2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uk067mRRD2 .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-uk067mRRD2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uk067mRRD2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uk067mRRD2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uk067mRRD2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uk067mRRD2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uk067mRRD2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uk067mRRD2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uk067mRRD2 .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-uk067mRRD2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uk067mRRD2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uk067mRRD2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uk067mRRD2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uk067mRRD2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uk067mRRD2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uk067mRRD2 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uk067mRRD2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uk067mRRD2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uk067mRRD2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uk067mRRD2 .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-uk067mRRD2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uk067mRRD2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uk067mRRD2 .dropdown-item.active,
.cid-uk067mRRD2 .dropdown-item:active {
  background-color: transparent;
}
.cid-uk067mRRD2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uk067mRRD2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uk067mRRD2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uk067mRRD2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uk067mRRD2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uk067mRRD2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uk067mRRD2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uk067mRRD2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uk067mRRD2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uk067mRRD2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uk067mRRD2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uk067mRRD2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uk067mRRD2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uk067mRRD2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uk067mRRD2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uk067mRRD2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uk067mRRD2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uk067mRRD2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uk067mRRD2 .navbar-dropdown {
  position: fixed;
}
.cid-uk067mRRD2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uk067mRRD2 .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-uk067mRRD2 .navbar {
    height: 70px;
  }
  .cid-uk067mRRD2 .navbar.opened {
    height: auto;
  }
  .cid-uk067mRRD2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwyTopSXbT {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #212428;
}
.cid-uwyTopSXbT .item-img {
  position: relative;
}
.cid-uwyTopSXbT .tag {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
}
.cid-uwyTopSXbT .btn-tag {
  padding: 0.3rem 1rem;
  padding-top: 6px;
  border-radius: 6px !important;
}
.cid-uwyTopSXbT .btn-tag:hover,
.cid-uwyTopSXbT .btn-tag:focus {
  box-shadow: none;
}
.cid-uwyTopSXbT img,
.cid-uwyTopSXbT .item-img {
  width: 100%;
  margin-bottom: 1rem;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uwyTopSXbT .item:focus,
.cid-uwyTopSXbT span:focus {
  outline: none;
}
.cid-uwyTopSXbT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uwyTopSXbT .item-wrapper {
  position: relative;
  border-radius: 4px;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-uwyTopSXbT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uwyTopSXbT .mbr-section-title {
  color: #ffffff;
}
.cid-uwyTopSXbT .mbr-text,
.cid-uwyTopSXbT .mbr-section-btn {
  color: #bbbbbb;
}
.cid-uwyTopSXbT .item-title {
  color: #bbbbbb;
}
.cid-uwyTopSXbT .item-subtitle {
  color: #ffffff;
}
.cid-uwyTopSXbT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uk06k49i9I {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uk06k49i9I::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uk06k49i9I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk06k49i9I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk06k49i9I .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uk06k49i9I .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uk06k49i9I .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uk06k49i9I .container {
    padding: 0 22px;
  }
}
.cid-uk06k49i9I .row {
  position: relative;
  z-index: 1;
}
.cid-uk06k49i9I .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uk06k49i9I .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uk06k49i9I .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uk06k49i9I .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uk06k49i9I .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk06k49i9I .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uk06k49i9I .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uk06k49i9I .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uk06k49i9I .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uk06k49i9I .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uk06k49i9I .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uk06k49i9I .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uk06k49i9I .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uk06k49i9I .nav-wrapper .list .item-wrap:hover,
.cid-uk06k49i9I .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uk06k49i9I .nav-wrapper .list .item-wrap:hover::before,
.cid-uk06k49i9I .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uk06k49i9I .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-uk06k49i9I .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk06k49i9I .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uk06k49i9I .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-uk06k49i9I .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk06k49i9I .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uk06k49i9I .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uk06k49i9I .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uk06k49i9I .mbr-section-title {
  color: #ffffff;
}
.cid-uk06k49i9I .mbr-text {
  color: #ffffff;
}
.cid-uk06k49i9I .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uk06k49i9I .list {
  color: #ffffff;
}
.cid-uk06k49i9I .mbr-contact {
  color: #ffffff;
}
.cid-uk06k49i9I .mbr-desc {
  color: #ffffff;
}
.cid-uk06k49i9I .mbr-contact,
.cid-uk06k49i9I .item-contact {
  color: #ffffff;
}
.cid-uk067mRRD2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uk067mRRD2 nav.navbar {
  position: fixed;
}
.cid-uk067mRRD2 .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-uk067mRRD2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uk067mRRD2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uk067mRRD2 .dropdown-item:hover,
.cid-uk067mRRD2 .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uk067mRRD2 .dropdown-item:hover span {
  color: white;
}
.cid-uk067mRRD2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uk067mRRD2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uk067mRRD2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uk067mRRD2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uk067mRRD2 .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uk067mRRD2 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uk067mRRD2 .container {
    flex-wrap: nowrap;
  }
}
.cid-uk067mRRD2 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uk067mRRD2 .dropdown-menu,
.cid-uk067mRRD2 .navbar.opened {
  background: #000000 !important;
}
.cid-uk067mRRD2 .nav-item:focus,
.cid-uk067mRRD2 .nav-link:focus {
  outline: none;
}
.cid-uk067mRRD2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uk067mRRD2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uk067mRRD2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uk067mRRD2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uk067mRRD2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uk067mRRD2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uk067mRRD2 .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-uk067mRRD2 .navbar.opened {
  transition: all 0.3s;
}
.cid-uk067mRRD2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uk067mRRD2 .navbar .navbar-logo img {
  width: auto;
}
.cid-uk067mRRD2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uk067mRRD2 .navbar.collapsed {
  justify-content: center;
}
.cid-uk067mRRD2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uk067mRRD2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uk067mRRD2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uk067mRRD2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uk067mRRD2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uk067mRRD2 .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-uk067mRRD2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uk067mRRD2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uk067mRRD2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uk067mRRD2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uk067mRRD2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uk067mRRD2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uk067mRRD2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uk067mRRD2 .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-uk067mRRD2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uk067mRRD2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uk067mRRD2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uk067mRRD2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uk067mRRD2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uk067mRRD2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uk067mRRD2 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uk067mRRD2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uk067mRRD2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uk067mRRD2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uk067mRRD2 .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-uk067mRRD2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uk067mRRD2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uk067mRRD2 .dropdown-item.active,
.cid-uk067mRRD2 .dropdown-item:active {
  background-color: transparent;
}
.cid-uk067mRRD2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uk067mRRD2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uk067mRRD2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uk067mRRD2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uk067mRRD2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uk067mRRD2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uk067mRRD2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uk067mRRD2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uk067mRRD2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uk067mRRD2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uk067mRRD2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uk067mRRD2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uk067mRRD2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uk067mRRD2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uk067mRRD2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uk067mRRD2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uk067mRRD2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uk067mRRD2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uk067mRRD2 .navbar-dropdown {
  position: fixed;
}
.cid-uk067mRRD2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uk067mRRD2 .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-uk067mRRD2 .navbar {
    height: 70px;
  }
  .cid-uk067mRRD2 .navbar.opened {
    height: auto;
  }
  .cid-uk067mRRD2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uk05ahWXcA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uk05ahWXcA .mbr-section-title {
  color: #0d0c22;
}
.cid-uk05ahWXcA .mbr-text,
.cid-uk05ahWXcA .mbr-section-btn {
  color: #727272;
}
.cid-uk05ahWXcA .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uk05ahWXcA img {
  border-radius: 2rem;
}
.cid-uk05xJLSJc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uk05xJLSJc .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uk05xJLSJc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk05xJLSJc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk06k49i9I {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uk06k49i9I::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uk06k49i9I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk06k49i9I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk06k49i9I .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uk06k49i9I .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uk06k49i9I .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uk06k49i9I .container {
    padding: 0 22px;
  }
}
.cid-uk06k49i9I .row {
  position: relative;
  z-index: 1;
}
.cid-uk06k49i9I .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uk06k49i9I .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uk06k49i9I .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uk06k49i9I .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uk06k49i9I .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk06k49i9I .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uk06k49i9I .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uk06k49i9I .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uk06k49i9I .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uk06k49i9I .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uk06k49i9I .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uk06k49i9I .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uk06k49i9I .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uk06k49i9I .nav-wrapper .list .item-wrap:hover,
.cid-uk06k49i9I .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uk06k49i9I .nav-wrapper .list .item-wrap:hover::before,
.cid-uk06k49i9I .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uk06k49i9I .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-uk06k49i9I .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk06k49i9I .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uk06k49i9I .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uk06k49i9I .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-uk06k49i9I .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk06k49i9I .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uk06k49i9I .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uk06k49i9I .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uk06k49i9I .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uk06k49i9I .mbr-section-title {
  color: #ffffff;
}
.cid-uk06k49i9I .mbr-text {
  color: #ffffff;
}
.cid-uk06k49i9I .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uk06k49i9I .list {
  color: #ffffff;
}
.cid-uk06k49i9I .mbr-contact {
  color: #ffffff;
}
.cid-uk06k49i9I .mbr-desc {
  color: #ffffff;
}
.cid-uk06k49i9I .mbr-contact,
.cid-uk06k49i9I .item-contact {
  color: #ffffff;
}
.cid-uk07J7vl64 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uk07J7vl64 nav.navbar {
  position: fixed;
}
.cid-uk07J7vl64 .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-uk07J7vl64 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uk07J7vl64 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uk07J7vl64 .dropdown-item:hover,
.cid-uk07J7vl64 .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uk07J7vl64 .dropdown-item:hover span {
  color: white;
}
.cid-uk07J7vl64 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uk07J7vl64 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uk07J7vl64 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uk07J7vl64 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uk07J7vl64 .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uk07J7vl64 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uk07J7vl64 .container {
    flex-wrap: nowrap;
  }
}
.cid-uk07J7vl64 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uk07J7vl64 .dropdown-menu,
.cid-uk07J7vl64 .navbar.opened {
  background: #000000 !important;
}
.cid-uk07J7vl64 .nav-item:focus,
.cid-uk07J7vl64 .nav-link:focus {
  outline: none;
}
.cid-uk07J7vl64 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uk07J7vl64 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uk07J7vl64 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uk07J7vl64 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uk07J7vl64 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uk07J7vl64 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uk07J7vl64 .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-uk07J7vl64 .navbar.opened {
  transition: all 0.3s;
}
.cid-uk07J7vl64 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uk07J7vl64 .navbar .navbar-logo img {
  width: auto;
}
.cid-uk07J7vl64 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uk07J7vl64 .navbar.collapsed {
  justify-content: center;
}
.cid-uk07J7vl64 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uk07J7vl64 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uk07J7vl64 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uk07J7vl64 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uk07J7vl64 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uk07J7vl64 .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-uk07J7vl64 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uk07J7vl64 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uk07J7vl64 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uk07J7vl64 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uk07J7vl64 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uk07J7vl64 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uk07J7vl64 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uk07J7vl64 .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-uk07J7vl64 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uk07J7vl64 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uk07J7vl64 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uk07J7vl64 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uk07J7vl64 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uk07J7vl64 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uk07J7vl64 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uk07J7vl64 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uk07J7vl64 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uk07J7vl64 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uk07J7vl64 .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-uk07J7vl64 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uk07J7vl64 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uk07J7vl64 .dropdown-item.active,
.cid-uk07J7vl64 .dropdown-item:active {
  background-color: transparent;
}
.cid-uk07J7vl64 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uk07J7vl64 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uk07J7vl64 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uk07J7vl64 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uk07J7vl64 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uk07J7vl64 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uk07J7vl64 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uk07J7vl64 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uk07J7vl64 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uk07J7vl64 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uk07J7vl64 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uk07J7vl64 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uk07J7vl64 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uk07J7vl64 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uk07J7vl64 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uk07J7vl64 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uk07J7vl64 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uk07J7vl64 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uk07J7vl64 .navbar-dropdown {
  position: fixed;
}
.cid-uk07J7vl64 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uk07J7vl64 .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-uk07J7vl64 .navbar {
    height: 70px;
  }
  .cid-uk07J7vl64 .navbar.opened {
    height: auto;
  }
  .cid-uk07J7vl64 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uk07J5zM9K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uk07J5zM9K .mbr-section-title {
  color: #0d0c22;
}
.cid-uk07J5zM9K .mbr-text,
.cid-uk07J5zM9K .mbr-section-btn {
  color: #727272;
}
.cid-uk07J5zM9K .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uk07J5zM9K img {
  border-radius: 2rem;
}
.cid-uk07J6jDGE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uk07J6jDGE .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uk07J6jDGE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk07J6jDGE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk07J6SBjC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uk07J6SBjC::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uk07J6SBjC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk07J6SBjC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk07J6SBjC .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uk07J6SBjC .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uk07J6SBjC .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uk07J6SBjC .container {
    padding: 0 22px;
  }
}
.cid-uk07J6SBjC .row {
  position: relative;
  z-index: 1;
}
.cid-uk07J6SBjC .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uk07J6SBjC .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uk07J6SBjC .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uk07J6SBjC .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uk07J6SBjC .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk07J6SBjC .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uk07J6SBjC .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uk07J6SBjC .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uk07J6SBjC .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uk07J6SBjC .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uk07J6SBjC .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uk07J6SBjC .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uk07J6SBjC .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uk07J6SBjC .nav-wrapper .list .item-wrap:hover,
.cid-uk07J6SBjC .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uk07J6SBjC .nav-wrapper .list .item-wrap:hover::before,
.cid-uk07J6SBjC .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uk07J6SBjC .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-uk07J6SBjC .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk07J6SBjC .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uk07J6SBjC .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uk07J6SBjC .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uk07J6SBjC .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uk07J6SBjC .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uk07J6SBjC .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uk07J6SBjC .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uk07J6SBjC .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uk07J6SBjC .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uk07J6SBjC .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uk07J6SBjC .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-uk07J6SBjC .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk07J6SBjC .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uk07J6SBjC .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uk07J6SBjC .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uk07J6SBjC .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uk07J6SBjC .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uk07J6SBjC .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uk07J6SBjC .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uk07J6SBjC .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uk07J6SBjC .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uk07J6SBjC .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uk07J6SBjC .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uk07J6SBjC .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uk07J6SBjC .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uk07J6SBjC .mbr-section-title {
  color: #ffffff;
}
.cid-uk07J6SBjC .mbr-text {
  color: #ffffff;
}
.cid-uk07J6SBjC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uk07J6SBjC .list {
  color: #ffffff;
}
.cid-uk07J6SBjC .mbr-contact {
  color: #ffffff;
}
.cid-uk07J6SBjC .mbr-desc {
  color: #ffffff;
}
.cid-uk07J6SBjC .mbr-contact,
.cid-uk07J6SBjC .item-contact {
  color: #ffffff;
}
.cid-uk0o2F9UrS.popup-builder {
  background-color: #ffffff;
}
.cid-uk0o2F9UrS.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uk0o2F9UrS.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uk0o2F9UrS .modal-content,
.cid-uk0o2F9UrS .modal-dialog {
  height: auto;
}
.cid-uk0o2F9UrS .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uk0o2F9UrS .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uk0o2F9UrS .form-wrapper .mbr-form .form-group,
  .cid-uk0o2F9UrS .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uk0o2F9UrS .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uk0o2F9UrS .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-uk0o2F9UrS .mbr-text {
  text-align: center;
}
.cid-uk0o2F9UrS .pt-0 {
  padding-top: 0 !important;
}
.cid-uk0o2F9UrS .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uk0o2F9UrS .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uk0o2F9UrS .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uk0o2F9UrS .modal-open {
  overflow: hidden;
}
.cid-uk0o2F9UrS .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uk0o2F9UrS .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uk0o2F9UrS .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uk0o2F9UrS .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-uk0o2F9UrS .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uk0o2F9UrS .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uk0o2F9UrS .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uk0o2F9UrS .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-uk0o2F9UrS .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uk0o2F9UrS .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uk0o2F9UrS .modal-backdrop.fade {
  opacity: 0;
}
.cid-uk0o2F9UrS .modal-backdrop.show {
  opacity: .5;
}
.cid-uk0o2F9UrS .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-uk0o2F9UrS .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uk0o2F9UrS .modal-header {
    padding: 1rem;
  }
}
.cid-uk0o2F9UrS .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uk0o2F9UrS .modal-header .close svg {
  fill: #353535;
}
.cid-uk0o2F9UrS .modal-header .close:hover {
  opacity: 1;
}
.cid-uk0o2F9UrS .modal-header .close:focus {
  outline: none;
}
.cid-uk0o2F9UrS .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uk0o2F9UrS .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uk0o2F9UrS .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uk0o2F9UrS .modal-body {
    padding: 1rem;
  }
}
.cid-uk0o2F9UrS .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-uk0o2F9UrS .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uk0o2F9UrS .modal-footer {
    padding: 1rem;
  }
}
.cid-uk0o2F9UrS .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uk0o2F9UrS .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uk0o2F9UrS .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uk0o2F9UrS .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uk0o2F9UrS .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uk0o2F9UrS .modal-lg,
  .cid-uk0o2F9UrS .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uk0o2F9UrS .modal-xl {
    max-width: 1140px;
  }
}
.cid-uk0o2F9UrS .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uk0o2F9UrS .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-uk0o2F9UrS .form-group {
  margin-bottom: 1rem;
}
.cid-uk0o2F9UrS .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uk0o2F9UrS .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uk0o2F9UrS .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-uk0o2F9UrS .mbr-section-btn {
  margin: 0;
}
.cid-uk0o2F9UrS .mbr-section-btn .btn {
  margin: 0;
}
.cid-uk09TIsvMA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uk09TIsvMA nav.navbar {
  position: fixed;
}
.cid-uk09TIsvMA .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-uk09TIsvMA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uk09TIsvMA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uk09TIsvMA .dropdown-item:hover,
.cid-uk09TIsvMA .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uk09TIsvMA .dropdown-item:hover span {
  color: white;
}
.cid-uk09TIsvMA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uk09TIsvMA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uk09TIsvMA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uk09TIsvMA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uk09TIsvMA .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uk09TIsvMA .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uk09TIsvMA .container {
    flex-wrap: nowrap;
  }
}
.cid-uk09TIsvMA .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uk09TIsvMA .dropdown-menu,
.cid-uk09TIsvMA .navbar.opened {
  background: #000000 !important;
}
.cid-uk09TIsvMA .nav-item:focus,
.cid-uk09TIsvMA .nav-link:focus {
  outline: none;
}
.cid-uk09TIsvMA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uk09TIsvMA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uk09TIsvMA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uk09TIsvMA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uk09TIsvMA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uk09TIsvMA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uk09TIsvMA .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-uk09TIsvMA .navbar.opened {
  transition: all 0.3s;
}
.cid-uk09TIsvMA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uk09TIsvMA .navbar .navbar-logo img {
  width: auto;
}
.cid-uk09TIsvMA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uk09TIsvMA .navbar.collapsed {
  justify-content: center;
}
.cid-uk09TIsvMA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uk09TIsvMA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uk09TIsvMA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uk09TIsvMA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uk09TIsvMA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uk09TIsvMA .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-uk09TIsvMA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uk09TIsvMA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uk09TIsvMA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uk09TIsvMA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uk09TIsvMA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uk09TIsvMA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uk09TIsvMA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uk09TIsvMA .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-uk09TIsvMA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uk09TIsvMA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uk09TIsvMA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uk09TIsvMA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uk09TIsvMA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uk09TIsvMA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uk09TIsvMA .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uk09TIsvMA .navbar.navbar-short {
  min-height: 60px;
}
.cid-uk09TIsvMA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uk09TIsvMA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uk09TIsvMA .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-uk09TIsvMA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uk09TIsvMA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uk09TIsvMA .dropdown-item.active,
.cid-uk09TIsvMA .dropdown-item:active {
  background-color: transparent;
}
.cid-uk09TIsvMA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uk09TIsvMA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uk09TIsvMA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uk09TIsvMA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uk09TIsvMA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uk09TIsvMA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uk09TIsvMA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uk09TIsvMA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uk09TIsvMA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uk09TIsvMA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uk09TIsvMA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uk09TIsvMA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uk09TIsvMA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uk09TIsvMA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uk09TIsvMA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uk09TIsvMA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uk09TIsvMA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uk09TIsvMA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uk09TIsvMA .navbar-dropdown {
  position: fixed;
}
.cid-uk09TIsvMA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uk09TIsvMA .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-uk09TIsvMA .navbar {
    height: 70px;
  }
  .cid-uk09TIsvMA .navbar.opened {
    height: auto;
  }
  .cid-uk09TIsvMA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uk09TH0KGH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uk09TH0KGH .mbr-section-title {
  color: #0d0c22;
}
.cid-uk09TH0KGH .mbr-text,
.cid-uk09TH0KGH .mbr-section-btn {
  color: #727272;
}
.cid-uk09TH0KGH .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uk09TH0KGH img {
  border-radius: 2rem;
}
.cid-uk09THpSlR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uk09THpSlR .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uk09THpSlR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk09THpSlR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk09THTX95 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uk09THTX95::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uk09THTX95 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk09THTX95 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk09THTX95 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uk09THTX95 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uk09THTX95 .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uk09THTX95 .container {
    padding: 0 22px;
  }
}
.cid-uk09THTX95 .row {
  position: relative;
  z-index: 1;
}
.cid-uk09THTX95 .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uk09THTX95 .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uk09THTX95 .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uk09THTX95 .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uk09THTX95 .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk09THTX95 .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uk09THTX95 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uk09THTX95 .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uk09THTX95 .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uk09THTX95 .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uk09THTX95 .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uk09THTX95 .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uk09THTX95 .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uk09THTX95 .nav-wrapper .list .item-wrap:hover,
.cid-uk09THTX95 .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uk09THTX95 .nav-wrapper .list .item-wrap:hover::before,
.cid-uk09THTX95 .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uk09THTX95 .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-uk09THTX95 .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk09THTX95 .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uk09THTX95 .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uk09THTX95 .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uk09THTX95 .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uk09THTX95 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uk09THTX95 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uk09THTX95 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uk09THTX95 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uk09THTX95 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uk09THTX95 .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uk09THTX95 .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-uk09THTX95 .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk09THTX95 .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uk09THTX95 .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uk09THTX95 .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uk09THTX95 .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uk09THTX95 .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uk09THTX95 .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uk09THTX95 .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uk09THTX95 .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uk09THTX95 .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uk09THTX95 .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uk09THTX95 .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uk09THTX95 .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uk09THTX95 .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uk09THTX95 .mbr-section-title {
  color: #ffffff;
}
.cid-uk09THTX95 .mbr-text {
  color: #ffffff;
}
.cid-uk09THTX95 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uk09THTX95 .list {
  color: #ffffff;
}
.cid-uk09THTX95 .mbr-contact {
  color: #ffffff;
}
.cid-uk09THTX95 .mbr-desc {
  color: #ffffff;
}
.cid-uk09THTX95 .mbr-contact,
.cid-uk09THTX95 .item-contact {
  color: #ffffff;
}
.cid-uk0o2FaMMD.popup-builder {
  background-color: #ffffff;
}
.cid-uk0o2FaMMD.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uk0o2FaMMD.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uk0o2FaMMD .modal-content,
.cid-uk0o2FaMMD .modal-dialog {
  height: auto;
}
.cid-uk0o2FaMMD .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uk0o2FaMMD .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uk0o2FaMMD .form-wrapper .mbr-form .form-group,
  .cid-uk0o2FaMMD .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uk0o2FaMMD .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uk0o2FaMMD .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-uk0o2FaMMD .mbr-text {
  text-align: center;
}
.cid-uk0o2FaMMD .pt-0 {
  padding-top: 0 !important;
}
.cid-uk0o2FaMMD .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uk0o2FaMMD .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uk0o2FaMMD .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uk0o2FaMMD .modal-open {
  overflow: hidden;
}
.cid-uk0o2FaMMD .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uk0o2FaMMD .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uk0o2FaMMD .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uk0o2FaMMD .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-uk0o2FaMMD .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uk0o2FaMMD .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uk0o2FaMMD .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uk0o2FaMMD .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-uk0o2FaMMD .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uk0o2FaMMD .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uk0o2FaMMD .modal-backdrop.fade {
  opacity: 0;
}
.cid-uk0o2FaMMD .modal-backdrop.show {
  opacity: .5;
}
.cid-uk0o2FaMMD .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-uk0o2FaMMD .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uk0o2FaMMD .modal-header {
    padding: 1rem;
  }
}
.cid-uk0o2FaMMD .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uk0o2FaMMD .modal-header .close svg {
  fill: #353535;
}
.cid-uk0o2FaMMD .modal-header .close:hover {
  opacity: 1;
}
.cid-uk0o2FaMMD .modal-header .close:focus {
  outline: none;
}
.cid-uk0o2FaMMD .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uk0o2FaMMD .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uk0o2FaMMD .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uk0o2FaMMD .modal-body {
    padding: 1rem;
  }
}
.cid-uk0o2FaMMD .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-uk0o2FaMMD .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uk0o2FaMMD .modal-footer {
    padding: 1rem;
  }
}
.cid-uk0o2FaMMD .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uk0o2FaMMD .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uk0o2FaMMD .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uk0o2FaMMD .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uk0o2FaMMD .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uk0o2FaMMD .modal-lg,
  .cid-uk0o2FaMMD .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uk0o2FaMMD .modal-xl {
    max-width: 1140px;
  }
}
.cid-uk0o2FaMMD .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uk0o2FaMMD .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-uk0o2FaMMD .form-group {
  margin-bottom: 1rem;
}
.cid-uk0o2FaMMD .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uk0o2FaMMD .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uk0o2FaMMD .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-uk0o2FaMMD .mbr-section-btn {
  margin: 0;
}
.cid-uk0o2FaMMD .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwyM0PzUKM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uwyM0PzUKM nav.navbar {
  position: fixed;
}
.cid-uwyM0PzUKM .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-uwyM0PzUKM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwyM0PzUKM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwyM0PzUKM .dropdown-item:hover,
.cid-uwyM0PzUKM .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uwyM0PzUKM .dropdown-item:hover span {
  color: white;
}
.cid-uwyM0PzUKM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwyM0PzUKM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwyM0PzUKM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwyM0PzUKM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwyM0PzUKM .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uwyM0PzUKM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uwyM0PzUKM .container {
    flex-wrap: nowrap;
  }
}
.cid-uwyM0PzUKM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uwyM0PzUKM .dropdown-menu,
.cid-uwyM0PzUKM .navbar.opened {
  background: #000000 !important;
}
.cid-uwyM0PzUKM .nav-item:focus,
.cid-uwyM0PzUKM .nav-link:focus {
  outline: none;
}
.cid-uwyM0PzUKM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwyM0PzUKM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwyM0PzUKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwyM0PzUKM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwyM0PzUKM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwyM0PzUKM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwyM0PzUKM .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-uwyM0PzUKM .navbar.opened {
  transition: all 0.3s;
}
.cid-uwyM0PzUKM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwyM0PzUKM .navbar .navbar-logo img {
  width: auto;
}
.cid-uwyM0PzUKM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwyM0PzUKM .navbar.collapsed {
  justify-content: center;
}
.cid-uwyM0PzUKM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwyM0PzUKM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uwyM0PzUKM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uwyM0PzUKM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwyM0PzUKM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwyM0PzUKM .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-uwyM0PzUKM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwyM0PzUKM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwyM0PzUKM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwyM0PzUKM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwyM0PzUKM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwyM0PzUKM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwyM0PzUKM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwyM0PzUKM .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-uwyM0PzUKM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwyM0PzUKM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwyM0PzUKM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwyM0PzUKM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwyM0PzUKM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwyM0PzUKM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwyM0PzUKM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwyM0PzUKM .navbar.navbar-short {
  min-height: 60px;
}
.cid-uwyM0PzUKM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwyM0PzUKM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uwyM0PzUKM .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-uwyM0PzUKM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwyM0PzUKM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwyM0PzUKM .dropdown-item.active,
.cid-uwyM0PzUKM .dropdown-item:active {
  background-color: transparent;
}
.cid-uwyM0PzUKM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwyM0PzUKM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwyM0PzUKM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwyM0PzUKM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uwyM0PzUKM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwyM0PzUKM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwyM0PzUKM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwyM0PzUKM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uwyM0PzUKM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uwyM0PzUKM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uwyM0PzUKM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uwyM0PzUKM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwyM0PzUKM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwyM0PzUKM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uwyM0PzUKM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwyM0PzUKM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uwyM0PzUKM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwyM0PzUKM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwyM0PzUKM .navbar-dropdown {
  position: fixed;
}
.cid-uwyM0PzUKM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwyM0PzUKM .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-uwyM0PzUKM .navbar {
    height: 70px;
  }
  .cid-uwyM0PzUKM .navbar.opened {
    height: auto;
  }
  .cid-uwyM0PzUKM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwyM0Qi8n9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwyM0Qi8n9 .mbr-section-title {
  color: #0d0c22;
}
.cid-uwyM0Qi8n9 .mbr-text,
.cid-uwyM0Qi8n9 .mbr-section-btn {
  color: #727272;
}
.cid-uwyM0Qi8n9 .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uwyM0Qi8n9 img {
  border-radius: 2rem;
}
.cid-uwyM0QIl67 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwyM0QIl67 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uwyM0QIl67 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwyM0QIl67 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwyM0R596F {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uwyM0R596F::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uwyM0R596F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwyM0R596F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwyM0R596F .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uwyM0R596F .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uwyM0R596F .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uwyM0R596F .container {
    padding: 0 22px;
  }
}
.cid-uwyM0R596F .row {
  position: relative;
  z-index: 1;
}
.cid-uwyM0R596F .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uwyM0R596F .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uwyM0R596F .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uwyM0R596F .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uwyM0R596F .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyM0R596F .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uwyM0R596F .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uwyM0R596F .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uwyM0R596F .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uwyM0R596F .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uwyM0R596F .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uwyM0R596F .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uwyM0R596F .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uwyM0R596F .nav-wrapper .list .item-wrap:hover,
.cid-uwyM0R596F .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uwyM0R596F .nav-wrapper .list .item-wrap:hover::before,
.cid-uwyM0R596F .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uwyM0R596F .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-uwyM0R596F .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyM0R596F .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uwyM0R596F .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uwyM0R596F .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uwyM0R596F .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uwyM0R596F .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uwyM0R596F .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uwyM0R596F .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uwyM0R596F .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uwyM0R596F .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uwyM0R596F .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uwyM0R596F .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-uwyM0R596F .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyM0R596F .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uwyM0R596F .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uwyM0R596F .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uwyM0R596F .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uwyM0R596F .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uwyM0R596F .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uwyM0R596F .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uwyM0R596F .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uwyM0R596F .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uwyM0R596F .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uwyM0R596F .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uwyM0R596F .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uwyM0R596F .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uwyM0R596F .mbr-section-title {
  color: #ffffff;
}
.cid-uwyM0R596F .mbr-text {
  color: #ffffff;
}
.cid-uwyM0R596F .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uwyM0R596F .list {
  color: #ffffff;
}
.cid-uwyM0R596F .mbr-contact {
  color: #ffffff;
}
.cid-uwyM0R596F .mbr-desc {
  color: #ffffff;
}
.cid-uwyM0R596F .mbr-contact,
.cid-uwyM0R596F .item-contact {
  color: #ffffff;
}
.cid-uwyM0RHwA6.popup-builder {
  background-color: #ffffff;
}
.cid-uwyM0RHwA6.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwyM0RHwA6.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwyM0RHwA6 .modal-content,
.cid-uwyM0RHwA6 .modal-dialog {
  height: auto;
}
.cid-uwyM0RHwA6 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwyM0RHwA6 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwyM0RHwA6 .form-wrapper .mbr-form .form-group,
  .cid-uwyM0RHwA6 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwyM0RHwA6 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwyM0RHwA6 .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-uwyM0RHwA6 .mbr-text {
  text-align: center;
}
.cid-uwyM0RHwA6 .pt-0 {
  padding-top: 0 !important;
}
.cid-uwyM0RHwA6 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwyM0RHwA6 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwyM0RHwA6 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwyM0RHwA6 .modal-open {
  overflow: hidden;
}
.cid-uwyM0RHwA6 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwyM0RHwA6 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwyM0RHwA6 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwyM0RHwA6 .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-uwyM0RHwA6 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwyM0RHwA6 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwyM0RHwA6 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwyM0RHwA6 .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-uwyM0RHwA6 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwyM0RHwA6 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwyM0RHwA6 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwyM0RHwA6 .modal-backdrop.show {
  opacity: .5;
}
.cid-uwyM0RHwA6 .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-uwyM0RHwA6 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyM0RHwA6 .modal-header {
    padding: 1rem;
  }
}
.cid-uwyM0RHwA6 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwyM0RHwA6 .modal-header .close svg {
  fill: #353535;
}
.cid-uwyM0RHwA6 .modal-header .close:hover {
  opacity: 1;
}
.cid-uwyM0RHwA6 .modal-header .close:focus {
  outline: none;
}
.cid-uwyM0RHwA6 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uwyM0RHwA6 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwyM0RHwA6 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyM0RHwA6 .modal-body {
    padding: 1rem;
  }
}
.cid-uwyM0RHwA6 .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-uwyM0RHwA6 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyM0RHwA6 .modal-footer {
    padding: 1rem;
  }
}
.cid-uwyM0RHwA6 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwyM0RHwA6 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwyM0RHwA6 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwyM0RHwA6 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwyM0RHwA6 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwyM0RHwA6 .modal-lg,
  .cid-uwyM0RHwA6 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwyM0RHwA6 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwyM0RHwA6 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwyM0RHwA6 .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-uwyM0RHwA6 .form-group {
  margin-bottom: 1rem;
}
.cid-uwyM0RHwA6 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwyM0RHwA6 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwyM0RHwA6 .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-uwyM0RHwA6 .mbr-section-btn {
  margin: 0;
}
.cid-uwyM0RHwA6 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwyOmrHA3D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uwyOmrHA3D nav.navbar {
  position: fixed;
}
.cid-uwyOmrHA3D .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-uwyOmrHA3D .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwyOmrHA3D .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwyOmrHA3D .dropdown-item:hover,
.cid-uwyOmrHA3D .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uwyOmrHA3D .dropdown-item:hover span {
  color: white;
}
.cid-uwyOmrHA3D .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwyOmrHA3D .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwyOmrHA3D .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwyOmrHA3D .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwyOmrHA3D .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uwyOmrHA3D .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uwyOmrHA3D .container {
    flex-wrap: nowrap;
  }
}
.cid-uwyOmrHA3D .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uwyOmrHA3D .dropdown-menu,
.cid-uwyOmrHA3D .navbar.opened {
  background: #000000 !important;
}
.cid-uwyOmrHA3D .nav-item:focus,
.cid-uwyOmrHA3D .nav-link:focus {
  outline: none;
}
.cid-uwyOmrHA3D .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwyOmrHA3D .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwyOmrHA3D .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwyOmrHA3D .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwyOmrHA3D .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwyOmrHA3D .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwyOmrHA3D .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-uwyOmrHA3D .navbar.opened {
  transition: all 0.3s;
}
.cid-uwyOmrHA3D .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwyOmrHA3D .navbar .navbar-logo img {
  width: auto;
}
.cid-uwyOmrHA3D .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwyOmrHA3D .navbar.collapsed {
  justify-content: center;
}
.cid-uwyOmrHA3D .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwyOmrHA3D .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uwyOmrHA3D .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uwyOmrHA3D .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwyOmrHA3D .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwyOmrHA3D .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-uwyOmrHA3D .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwyOmrHA3D .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwyOmrHA3D .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwyOmrHA3D .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwyOmrHA3D .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwyOmrHA3D .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwyOmrHA3D .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwyOmrHA3D .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-uwyOmrHA3D .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwyOmrHA3D .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwyOmrHA3D .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwyOmrHA3D .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwyOmrHA3D .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwyOmrHA3D .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwyOmrHA3D .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwyOmrHA3D .navbar.navbar-short {
  min-height: 60px;
}
.cid-uwyOmrHA3D .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwyOmrHA3D .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uwyOmrHA3D .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-uwyOmrHA3D .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwyOmrHA3D .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwyOmrHA3D .dropdown-item.active,
.cid-uwyOmrHA3D .dropdown-item:active {
  background-color: transparent;
}
.cid-uwyOmrHA3D .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwyOmrHA3D .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwyOmrHA3D .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwyOmrHA3D .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uwyOmrHA3D .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwyOmrHA3D .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwyOmrHA3D ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwyOmrHA3D .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uwyOmrHA3D button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uwyOmrHA3D button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uwyOmrHA3D button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uwyOmrHA3D button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwyOmrHA3D button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwyOmrHA3D button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uwyOmrHA3D nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwyOmrHA3D nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uwyOmrHA3D nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwyOmrHA3D nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwyOmrHA3D .navbar-dropdown {
  position: fixed;
}
.cid-uwyOmrHA3D a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwyOmrHA3D .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-uwyOmrHA3D .navbar {
    height: 70px;
  }
  .cid-uwyOmrHA3D .navbar.opened {
    height: auto;
  }
  .cid-uwyOmrHA3D .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwyOms4uQA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwyOms4uQA .mbr-section-title {
  color: #0d0c22;
}
.cid-uwyOms4uQA .mbr-text,
.cid-uwyOms4uQA .mbr-section-btn {
  color: #727272;
}
.cid-uwyOms4uQA .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uwyOms4uQA img {
  border-radius: 2rem;
}
.cid-uwyOmsv1m7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwyOmsv1m7 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uwyOmsv1m7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwyOmsv1m7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwyOmsU2Kp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uwyOmsU2Kp::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uwyOmsU2Kp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwyOmsU2Kp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwyOmsU2Kp .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uwyOmsU2Kp .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uwyOmsU2Kp .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uwyOmsU2Kp .container {
    padding: 0 22px;
  }
}
.cid-uwyOmsU2Kp .row {
  position: relative;
  z-index: 1;
}
.cid-uwyOmsU2Kp .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uwyOmsU2Kp .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uwyOmsU2Kp .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uwyOmsU2Kp .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uwyOmsU2Kp .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyOmsU2Kp .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uwyOmsU2Kp .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uwyOmsU2Kp .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uwyOmsU2Kp .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uwyOmsU2Kp .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uwyOmsU2Kp .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uwyOmsU2Kp .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uwyOmsU2Kp .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uwyOmsU2Kp .nav-wrapper .list .item-wrap:hover,
.cid-uwyOmsU2Kp .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uwyOmsU2Kp .nav-wrapper .list .item-wrap:hover::before,
.cid-uwyOmsU2Kp .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uwyOmsU2Kp .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-uwyOmsU2Kp .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyOmsU2Kp .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uwyOmsU2Kp .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uwyOmsU2Kp .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uwyOmsU2Kp .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uwyOmsU2Kp .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uwyOmsU2Kp .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uwyOmsU2Kp .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uwyOmsU2Kp .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uwyOmsU2Kp .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uwyOmsU2Kp .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uwyOmsU2Kp .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-uwyOmsU2Kp .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyOmsU2Kp .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uwyOmsU2Kp .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uwyOmsU2Kp .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uwyOmsU2Kp .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uwyOmsU2Kp .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uwyOmsU2Kp .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uwyOmsU2Kp .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uwyOmsU2Kp .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uwyOmsU2Kp .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uwyOmsU2Kp .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uwyOmsU2Kp .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uwyOmsU2Kp .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uwyOmsU2Kp .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uwyOmsU2Kp .mbr-section-title {
  color: #ffffff;
}
.cid-uwyOmsU2Kp .mbr-text {
  color: #ffffff;
}
.cid-uwyOmsU2Kp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uwyOmsU2Kp .list {
  color: #ffffff;
}
.cid-uwyOmsU2Kp .mbr-contact {
  color: #ffffff;
}
.cid-uwyOmsU2Kp .mbr-desc {
  color: #ffffff;
}
.cid-uwyOmsU2Kp .mbr-contact,
.cid-uwyOmsU2Kp .item-contact {
  color: #ffffff;
}
.cid-uwyOmttq23.popup-builder {
  background-color: #ffffff;
}
.cid-uwyOmttq23.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwyOmttq23.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwyOmttq23 .modal-content,
.cid-uwyOmttq23 .modal-dialog {
  height: auto;
}
.cid-uwyOmttq23 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwyOmttq23 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwyOmttq23 .form-wrapper .mbr-form .form-group,
  .cid-uwyOmttq23 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwyOmttq23 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwyOmttq23 .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-uwyOmttq23 .mbr-text {
  text-align: center;
}
.cid-uwyOmttq23 .pt-0 {
  padding-top: 0 !important;
}
.cid-uwyOmttq23 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwyOmttq23 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwyOmttq23 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwyOmttq23 .modal-open {
  overflow: hidden;
}
.cid-uwyOmttq23 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwyOmttq23 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwyOmttq23 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwyOmttq23 .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-uwyOmttq23 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwyOmttq23 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwyOmttq23 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwyOmttq23 .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-uwyOmttq23 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwyOmttq23 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwyOmttq23 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwyOmttq23 .modal-backdrop.show {
  opacity: .5;
}
.cid-uwyOmttq23 .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-uwyOmttq23 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyOmttq23 .modal-header {
    padding: 1rem;
  }
}
.cid-uwyOmttq23 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwyOmttq23 .modal-header .close svg {
  fill: #353535;
}
.cid-uwyOmttq23 .modal-header .close:hover {
  opacity: 1;
}
.cid-uwyOmttq23 .modal-header .close:focus {
  outline: none;
}
.cid-uwyOmttq23 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uwyOmttq23 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwyOmttq23 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyOmttq23 .modal-body {
    padding: 1rem;
  }
}
.cid-uwyOmttq23 .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-uwyOmttq23 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyOmttq23 .modal-footer {
    padding: 1rem;
  }
}
.cid-uwyOmttq23 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwyOmttq23 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwyOmttq23 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwyOmttq23 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwyOmttq23 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwyOmttq23 .modal-lg,
  .cid-uwyOmttq23 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwyOmttq23 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwyOmttq23 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwyOmttq23 .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-uwyOmttq23 .form-group {
  margin-bottom: 1rem;
}
.cid-uwyOmttq23 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwyOmttq23 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwyOmttq23 .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-uwyOmttq23 .mbr-section-btn {
  margin: 0;
}
.cid-uwyOmttq23 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwyOV6cS6I {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uwyOV6cS6I nav.navbar {
  position: fixed;
}
.cid-uwyOV6cS6I .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-uwyOV6cS6I .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwyOV6cS6I .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwyOV6cS6I .dropdown-item:hover,
.cid-uwyOV6cS6I .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uwyOV6cS6I .dropdown-item:hover span {
  color: white;
}
.cid-uwyOV6cS6I .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwyOV6cS6I .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwyOV6cS6I .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwyOV6cS6I .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwyOV6cS6I .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uwyOV6cS6I .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uwyOV6cS6I .container {
    flex-wrap: nowrap;
  }
}
.cid-uwyOV6cS6I .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uwyOV6cS6I .dropdown-menu,
.cid-uwyOV6cS6I .navbar.opened {
  background: #000000 !important;
}
.cid-uwyOV6cS6I .nav-item:focus,
.cid-uwyOV6cS6I .nav-link:focus {
  outline: none;
}
.cid-uwyOV6cS6I .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwyOV6cS6I .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwyOV6cS6I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwyOV6cS6I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwyOV6cS6I .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwyOV6cS6I .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwyOV6cS6I .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-uwyOV6cS6I .navbar.opened {
  transition: all 0.3s;
}
.cid-uwyOV6cS6I .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwyOV6cS6I .navbar .navbar-logo img {
  width: auto;
}
.cid-uwyOV6cS6I .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwyOV6cS6I .navbar.collapsed {
  justify-content: center;
}
.cid-uwyOV6cS6I .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwyOV6cS6I .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uwyOV6cS6I .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uwyOV6cS6I .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwyOV6cS6I .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwyOV6cS6I .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-uwyOV6cS6I .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwyOV6cS6I .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwyOV6cS6I .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwyOV6cS6I .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwyOV6cS6I .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwyOV6cS6I .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwyOV6cS6I .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwyOV6cS6I .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-uwyOV6cS6I .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwyOV6cS6I .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwyOV6cS6I .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwyOV6cS6I .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwyOV6cS6I .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwyOV6cS6I .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwyOV6cS6I .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwyOV6cS6I .navbar.navbar-short {
  min-height: 60px;
}
.cid-uwyOV6cS6I .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwyOV6cS6I .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uwyOV6cS6I .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-uwyOV6cS6I .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwyOV6cS6I .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwyOV6cS6I .dropdown-item.active,
.cid-uwyOV6cS6I .dropdown-item:active {
  background-color: transparent;
}
.cid-uwyOV6cS6I .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwyOV6cS6I .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwyOV6cS6I .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwyOV6cS6I .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uwyOV6cS6I .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwyOV6cS6I .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwyOV6cS6I ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwyOV6cS6I .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uwyOV6cS6I button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uwyOV6cS6I button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uwyOV6cS6I button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uwyOV6cS6I button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwyOV6cS6I button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwyOV6cS6I button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uwyOV6cS6I nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwyOV6cS6I nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uwyOV6cS6I nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwyOV6cS6I nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwyOV6cS6I .navbar-dropdown {
  position: fixed;
}
.cid-uwyOV6cS6I a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwyOV6cS6I .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-uwyOV6cS6I .navbar {
    height: 70px;
  }
  .cid-uwyOV6cS6I .navbar.opened {
    height: auto;
  }
  .cid-uwyOV6cS6I .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwyOV6Dbtu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwyOV6Dbtu .mbr-section-title {
  color: #0d0c22;
}
.cid-uwyOV6Dbtu .mbr-text,
.cid-uwyOV6Dbtu .mbr-section-btn {
  color: #727272;
}
.cid-uwyOV6Dbtu .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uwyOV6Dbtu img {
  border-radius: 2rem;
}
.cid-uwyOV74XYa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwyOV74XYa .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uwyOV74XYa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwyOV74XYa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwyOV7vTgI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uwyOV7vTgI::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uwyOV7vTgI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwyOV7vTgI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwyOV7vTgI .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uwyOV7vTgI .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uwyOV7vTgI .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uwyOV7vTgI .container {
    padding: 0 22px;
  }
}
.cid-uwyOV7vTgI .row {
  position: relative;
  z-index: 1;
}
.cid-uwyOV7vTgI .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uwyOV7vTgI .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uwyOV7vTgI .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uwyOV7vTgI .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uwyOV7vTgI .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyOV7vTgI .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uwyOV7vTgI .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uwyOV7vTgI .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uwyOV7vTgI .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uwyOV7vTgI .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uwyOV7vTgI .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uwyOV7vTgI .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uwyOV7vTgI .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uwyOV7vTgI .nav-wrapper .list .item-wrap:hover,
.cid-uwyOV7vTgI .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uwyOV7vTgI .nav-wrapper .list .item-wrap:hover::before,
.cid-uwyOV7vTgI .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uwyOV7vTgI .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-uwyOV7vTgI .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyOV7vTgI .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uwyOV7vTgI .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uwyOV7vTgI .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uwyOV7vTgI .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uwyOV7vTgI .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uwyOV7vTgI .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uwyOV7vTgI .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uwyOV7vTgI .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uwyOV7vTgI .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uwyOV7vTgI .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uwyOV7vTgI .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-uwyOV7vTgI .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyOV7vTgI .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uwyOV7vTgI .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uwyOV7vTgI .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uwyOV7vTgI .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uwyOV7vTgI .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uwyOV7vTgI .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uwyOV7vTgI .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uwyOV7vTgI .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uwyOV7vTgI .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uwyOV7vTgI .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uwyOV7vTgI .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uwyOV7vTgI .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uwyOV7vTgI .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uwyOV7vTgI .mbr-section-title {
  color: #ffffff;
}
.cid-uwyOV7vTgI .mbr-text {
  color: #ffffff;
}
.cid-uwyOV7vTgI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uwyOV7vTgI .list {
  color: #ffffff;
}
.cid-uwyOV7vTgI .mbr-contact {
  color: #ffffff;
}
.cid-uwyOV7vTgI .mbr-desc {
  color: #ffffff;
}
.cid-uwyOV7vTgI .mbr-contact,
.cid-uwyOV7vTgI .item-contact {
  color: #ffffff;
}
.cid-uwyOV83cfl.popup-builder {
  background-color: #ffffff;
}
.cid-uwyOV83cfl.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwyOV83cfl.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwyOV83cfl .modal-content,
.cid-uwyOV83cfl .modal-dialog {
  height: auto;
}
.cid-uwyOV83cfl .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwyOV83cfl .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwyOV83cfl .form-wrapper .mbr-form .form-group,
  .cid-uwyOV83cfl .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwyOV83cfl .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwyOV83cfl .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-uwyOV83cfl .mbr-text {
  text-align: center;
}
.cid-uwyOV83cfl .pt-0 {
  padding-top: 0 !important;
}
.cid-uwyOV83cfl .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwyOV83cfl .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwyOV83cfl .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwyOV83cfl .modal-open {
  overflow: hidden;
}
.cid-uwyOV83cfl .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwyOV83cfl .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwyOV83cfl .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwyOV83cfl .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-uwyOV83cfl .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwyOV83cfl .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwyOV83cfl .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwyOV83cfl .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-uwyOV83cfl .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwyOV83cfl .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwyOV83cfl .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwyOV83cfl .modal-backdrop.show {
  opacity: .5;
}
.cid-uwyOV83cfl .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-uwyOV83cfl .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyOV83cfl .modal-header {
    padding: 1rem;
  }
}
.cid-uwyOV83cfl .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwyOV83cfl .modal-header .close svg {
  fill: #353535;
}
.cid-uwyOV83cfl .modal-header .close:hover {
  opacity: 1;
}
.cid-uwyOV83cfl .modal-header .close:focus {
  outline: none;
}
.cid-uwyOV83cfl .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uwyOV83cfl .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwyOV83cfl .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyOV83cfl .modal-body {
    padding: 1rem;
  }
}
.cid-uwyOV83cfl .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-uwyOV83cfl .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyOV83cfl .modal-footer {
    padding: 1rem;
  }
}
.cid-uwyOV83cfl .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwyOV83cfl .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwyOV83cfl .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwyOV83cfl .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwyOV83cfl .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwyOV83cfl .modal-lg,
  .cid-uwyOV83cfl .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwyOV83cfl .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwyOV83cfl .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwyOV83cfl .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-uwyOV83cfl .form-group {
  margin-bottom: 1rem;
}
.cid-uwyOV83cfl .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwyOV83cfl .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwyOV83cfl .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-uwyOV83cfl .mbr-section-btn {
  margin: 0;
}
.cid-uwyOV83cfl .mbr-section-btn .btn {
  margin: 0;
}
.cid-uwyQ3koCoD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uwyQ3koCoD nav.navbar {
  position: fixed;
}
.cid-uwyQ3koCoD .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-uwyQ3koCoD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwyQ3koCoD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwyQ3koCoD .dropdown-item:hover,
.cid-uwyQ3koCoD .dropdown-item:focus {
  background: #000000;
  color: white;
}
.cid-uwyQ3koCoD .dropdown-item:hover span {
  color: white;
}
.cid-uwyQ3koCoD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwyQ3koCoD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwyQ3koCoD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwyQ3koCoD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwyQ3koCoD .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uwyQ3koCoD .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uwyQ3koCoD .container {
    flex-wrap: nowrap;
  }
}
.cid-uwyQ3koCoD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uwyQ3koCoD .dropdown-menu,
.cid-uwyQ3koCoD .navbar.opened {
  background: #000000 !important;
}
.cid-uwyQ3koCoD .nav-item:focus,
.cid-uwyQ3koCoD .nav-link:focus {
  outline: none;
}
.cid-uwyQ3koCoD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwyQ3koCoD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwyQ3koCoD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwyQ3koCoD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwyQ3koCoD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwyQ3koCoD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwyQ3koCoD .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-uwyQ3koCoD .navbar.opened {
  transition: all 0.3s;
}
.cid-uwyQ3koCoD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwyQ3koCoD .navbar .navbar-logo img {
  width: auto;
}
.cid-uwyQ3koCoD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwyQ3koCoD .navbar.collapsed {
  justify-content: center;
}
.cid-uwyQ3koCoD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwyQ3koCoD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uwyQ3koCoD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uwyQ3koCoD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwyQ3koCoD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwyQ3koCoD .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-uwyQ3koCoD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwyQ3koCoD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwyQ3koCoD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwyQ3koCoD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwyQ3koCoD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwyQ3koCoD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwyQ3koCoD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwyQ3koCoD .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-uwyQ3koCoD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwyQ3koCoD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwyQ3koCoD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwyQ3koCoD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwyQ3koCoD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwyQ3koCoD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwyQ3koCoD .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwyQ3koCoD .navbar.navbar-short {
  min-height: 60px;
}
.cid-uwyQ3koCoD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwyQ3koCoD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uwyQ3koCoD .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-uwyQ3koCoD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwyQ3koCoD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwyQ3koCoD .dropdown-item.active,
.cid-uwyQ3koCoD .dropdown-item:active {
  background-color: transparent;
}
.cid-uwyQ3koCoD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwyQ3koCoD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwyQ3koCoD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwyQ3koCoD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uwyQ3koCoD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwyQ3koCoD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwyQ3koCoD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwyQ3koCoD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uwyQ3koCoD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uwyQ3koCoD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uwyQ3koCoD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uwyQ3koCoD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwyQ3koCoD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwyQ3koCoD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uwyQ3koCoD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwyQ3koCoD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uwyQ3koCoD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwyQ3koCoD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwyQ3koCoD .navbar-dropdown {
  position: fixed;
}
.cid-uwyQ3koCoD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwyQ3koCoD .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-uwyQ3koCoD .navbar {
    height: 70px;
  }
  .cid-uwyQ3koCoD .navbar.opened {
    height: auto;
  }
  .cid-uwyQ3koCoD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwyQ3kMjFd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwyQ3kMjFd .mbr-section-title {
  color: #0d0c22;
}
.cid-uwyQ3kMjFd .mbr-text,
.cid-uwyQ3kMjFd .mbr-section-btn {
  color: #727272;
}
.cid-uwyQ3kMjFd .mbr-section-subtitle {
  color: #8364e2;
}
.cid-uwyQ3kMjFd img {
  border-radius: 2rem;
}
.cid-uwyQ3lfiYi {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uwyQ3lfiYi .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uwyQ3lfiYi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwyQ3lfiYi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwyQ3lFjOq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uwyQ3lFjOq::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uwyQ3lFjOq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwyQ3lFjOq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwyQ3lFjOq .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uwyQ3lFjOq .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uwyQ3lFjOq .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uwyQ3lFjOq .container {
    padding: 0 22px;
  }
}
.cid-uwyQ3lFjOq .row {
  position: relative;
  z-index: 1;
}
.cid-uwyQ3lFjOq .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uwyQ3lFjOq .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uwyQ3lFjOq .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uwyQ3lFjOq .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uwyQ3lFjOq .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyQ3lFjOq .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uwyQ3lFjOq .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uwyQ3lFjOq .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uwyQ3lFjOq .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uwyQ3lFjOq .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uwyQ3lFjOq .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uwyQ3lFjOq .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uwyQ3lFjOq .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uwyQ3lFjOq .nav-wrapper .list .item-wrap:hover,
.cid-uwyQ3lFjOq .nav-wrapper .list .item-wrap:hover {
  color: #ffffff;
}
.cid-uwyQ3lFjOq .nav-wrapper .list .item-wrap:hover::before,
.cid-uwyQ3lFjOq .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uwyQ3lFjOq .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-uwyQ3lFjOq .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyQ3lFjOq .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uwyQ3lFjOq .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uwyQ3lFjOq .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uwyQ3lFjOq .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uwyQ3lFjOq .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uwyQ3lFjOq .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uwyQ3lFjOq .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #ffffff;
}
.cid-uwyQ3lFjOq .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uwyQ3lFjOq .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uwyQ3lFjOq .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uwyQ3lFjOq .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-uwyQ3lFjOq .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwyQ3lFjOq .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uwyQ3lFjOq .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uwyQ3lFjOq .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uwyQ3lFjOq .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uwyQ3lFjOq .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uwyQ3lFjOq .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uwyQ3lFjOq .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uwyQ3lFjOq .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uwyQ3lFjOq .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uwyQ3lFjOq .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uwyQ3lFjOq .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #ffffff;
}
.cid-uwyQ3lFjOq .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uwyQ3lFjOq .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uwyQ3lFjOq .mbr-section-title {
  color: #ffffff;
}
.cid-uwyQ3lFjOq .mbr-text {
  color: #ffffff;
}
.cid-uwyQ3lFjOq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uwyQ3lFjOq .list {
  color: #ffffff;
}
.cid-uwyQ3lFjOq .mbr-contact {
  color: #ffffff;
}
.cid-uwyQ3lFjOq .mbr-desc {
  color: #ffffff;
}
.cid-uwyQ3lFjOq .mbr-contact,
.cid-uwyQ3lFjOq .item-contact {
  color: #ffffff;
}
.cid-uwyQ3mhfzq.popup-builder {
  background-color: #ffffff;
}
.cid-uwyQ3mhfzq.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uwyQ3mhfzq.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uwyQ3mhfzq .modal-content,
.cid-uwyQ3mhfzq .modal-dialog {
  height: auto;
}
.cid-uwyQ3mhfzq .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uwyQ3mhfzq .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uwyQ3mhfzq .form-wrapper .mbr-form .form-group,
  .cid-uwyQ3mhfzq .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uwyQ3mhfzq .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uwyQ3mhfzq .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-uwyQ3mhfzq .mbr-text {
  text-align: center;
}
.cid-uwyQ3mhfzq .pt-0 {
  padding-top: 0 !important;
}
.cid-uwyQ3mhfzq .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uwyQ3mhfzq .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uwyQ3mhfzq .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uwyQ3mhfzq .modal-open {
  overflow: hidden;
}
.cid-uwyQ3mhfzq .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uwyQ3mhfzq .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uwyQ3mhfzq .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uwyQ3mhfzq .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-uwyQ3mhfzq .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uwyQ3mhfzq .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uwyQ3mhfzq .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uwyQ3mhfzq .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-uwyQ3mhfzq .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uwyQ3mhfzq .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uwyQ3mhfzq .modal-backdrop.fade {
  opacity: 0;
}
.cid-uwyQ3mhfzq .modal-backdrop.show {
  opacity: .5;
}
.cid-uwyQ3mhfzq .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-uwyQ3mhfzq .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyQ3mhfzq .modal-header {
    padding: 1rem;
  }
}
.cid-uwyQ3mhfzq .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uwyQ3mhfzq .modal-header .close svg {
  fill: #353535;
}
.cid-uwyQ3mhfzq .modal-header .close:hover {
  opacity: 1;
}
.cid-uwyQ3mhfzq .modal-header .close:focus {
  outline: none;
}
.cid-uwyQ3mhfzq .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uwyQ3mhfzq .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uwyQ3mhfzq .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyQ3mhfzq .modal-body {
    padding: 1rem;
  }
}
.cid-uwyQ3mhfzq .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-uwyQ3mhfzq .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwyQ3mhfzq .modal-footer {
    padding: 1rem;
  }
}
.cid-uwyQ3mhfzq .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uwyQ3mhfzq .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uwyQ3mhfzq .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uwyQ3mhfzq .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uwyQ3mhfzq .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uwyQ3mhfzq .modal-lg,
  .cid-uwyQ3mhfzq .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uwyQ3mhfzq .modal-xl {
    max-width: 1140px;
  }
}
.cid-uwyQ3mhfzq .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uwyQ3mhfzq .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-uwyQ3mhfzq .form-group {
  margin-bottom: 1rem;
}
.cid-uwyQ3mhfzq .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uwyQ3mhfzq .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uwyQ3mhfzq .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-uwyQ3mhfzq .mbr-section-btn {
  margin: 0;
}
.cid-uwyQ3mhfzq .mbr-section-btn .btn {
  margin: 0;
}
