body {
  font-family: 'Outfit', sans-serif;
}
.display-1 {
  font-family: 'Outfit', sans-serif;
  font-size: 6rem;
  line-height: 0.9;
}
.display-1 > .mbr-iconfont {
  font-size: 7.5rem;
}
.display-2 {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 5rem;
}
.display-4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.125rem;
}
.display-5 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4.8rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.2rem;
    font-size: calc( 2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 1.8rem;
  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: #ff7900 !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: #ff7900 !important;
  border-color: #ff7900 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: white !important;
  background-color: black  !important;
  border-color: black  !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #a85000 !important;
  border-color: #a85000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff7900 !important;
  border-color: #ff7900 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: white !important;
  background-color: black  !important;
  border-color: black  !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a85000 !important;
  border-color: #a85000 !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: white !important;
  background-color: black  !important;
  border-color: black  !important;
}
.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: white !important;
  background-color: black  !important;
  border-color: black  !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: white !important;
  background-color: black  !important;
  border-color: black  !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: white !important;
  background-color: black  !important;
  border-color: black  !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: white !important;
  background-color: black  !important;
  border-color: black  !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: white !important;
  background-color: black  !important;
  border-color: black  !important;
}
.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: #ff7900;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a85000 !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: #ff7900 !important;
  border-color: #ff7900 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff7900;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a85000 !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: #ff7900 !important;
  border-color: #ff7900 !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: #ff7900 !important;
}
.text-secondary {
  color: #ff7900 !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: #ff7900 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #994900 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: none;
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ff7900;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff7900;
  border-color: #ff7900;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff7900;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffe4cc;
}
.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*/
.form-control {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.125rem;
}
.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: #ff7900 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.125rem;
}
blockquote {
  border-color: #ff7900;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff7900;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ff7900;
}
.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: #ff7900;
  border-bottom-color: #ff7900;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ff7900 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff7900 !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='%23ff7900' %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-uB5QzLbmbs {
  z-index: 1000;
  width: 100%;
}
.cid-uB5QzLbmbs .show .link,
.cid-uB5QzLbmbs .show .mbr-iconfont,
.cid-uB5QzLbmbs .show .phone {
  color: #ffffff !important;
}
.cid-uB5QzLbmbs .opened .navbar-caption {
  color: #ffffff !important;
}
.cid-uB5QzLbmbs .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-uB5QzLbmbs .phone {
  padding-left: 4rem;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uB5QzLbmbs .phone {
    text-align: center;
    display: block;
    padding: 1rem 0;
  }
}
.cid-uB5QzLbmbs nav.navbar {
  position: fixed;
}
.cid-uB5QzLbmbs .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-uB5QzLbmbs .dropdown-menu {
  padding: 1rem 0;
}
.cid-uB5QzLbmbs .dropdown-item {
  color: #ffffff !important;
}
.cid-uB5QzLbmbs .dropdown-item span {
  color: #ffffff !important;
}
.cid-uB5QzLbmbs .dropdown-item:hover,
.cid-uB5QzLbmbs .dropdown-item:focus {
  color: #ff7900 !important;
}
.cid-uB5QzLbmbs .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uB5QzLbmbs .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uB5QzLbmbs .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uB5QzLbmbs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uB5QzLbmbs .nav-link {
  position: relative;
}
.cid-uB5QzLbmbs .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uB5QzLbmbs .container {
    flex-wrap: nowrap;
  }
}
.cid-uB5QzLbmbs .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uB5QzLbmbs .dropdown-menu,
.cid-uB5QzLbmbs .navbar.opened {
  background: #000000 !important;
}
.cid-uB5QzLbmbs .nav-item:focus,
.cid-uB5QzLbmbs .nav-link:focus {
  outline: none;
}
.cid-uB5QzLbmbs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uB5QzLbmbs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uB5QzLbmbs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uB5QzLbmbs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uB5QzLbmbs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uB5QzLbmbs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uB5QzLbmbs .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uB5QzLbmbs .navbar.opened {
  transition: all 0.3s;
}
.cid-uB5QzLbmbs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uB5QzLbmbs .navbar .navbar-logo img {
  width: auto;
}
.cid-uB5QzLbmbs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uB5QzLbmbs .navbar.collapsed {
  justify-content: center;
}
.cid-uB5QzLbmbs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uB5QzLbmbs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uB5QzLbmbs .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uB5QzLbmbs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uB5QzLbmbs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uB5QzLbmbs .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-uB5QzLbmbs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uB5QzLbmbs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uB5QzLbmbs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uB5QzLbmbs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uB5QzLbmbs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uB5QzLbmbs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uB5QzLbmbs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uB5QzLbmbs .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-uB5QzLbmbs .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uB5QzLbmbs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uB5QzLbmbs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uB5QzLbmbs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uB5QzLbmbs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uB5QzLbmbs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uB5QzLbmbs .navbar.navbar-short {
  min-height: 60px;
}
.cid-uB5QzLbmbs .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uB5QzLbmbs .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uB5QzLbmbs .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-uB5QzLbmbs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uB5QzLbmbs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uB5QzLbmbs .dropdown-item.active,
.cid-uB5QzLbmbs .dropdown-item:active {
  background-color: transparent;
}
.cid-uB5QzLbmbs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uB5QzLbmbs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uB5QzLbmbs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uB5QzLbmbs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uB5QzLbmbs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uB5QzLbmbs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uB5QzLbmbs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uB5QzLbmbs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uB5QzLbmbs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uB5QzLbmbs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uB5QzLbmbs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uB5QzLbmbs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uB5QzLbmbs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uB5QzLbmbs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uB5QzLbmbs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uB5QzLbmbs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uB5QzLbmbs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uB5QzLbmbs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uB5QzLbmbs .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uB5QzLbmbs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uB5QzLbmbs .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-uB5QzLbmbs .navbar {
    height: 70px;
  }
  .cid-uB5QzLbmbs .navbar.opened {
    height: auto;
  }
  .cid-uB5QzLbmbs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uB5WN4vF05 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uB5WN4vF05 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uB5WN4vF05 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uB5WN4vF05 .content-wrapper {
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uB5WN4vF05 .content-wrapper {
    display: block;
    padding: 0;
  }
}
.cid-uB5WN4vF05 .content-wrapper .title-wrapper {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uB5WN4vF05 .content-wrapper .title-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uB5WN4vF05 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uB5WN4vF05 .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uB5WN4vF05 .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uB5WN4vF05 .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
@media (max-width: 992px) {
  .cid-uB5WN4vF05 .content-wrapper .title-wrapper .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uB5WN4vF05 .content-wrapper .image-wrap {
  width: 40%;
  border: 3px solid #bbbbbb;
  box-shadow: 4px 4px 0 0 #bbbbbb;
  background-color: #ffffff;
  padding: 60px 20px;
  transform: rotate(3deg);
}
@media (max-width: 992px) {
  .cid-uB5WN4vF05 .content-wrapper .image-wrap {
    padding: 32px 16px;
    width: 100%;
    transform: rotate(0);
  }
}
.cid-uB5WN4vF05 .content-wrapper .image-wrap img {
  height: 550px;
  width: 100%;
  object-fit: cover;
}
.cid-uB5WN4vF05 .mbr-section-title {
  color: #050f0f;
}
.cid-uB5WN4vF05 .mbr-text {
  color: #050f0f;
}
.cid-uB5WN4vF05 .mbr-section-title,
.cid-uB5WN4vF05 .mbr-section-btn {
  color: #232323;
}
.cid-uB5WN4vF05 .mbr-text,
.cid-uB5WN4vF05 .text-wrapper,
.cid-uB5WN4vF05 .rating-wrapper {
  color: #232323;
}
.cid-uB67tznfRU {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ff7900;
}
.cid-uB67tznfRU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uB67tznfRU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uB67tznfRU .row {
  justify-content: space-between;
}
.cid-uB67tznfRU .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-uB67tznfRU .content-wrapper {
    padding: 0;
  }
}
.cid-uB67tznfRU .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uB67tznfRU .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uB67tznfRU .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uB67tznfRU .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uB67tznfRU .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uB67tznfRU .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-uB67tznfRU .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-uB67tznfRU .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uB67tznfRU .mbr-section-title {
  color: #000000;
}
.cid-uB67tznfRU .mbr-desc {
  color: #000000;
}
.cid-uB67tznfRU .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-uB67tznfRU .mbr-section-title,
.cid-uB67tznfRU .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uB5QzRzVNt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-uB5QzRzVNt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uB5QzRzVNt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uB5QzRzVNt .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uB5QzRzVNt .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uB5QzRzVNt .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uB5QzRzVNt .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uB5QzRzVNt .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uB5QzRzVNt .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uB5QzRzVNt .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uB5QzRzVNt .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uB5QzRzVNt .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uB5QzRzVNt .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uB5QzRzVNt .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uB5QzRzVNt .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uB5QzRzVNt .items-wrapper .card {
  padding: 0 32px;
}
.cid-uB5QzRzVNt .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uB5QzRzVNt .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uB5QzRzVNt .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uB5QzRzVNt .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uB5QzRzVNt .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uB5QzRzVNt .list-wrapper .list .item-wrap:hover,
.cid-uB5QzRzVNt .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uB5QzRzVNt .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uB5QzRzVNt .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uB5QzRzVNt .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uB5QzRzVNt .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uB5QzRzVNt .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uB5QzRzVNt .mbr-copy {
  margin-bottom: 0;
  color: #9aa0a6;
}
.cid-uB5QzRzVNt .mbr-desc {
  color: #ff7900;
}
.cid-uB5QzRzVNt .mbr-text,
.cid-uB5QzRzVNt .text-wrapper {
  color: #9aa0a6;
}
.cid-uB5QzRzVNt .list {
  color: #9aa0a6;
}
.cid-uBbyFKNCc0 {
  z-index: 1000;
  width: 100%;
}
.cid-uBbyFKNCc0 .show .link,
.cid-uBbyFKNCc0 .show .mbr-iconfont,
.cid-uBbyFKNCc0 .show .phone {
  color: #ffffff !important;
}
.cid-uBbyFKNCc0 .opened .navbar-caption {
  color: #ffffff !important;
}
.cid-uBbyFKNCc0 .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-uBbyFKNCc0 .phone {
  padding-left: 4rem;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uBbyFKNCc0 .phone {
    text-align: center;
    display: block;
    padding: 1rem 0;
  }
}
.cid-uBbyFKNCc0 nav.navbar {
  position: fixed;
}
.cid-uBbyFKNCc0 .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-uBbyFKNCc0 .dropdown-menu {
  padding: 1rem 0;
}
.cid-uBbyFKNCc0 .dropdown-item {
  color: #ffffff !important;
}
.cid-uBbyFKNCc0 .dropdown-item span {
  color: #ffffff !important;
}
.cid-uBbyFKNCc0 .dropdown-item:hover,
.cid-uBbyFKNCc0 .dropdown-item:focus {
  color: #ff7900 !important;
}
.cid-uBbyFKNCc0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBbyFKNCc0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBbyFKNCc0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uBbyFKNCc0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBbyFKNCc0 .nav-link {
  position: relative;
}
.cid-uBbyFKNCc0 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uBbyFKNCc0 .container {
    flex-wrap: nowrap;
  }
}
.cid-uBbyFKNCc0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBbyFKNCc0 .dropdown-menu,
.cid-uBbyFKNCc0 .navbar.opened {
  background: #000000 !important;
}
.cid-uBbyFKNCc0 .nav-item:focus,
.cid-uBbyFKNCc0 .nav-link:focus {
  outline: none;
}
.cid-uBbyFKNCc0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBbyFKNCc0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBbyFKNCc0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBbyFKNCc0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBbyFKNCc0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBbyFKNCc0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBbyFKNCc0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uBbyFKNCc0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uBbyFKNCc0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBbyFKNCc0 .navbar .navbar-logo img {
  width: auto;
}
.cid-uBbyFKNCc0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBbyFKNCc0 .navbar.collapsed {
  justify-content: center;
}
.cid-uBbyFKNCc0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBbyFKNCc0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBbyFKNCc0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uBbyFKNCc0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBbyFKNCc0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBbyFKNCc0 .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-uBbyFKNCc0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBbyFKNCc0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBbyFKNCc0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBbyFKNCc0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBbyFKNCc0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBbyFKNCc0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBbyFKNCc0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBbyFKNCc0 .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-uBbyFKNCc0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBbyFKNCc0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBbyFKNCc0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBbyFKNCc0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBbyFKNCc0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBbyFKNCc0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBbyFKNCc0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBbyFKNCc0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBbyFKNCc0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uBbyFKNCc0 .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-uBbyFKNCc0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBbyFKNCc0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBbyFKNCc0 .dropdown-item.active,
.cid-uBbyFKNCc0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uBbyFKNCc0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBbyFKNCc0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBbyFKNCc0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBbyFKNCc0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uBbyFKNCc0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBbyFKNCc0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBbyFKNCc0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBbyFKNCc0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBbyFKNCc0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uBbyFKNCc0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uBbyFKNCc0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBbyFKNCc0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBbyFKNCc0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBbyFKNCc0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBbyFKNCc0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBbyFKNCc0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBbyFKNCc0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBbyFKNCc0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBbyFKNCc0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBbyFKNCc0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBbyFKNCc0 .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-uBbyFKNCc0 .navbar {
    height: 70px;
  }
  .cid-uBbyFKNCc0 .navbar.opened {
    height: auto;
  }
  .cid-uBbyFKNCc0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBbzTBqdhL {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBbzTBqdhL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBbzTBqdhL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBbzTBqdhL .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uBbzTBqdhL .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uBbzTBqdhL .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uBbzTBqdhL .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uBbzTBqdhL .container {
    padding: 0 24px;
  }
}
.cid-uBbzTBqdhL .row {
  justify-content: center;
}
.cid-uBbzTBqdhL .title-wrapper {
  padding-right: 48px;
}
@media (max-width: 1440px) {
  .cid-uBbzTBqdhL .title-wrapper {
    padding-right: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uBbzTBqdhL .title-wrapper {
    padding-right: 0;
  }
}
.cid-uBbzTBqdhL .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #fbfaf9;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uBbzTBqdhL .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBbzTBqdhL .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uBbzTBqdhL .text-wrapper {
  padding-left: 48px;
}
@media (max-width: 1440px) {
  .cid-uBbzTBqdhL .text-wrapper {
    padding-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uBbzTBqdhL .text-wrapper {
    padding-left: 0;
  }
}
.cid-uBbzTBqdhL .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uBbzTBqdhL .text-wrapper .mbr-text:first-child {
  margin-bottom: 16px;
}
.cid-uBbzTBqdhL .text-wrapper .mbr-text:nth-child(2) {
  opacity: .5;
}
.cid-uBbzTBqdhL .mbr-section-title {
  color: #18212d;
}
.cid-uBbzTBqdhL .mbr-desc {
  color: #18212d;
}
.cid-uBbzTBqdhL .mbr-text {
  color: #121212;
}
.cid-uBbEfAjL7X {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uBbEfAjL7X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBbEfAjL7X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBbEfAjL7X .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uBbEfAjL7X .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uBbEfAjL7X .container {
    padding: 0 20px;
  }
}
.cid-uBbEfAjL7X .row {
  justify-content: space-between;
}
.cid-uBbEfAjL7X .card {
  justify-content: center;
}
.cid-uBbEfAjL7X .image-wrapper {
  padding-left: 100px;
}
@media (max-width: 1200px) {
  .cid-uBbEfAjL7X .image-wrapper {
    padding-left: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uBbEfAjL7X .image-wrapper {
    padding-left: 0;
    margin-bottom: 40px;
  }
}
.cid-uBbEfAjL7X .image-wrapper .image-wrap {
  padding: 0 116px;
}
@media (max-width: 1440px) {
  .cid-uBbEfAjL7X .image-wrapper .image-wrap {
    padding: 0 40px 0 0;
  }
}
@media (max-width: 992px) {
  .cid-uBbEfAjL7X .image-wrapper .image-wrap {
    padding: 0;
  }
}
.cid-uBbEfAjL7X .image-wrapper .image-wrap img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uBbEfAjL7X .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-uBbEfAjL7X .content-wrapper {
  padding-right: 100px;
}
@media (max-width: 1200px) {
  .cid-uBbEfAjL7X .content-wrapper {
    padding-right: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uBbEfAjL7X .content-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uBbEfAjL7X .content-wrapper .mbr-desc {
  font-family: "Source Serif 4", sans-serif !important;
  margin-bottom: 40px;
}
.cid-uBbEfAjL7X .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uBbEfAjL7X .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uBbEfAjL7X .mbr-desc {
  color: #1e1d1c;
}
.cid-uBbEfAjL7X .mbr-section-title {
  color: #1e1d1c;
}
.cid-uBbPkSSKfO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBbPkSSKfO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBbPkSSKfO .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-uBbPkSSKfO .container {
    padding: 0 20px;
  }
}
.cid-uBbPkSSKfO .row {
  padding: 60px 0;
}
@media (max-width: 992px) {
  .cid-uBbPkSSKfO .row {
    padding: 46px 0;
  }
}
.cid-uBbPkSSKfO .row .card {
  justify-content: flex-end;
}
.cid-uBbPkSSKfO .content-wrapper {
  margin-bottom: 50px;
}
.cid-uBbPkSSKfO .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uBbPkSSKfO .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uBbPkSSKfO .tabs-wrap {
  margin-bottom: 40px;
  text-align: right;
}
.cid-uBbPkSSKfO .tabs-wrap .nav.nav-tabs {
  display: inline-flex;
  border: none;
}
.cid-uBbPkSSKfO .tabs-wrap .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  border-radius: 0;
  margin: 0 5px 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uBbPkSSKfO .tabs-wrap .nav.nav-tabs .nav-item:last-child {
  margin-right: 0;
}
.cid-uBbPkSSKfO .tabs-wrap .nav.nav-tabs .nav-item .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  margin-bottom: 0;
  border: none;
  color: #ffffff;
  background-color: #ffffff;
  border-radius: 12px !important;
  transition: all 0.3s ease-in-out;
}
.cid-uBbPkSSKfO .tabs-wrap .nav.nav-tabs .nav-item .nav-link.active {
  background-color: #ffffff;
  color: #ffffff;
}
.cid-uBbPkSSKfO .tab-content .tab-pane .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1200px) {
  .cid-uBbPkSSKfO .tab-content .tab-pane .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uBbPkSSKfO .tab-content .tab-pane .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uBbPkSSKfO .tab-content .tab-pane .items-wrapper .item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fafafa;
  border-radius: 20px !important;
  padding: 60px 40px 40px;
}
@media (max-width: 1200px) {
  .cid-uBbPkSSKfO .tab-content .tab-pane .items-wrapper .item {
    padding: 60px 20px 40px;
  }
}
.cid-uBbPkSSKfO .tab-content .tab-pane .items-wrapper .item .item-wrapper .item-img {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.cid-uBbPkSSKfO .tab-content .tab-pane .items-wrapper .item .item-wrapper .item-img img {
  width: 134px;
  height: 134px;
  border-radius: 100% !important;
  object-fit: cover;
}
.cid-uBbPkSSKfO .tab-content .tab-pane .items-wrapper .item .item-wrapper .item-content {
  z-index: 1;
  position: relative;
}
.cid-uBbPkSSKfO .tab-content .tab-pane .items-wrapper .item .item-wrapper .item-content .card-name {
  margin-bottom: 20px;
}
.cid-uBbPkSSKfO .tab-content .tab-pane .items-wrapper .item .item-wrapper .item-content .card-role {
  margin-bottom: 25px;
}
.cid-uBbPkSSKfO .tab-content .tab-pane .items-wrapper .item .item-wrapper .item-content .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uBbPkSSKfO .tab-content .tab-pane .items-wrapper .item .item-wrapper .item-content .tags-wrapper .list .item-wrap {
  margin-right: 10px;
  margin-bottom: 0;
}
.cid-uBbPkSSKfO .tab-content .tab-pane .items-wrapper .item .item-wrapper .item-content .tags-wrapper .list .item-wrap:last-child {
  margin-right: 0;
}
.cid-uBbPkSSKfO .tab-content .tab-pane .items-wrapper .item .mbr-section-btn {
  z-index: 1;
  position: relative;
  margin-top: 20px;
}
.cid-uBbPkSSKfO .tab-content .tab-pane .items-wrapper .item .mbr-section-btn .btn-primary,
.cid-uBbPkSSKfO .tab-content .tab-pane .items-wrapper .item .mbr-section-btn .btn-secondary,
.cid-uBbPkSSKfO .tab-content .tab-pane .items-wrapper .item .mbr-section-btn .btn-success,
.cid-uBbPkSSKfO .tab-content .tab-pane .items-wrapper .item .mbr-section-btn .btn-info,
.cid-uBbPkSSKfO .tab-content .tab-pane .items-wrapper .item .mbr-section-btn .btn-warning,
.cid-uBbPkSSKfO .tab-content .tab-pane .items-wrapper .item .mbr-section-btn .btn-danger,
.cid-uBbPkSSKfO .tab-content .tab-pane .items-wrapper .item .mbr-section-btn .btn-black,
.cid-uBbPkSSKfO .tab-content .tab-pane .items-wrapper .item .mbr-section-btn .btn-white {
  border: 2px solid #dcdde0 !important;
}
.cid-uBbPkSSKfO .mbr-section-title {
  color: #000000;
}
.cid-uBbPkSSKfO .mbr-desc {
  color: #000000;
}
.cid-uBbPkSSKfO .card-name {
  color: #000000;
}
.cid-uBbPkSSKfO .card-role {
  color: #232323;
  text-align: center;
}
.cid-uBbPkSSKfO .list,
.cid-uBbPkSSKfO .tags-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uBbPkSSKfO .card-name,
.cid-uBbPkSSKfO .mbr-section-btn {
  text-align: center;
  color: #232323;
}
.cid-uBbyFN37Fu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-uBbyFN37Fu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBbyFN37Fu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBbyFN37Fu .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uBbyFN37Fu .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uBbyFN37Fu .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBbyFN37Fu .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uBbyFN37Fu .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uBbyFN37Fu .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uBbyFN37Fu .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uBbyFN37Fu .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uBbyFN37Fu .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uBbyFN37Fu .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uBbyFN37Fu .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uBbyFN37Fu .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uBbyFN37Fu .items-wrapper .card {
  padding: 0 32px;
}
.cid-uBbyFN37Fu .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uBbyFN37Fu .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uBbyFN37Fu .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uBbyFN37Fu .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uBbyFN37Fu .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uBbyFN37Fu .list-wrapper .list .item-wrap:hover,
.cid-uBbyFN37Fu .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uBbyFN37Fu .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uBbyFN37Fu .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uBbyFN37Fu .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uBbyFN37Fu .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uBbyFN37Fu .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uBbyFN37Fu .mbr-copy {
  margin-bottom: 0;
  color: #9aa0a6;
}
.cid-uBbyFN37Fu .mbr-desc {
  color: #ff7900;
}
.cid-uBbyFN37Fu .mbr-text,
.cid-uBbyFN37Fu .text-wrapper {
  color: #9aa0a6;
}
.cid-uBbyFN37Fu .list {
  color: #9aa0a6;
}
.cid-uBbVnOK5y6 {
  z-index: 1000;
  width: 100%;
}
.cid-uBbVnOK5y6 .show .link,
.cid-uBbVnOK5y6 .show .mbr-iconfont,
.cid-uBbVnOK5y6 .show .phone {
  color: #ffffff !important;
}
.cid-uBbVnOK5y6 .opened .navbar-caption {
  color: #ffffff !important;
}
.cid-uBbVnOK5y6 .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-uBbVnOK5y6 .phone {
  padding-left: 4rem;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uBbVnOK5y6 .phone {
    text-align: center;
    display: block;
    padding: 1rem 0;
  }
}
.cid-uBbVnOK5y6 nav.navbar {
  position: fixed;
}
.cid-uBbVnOK5y6 .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-uBbVnOK5y6 .dropdown-menu {
  padding: 1rem 0;
}
.cid-uBbVnOK5y6 .dropdown-item {
  color: #ffffff !important;
}
.cid-uBbVnOK5y6 .dropdown-item span {
  color: #ffffff !important;
}
.cid-uBbVnOK5y6 .dropdown-item:hover,
.cid-uBbVnOK5y6 .dropdown-item:focus {
  color: #ff7900 !important;
}
.cid-uBbVnOK5y6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBbVnOK5y6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBbVnOK5y6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uBbVnOK5y6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBbVnOK5y6 .nav-link {
  position: relative;
}
.cid-uBbVnOK5y6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uBbVnOK5y6 .container {
    flex-wrap: nowrap;
  }
}
.cid-uBbVnOK5y6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBbVnOK5y6 .dropdown-menu,
.cid-uBbVnOK5y6 .navbar.opened {
  background: #000000 !important;
}
.cid-uBbVnOK5y6 .nav-item:focus,
.cid-uBbVnOK5y6 .nav-link:focus {
  outline: none;
}
.cid-uBbVnOK5y6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBbVnOK5y6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBbVnOK5y6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBbVnOK5y6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBbVnOK5y6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBbVnOK5y6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBbVnOK5y6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uBbVnOK5y6 .navbar.opened {
  transition: all 0.3s;
}
.cid-uBbVnOK5y6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBbVnOK5y6 .navbar .navbar-logo img {
  width: auto;
}
.cid-uBbVnOK5y6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBbVnOK5y6 .navbar.collapsed {
  justify-content: center;
}
.cid-uBbVnOK5y6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBbVnOK5y6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBbVnOK5y6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uBbVnOK5y6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBbVnOK5y6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBbVnOK5y6 .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-uBbVnOK5y6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBbVnOK5y6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBbVnOK5y6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBbVnOK5y6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBbVnOK5y6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBbVnOK5y6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBbVnOK5y6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBbVnOK5y6 .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-uBbVnOK5y6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBbVnOK5y6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBbVnOK5y6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBbVnOK5y6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBbVnOK5y6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBbVnOK5y6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBbVnOK5y6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBbVnOK5y6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBbVnOK5y6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uBbVnOK5y6 .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-uBbVnOK5y6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBbVnOK5y6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBbVnOK5y6 .dropdown-item.active,
.cid-uBbVnOK5y6 .dropdown-item:active {
  background-color: transparent;
}
.cid-uBbVnOK5y6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBbVnOK5y6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBbVnOK5y6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBbVnOK5y6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uBbVnOK5y6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBbVnOK5y6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBbVnOK5y6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBbVnOK5y6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBbVnOK5y6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uBbVnOK5y6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uBbVnOK5y6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBbVnOK5y6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBbVnOK5y6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBbVnOK5y6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBbVnOK5y6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBbVnOK5y6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBbVnOK5y6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBbVnOK5y6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBbVnOK5y6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBbVnOK5y6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBbVnOK5y6 .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-uBbVnOK5y6 .navbar {
    height: 70px;
  }
  .cid-uBbVnOK5y6 .navbar.opened {
    height: auto;
  }
  .cid-uBbVnOK5y6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBc4nfM7hv {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBc4nfM7hv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBc4nfM7hv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBc4nfM7hv .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 0;
  line-height: 1;
}
@media (max-width: 1440px) {
  .cid-uBc4nfM7hv .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uBc4nfM7hv .mbr-text,
.cid-uBc4nfM7hv .text-wrapper {
  color: #121212;
  text-align: center;
}
.cid-uBgE7yESoe {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBgE7yESoe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBgE7yESoe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBgE7yESoe .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uBgE7yESoe .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uBgE7yESoe .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uBgE7yESoe .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uBgE7yESoe .container {
    padding: 0 24px;
  }
}
.cid-uBgE7yESoe .content-wrapper {
  display: flex;
  border-radius: 2rem !important;
  border: 1px solid #ffffff;
  background-color: #fbfaf9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uBgE7yESoe .content-wrapper {
    display: block;
  }
}
.cid-uBgE7yESoe .content-wrapper .content-wrap {
  width: 50%;
  padding: 150px 64px;
}
@media (max-width: 1440px) {
  .cid-uBgE7yESoe .content-wrapper .content-wrap {
    padding: 150px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uBgE7yESoe .content-wrapper .content-wrap {
    width: 100%;
    padding: 24px 24px 32px;
  }
}
.cid-uBgE7yESoe .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uBgE7yESoe .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uBgE7yESoe .content-wrapper .content-wrap .list {
  padding: 0;
  margin: 0 0 22px 0;
  list-style-type: none;
}
.cid-uBgE7yESoe .content-wrapper .content-wrap .list .item-wrap {
  margin-bottom: 16px;
}
.cid-uBgE7yESoe .content-wrapper .content-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uBgE7yESoe .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uBgE7yESoe .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uBgE7yESoe .content-wrapper .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uBgE7yESoe .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uBgE7yESoe .mbr-section-title {
  color: #18212d;
}
.cid-uBgE7yESoe .mbr-desc {
  color: #18212d;
}
.cid-uBgE7yESoe .list {
  color: #18212d;
}
.cid-uBc4zCsQPs {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uBc4zCsQPs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBc4zCsQPs .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-uBc4zCsQPs .container {
    padding: 0 15px;
  }
}
.cid-uBc4zCsQPs .row {
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cid-uBc4zCsQPs .content-wrapper {
  position: relative;
}
.cid-uBc4zCsQPs .content-wrapper .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uBc4zCsQPs .content-wrapper .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBc4zCsQPs .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-uBc4zCsQPs .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uBc4zCsQPs .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-uBc4zCsQPs .dragArea.row .mbr-section-title {
  margin-bottom: 40px !important;
}
.cid-uBc4zCsQPs .dragArea.row .mbr-text {
  margin-bottom: 40px !important;
}
.cid-uBc4zCsQPs .dragArea.row .form-group {
  margin-bottom: 30px !important;
  padding: 0 15px;
}
.cid-uBc4zCsQPs .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 15px;
}
.cid-uBc4zCsQPs .dragArea.row .form-group .form-control {
  padding: 20px 40px 24px;
  border: 1px solid #68707c !important;
  box-shadow: none;
  border-radius: 0 !important;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uBc4zCsQPs .dragArea.row .form-group .form-control {
    padding: 20px 30px;
  }
}
.cid-uBc4zCsQPs .dragArea.row .form-group .form-control:hover,
.cid-uBc4zCsQPs .dragArea.row .form-group .form-control:focus {
  border: 1px solid #232323 !important;
}
.cid-uBc4zCsQPs .dragArea.row .form-group .form-control::placeholder {
  color: #232323;
  font-size: 20px;
}
.cid-uBc4zCsQPs .dragArea.row .form-group textarea {
  min-height: 200px;
}
.cid-uBc4zCsQPs .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-uBc4zCsQPs .dragArea.row .form-group .form-check .form-check-input {
  background-color: #68707c;
  border-color: #68707c;
  border-radius: 0;
}
.cid-uBc4zCsQPs .dragArea.row .mbr-section-btn {
  width: 100%;
  margin: 0;
  padding: 0;
}
.cid-uBc4zCsQPs .mbr-section-title {
  color: #ffffff;
}
.cid-uBc4zCsQPs .mbr-desc {
  color: #232323;
  text-align: left;
}
.cid-uBc4zCsQPs label {
  color: #ffffff;
}
.cid-uBc4zCsQPs .mbr-section-btn {
  text-align: right;
}
.cid-uBc4zCsQPs .mbr-section-title,
.cid-uBc4zCsQPs .mbr-section-btn {
  color: #232323;
}
.cid-uBbVnTypjv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-uBbVnTypjv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBbVnTypjv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBbVnTypjv .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uBbVnTypjv .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uBbVnTypjv .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBbVnTypjv .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uBbVnTypjv .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uBbVnTypjv .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uBbVnTypjv .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uBbVnTypjv .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uBbVnTypjv .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uBbVnTypjv .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uBbVnTypjv .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uBbVnTypjv .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uBbVnTypjv .items-wrapper .card {
  padding: 0 32px;
}
.cid-uBbVnTypjv .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uBbVnTypjv .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uBbVnTypjv .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uBbVnTypjv .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uBbVnTypjv .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uBbVnTypjv .list-wrapper .list .item-wrap:hover,
.cid-uBbVnTypjv .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uBbVnTypjv .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uBbVnTypjv .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uBbVnTypjv .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uBbVnTypjv .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uBbVnTypjv .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uBbVnTypjv .mbr-copy {
  margin-bottom: 0;
  color: #9aa0a6;
}
.cid-uBbVnTypjv .mbr-desc {
  color: #ff7900;
}
.cid-uBbVnTypjv .mbr-text,
.cid-uBbVnTypjv .text-wrapper {
  color: #9aa0a6;
}
.cid-uBbVnTypjv .list {
  color: #9aa0a6;
}
.cid-uBgbf1dPFf {
  z-index: 1000;
  width: 100%;
}
.cid-uBgbf1dPFf .show .link,
.cid-uBgbf1dPFf .show .mbr-iconfont,
.cid-uBgbf1dPFf .show .phone {
  color: #ffffff !important;
}
.cid-uBgbf1dPFf .opened .navbar-caption {
  color: #ffffff !important;
}
.cid-uBgbf1dPFf .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-uBgbf1dPFf .phone {
  padding-left: 4rem;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uBgbf1dPFf .phone {
    text-align: center;
    display: block;
    padding: 1rem 0;
  }
}
.cid-uBgbf1dPFf nav.navbar {
  position: fixed;
}
.cid-uBgbf1dPFf .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-uBgbf1dPFf .dropdown-menu {
  padding: 1rem 0;
}
.cid-uBgbf1dPFf .dropdown-item {
  color: #ffffff !important;
}
.cid-uBgbf1dPFf .dropdown-item span {
  color: #ffffff !important;
}
.cid-uBgbf1dPFf .dropdown-item:hover,
.cid-uBgbf1dPFf .dropdown-item:focus {
  color: #ff7900 !important;
}
.cid-uBgbf1dPFf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBgbf1dPFf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBgbf1dPFf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uBgbf1dPFf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBgbf1dPFf .nav-link {
  position: relative;
}
.cid-uBgbf1dPFf .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uBgbf1dPFf .container {
    flex-wrap: nowrap;
  }
}
.cid-uBgbf1dPFf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBgbf1dPFf .dropdown-menu,
.cid-uBgbf1dPFf .navbar.opened {
  background: #000000 !important;
}
.cid-uBgbf1dPFf .nav-item:focus,
.cid-uBgbf1dPFf .nav-link:focus {
  outline: none;
}
.cid-uBgbf1dPFf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBgbf1dPFf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBgbf1dPFf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBgbf1dPFf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBgbf1dPFf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBgbf1dPFf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBgbf1dPFf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.8);
}
.cid-uBgbf1dPFf .navbar.opened {
  transition: all 0.3s;
}
.cid-uBgbf1dPFf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBgbf1dPFf .navbar .navbar-logo img {
  width: auto;
}
.cid-uBgbf1dPFf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBgbf1dPFf .navbar.collapsed {
  justify-content: center;
}
.cid-uBgbf1dPFf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBgbf1dPFf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBgbf1dPFf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-uBgbf1dPFf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBgbf1dPFf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBgbf1dPFf .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-uBgbf1dPFf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBgbf1dPFf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBgbf1dPFf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBgbf1dPFf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBgbf1dPFf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBgbf1dPFf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBgbf1dPFf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBgbf1dPFf .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-uBgbf1dPFf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBgbf1dPFf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBgbf1dPFf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBgbf1dPFf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBgbf1dPFf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBgbf1dPFf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBgbf1dPFf .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBgbf1dPFf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBgbf1dPFf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uBgbf1dPFf .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-uBgbf1dPFf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBgbf1dPFf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBgbf1dPFf .dropdown-item.active,
.cid-uBgbf1dPFf .dropdown-item:active {
  background-color: transparent;
}
.cid-uBgbf1dPFf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBgbf1dPFf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBgbf1dPFf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBgbf1dPFf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uBgbf1dPFf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBgbf1dPFf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBgbf1dPFf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBgbf1dPFf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBgbf1dPFf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uBgbf1dPFf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uBgbf1dPFf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBgbf1dPFf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBgbf1dPFf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBgbf1dPFf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBgbf1dPFf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBgbf1dPFf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBgbf1dPFf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBgbf1dPFf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBgbf1dPFf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBgbf1dPFf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBgbf1dPFf .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-uBgbf1dPFf .navbar {
    height: 70px;
  }
  .cid-uBgbf1dPFf .navbar.opened {
    height: auto;
  }
  .cid-uBgbf1dPFf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBglsJVVgb {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uBglsJVVgb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBglsJVVgb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBglsJVVgb .row {
  position: relative;
  z-index: 2;
}
.cid-uBglsJVVgb .image-wrapper {
  padding-right: 76px;
  padding-top: 46px;
}
@media (max-width: 992px) {
  .cid-uBglsJVVgb .image-wrapper {
    padding-right: 0;
    padding-top: 0;
    margin-bottom: 46px;
  }
}
.cid-uBglsJVVgb .image-wrapper .image-wrap {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uBglsJVVgb .image-wrapper .image-wrap {
    padding-right: 0;
  }
}
.cid-uBglsJVVgb .image-wrapper .image-wrap img {
  height: 650px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uBglsJVVgb .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-uBglsJVVgb .image-wrapper .desc-wrap {
  position: relative;
  padding: 46px 32px;
  background-color: #ffffff;
  margin-left: 16px;
  margin-top: -7rem;
}
@media (max-width: 992px) {
  .cid-uBglsJVVgb .image-wrapper .desc-wrap {
    margin-left: 0;
    padding: 32px 22px;
  }
}
.cid-uBglsJVVgb .image-wrapper .desc-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uBglsJVVgb .content-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uBglsJVVgb .content-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uBglsJVVgb .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBglsJVVgb .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uBglsJVVgb .mbr-section-title {
  color: #212529;
}
.cid-uBglsJVVgb .mbr-text {
  color: #51565c;
}
.cid-uBglsJVVgb .mbr-desc {
  color: #232323;
  text-align: center;
}
.cid-uBglsJVVgb .mbr-text,
.cid-uBglsJVVgb .text-wrapper {
  color: #232323;
}
.cid-uBgtZtbjhO {
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uBgtZtbjhO .image {
  position: absolute;
  background-image: url("../../../assets/images/mobile-650x500.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1 !important;
  width: 800px;
  height: 500px;
  margin-left: 64vw;
  transform-origin: center;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-uBgtZtbjhO .image {
    display: none;
  }
}
.cid-uBgtZtbjhO .position {
  z-index: 10;
}
.cid-uBgtZtbjhO .mbr-section-subtitle {
  margin: 10px 0 15px;
  line-height: 1.55;
  color: #232323;
}
.cid-uBgtZtbjhO .mbr-section-title {
  margin-bottom: 0;
}
.cid-uBgtZtbjhO .mbr-text {
  margin-top: 30px;
}
.cid-uBgtZtbjhO .mbr-section-btn {
  margin-top: 30px;
}
.cid-uBgtZtbjhO .info__block {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
}
.cid-uBgtZtbjhO .divider {
  background-color: #191f23;
  width: 100%;
  height: 1px;
  display: inline-block;
}
.cid-uBgtZtbjhO .info__block-item {
  width: 130px;
  padding-top: 25px;
  margin-right: 25px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uBgtZtbjhO .info__block-item {
    margin-right: 10px;
  }
}
.cid-uBgtZtbjhO .title__item,
.cid-uBgtZtbjhO .text__item {
  margin-bottom: 0;
}
.cid-uBgtZtbjhO .text__item {
  line-height: 1.35;
  text-align: left;
}
.cid-uBgtZtbjhO .animated-element {
  color: #ff7900;
}
.cid-uBgtZtbjhO .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ff7900;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uBgtZtbjhO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBgtZtbjhO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBgAvtGBRg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f2;
}
.cid-uBgAvtGBRg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBgAvtGBRg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBgAvtGBRg .row {
  position: relative;
  z-index: 2;
}
.cid-uBgAvtGBRg .image-wrapper {
  padding-right: 76px;
  padding-top: 46px;
}
@media (max-width: 992px) {
  .cid-uBgAvtGBRg .image-wrapper {
    padding-right: 0;
    padding-top: 0;
    margin-bottom: 46px;
  }
}
.cid-uBgAvtGBRg .image-wrapper .image-wrap {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uBgAvtGBRg .image-wrapper .image-wrap {
    padding-right: 0;
  }
}
.cid-uBgAvtGBRg .image-wrapper .image-wrap img {
  height: 650px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uBgAvtGBRg .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-uBgAvtGBRg .image-wrapper .desc-wrap {
  position: relative;
  padding: 46px 32px;
  background-color: #ffffff;
  margin-left: 16px;
  margin-top: -7rem;
}
@media (max-width: 992px) {
  .cid-uBgAvtGBRg .image-wrapper .desc-wrap {
    margin-left: 0;
    padding: 32px 22px;
  }
}
.cid-uBgAvtGBRg .image-wrapper .desc-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uBgAvtGBRg .content-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uBgAvtGBRg .content-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uBgAvtGBRg .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBgAvtGBRg .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uBgAvtGBRg .mbr-section-title {
  color: #212529;
}
.cid-uBgAvtGBRg .mbr-text {
  color: #51565c;
}
.cid-uBgAvtGBRg .mbr-desc {
  color: #212529;
  text-align: center;
}
.cid-uBgAvtGBRg .mbr-text,
.cid-uBgAvtGBRg .text-wrapper {
  color: #232323;
}
.cid-uBgbf3QBpQ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #1a1a1a;
}
.cid-uBgbf3QBpQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBgbf3QBpQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBgbf3QBpQ .row {
  justify-content: space-between;
}
.cid-uBgbf3QBpQ .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-uBgbf3QBpQ .content-wrapper {
    padding: 0;
  }
}
.cid-uBgbf3QBpQ .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uBgbf3QBpQ .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uBgbf3QBpQ .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uBgbf3QBpQ .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uBgbf3QBpQ .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uBgbf3QBpQ .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-uBgbf3QBpQ .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-uBgbf3QBpQ .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uBgbf3QBpQ .mbr-section-title {
  color: #000000;
}
.cid-uBgbf3QBpQ .mbr-desc {
  color: #000000;
}
.cid-uBgbf3QBpQ .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uBgbf3QBpQ .mbr-section-title,
.cid-uBgbf3QBpQ .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uBgbf6xgba {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-uBgbf6xgba .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBgbf6xgba .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBgbf6xgba .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uBgbf6xgba .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uBgbf6xgba .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBgbf6xgba .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uBgbf6xgba .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uBgbf6xgba .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uBgbf6xgba .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uBgbf6xgba .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uBgbf6xgba .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uBgbf6xgba .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uBgbf6xgba .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uBgbf6xgba .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uBgbf6xgba .items-wrapper .card {
  padding: 0 32px;
}
.cid-uBgbf6xgba .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uBgbf6xgba .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uBgbf6xgba .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uBgbf6xgba .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uBgbf6xgba .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uBgbf6xgba .list-wrapper .list .item-wrap:hover,
.cid-uBgbf6xgba .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uBgbf6xgba .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uBgbf6xgba .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uBgbf6xgba .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uBgbf6xgba .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uBgbf6xgba .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uBgbf6xgba .mbr-copy {
  margin-bottom: 0;
  color: #9aa0a6;
}
.cid-uBgbf6xgba .mbr-desc {
  color: #ff7900;
}
.cid-uBgbf6xgba .mbr-text,
.cid-uBgbf6xgba .text-wrapper {
  color: #9aa0a6;
}
.cid-uBgbf6xgba .list {
  color: #9aa0a6;
}
.cid-t0pQmq4nMM {
  z-index: 1000;
  width: 100%;
}
.cid-t0pQmq4nMM .show .link,
.cid-t0pQmq4nMM .show .mbr-iconfont,
.cid-t0pQmq4nMM .show .phone {
  color: #ffffff !important;
}
.cid-t0pQmq4nMM .opened .navbar-caption {
  color: #ffffff !important;
}
.cid-t0pQmq4nMM .opened .hamburger span {
  background-color: #ffffff !important;
}
.cid-t0pQmq4nMM .phone {
  padding-left: 4rem;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-t0pQmq4nMM .phone {
    text-align: center;
    display: block;
    padding: 1rem 0;
  }
}
.cid-t0pQmq4nMM nav.navbar {
  position: fixed;
}
.cid-t0pQmq4nMM .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-t0pQmq4nMM .dropdown-menu {
  padding: 1rem 0;
}
.cid-t0pQmq4nMM .dropdown-item {
  color: #ffffff !important;
}
.cid-t0pQmq4nMM .dropdown-item span {
  color: #ffffff !important;
}
.cid-t0pQmq4nMM .dropdown-item:hover,
.cid-t0pQmq4nMM .dropdown-item:focus {
  color: #ff7900 !important;
}
.cid-t0pQmq4nMM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0pQmq4nMM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0pQmq4nMM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0pQmq4nMM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0pQmq4nMM .nav-link {
  position: relative;
}
.cid-t0pQmq4nMM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0pQmq4nMM .container {
    flex-wrap: nowrap;
  }
}
.cid-t0pQmq4nMM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0pQmq4nMM .dropdown-menu,
.cid-t0pQmq4nMM .navbar.opened {
  background: #000000 !important;
}
.cid-t0pQmq4nMM .nav-item:focus,
.cid-t0pQmq4nMM .nav-link:focus {
  outline: none;
}
.cid-t0pQmq4nMM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0pQmq4nMM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0pQmq4nMM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0pQmq4nMM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0pQmq4nMM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0pQmq4nMM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0pQmq4nMM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.8);
}
.cid-t0pQmq4nMM .navbar.opened {
  transition: all 0.3s;
}
.cid-t0pQmq4nMM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0pQmq4nMM .navbar .navbar-logo img {
  width: auto;
}
.cid-t0pQmq4nMM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0pQmq4nMM .navbar.collapsed {
  justify-content: center;
}
.cid-t0pQmq4nMM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0pQmq4nMM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0pQmq4nMM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.4rem);
  }
}
.cid-t0pQmq4nMM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0pQmq4nMM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0pQmq4nMM .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-t0pQmq4nMM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0pQmq4nMM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0pQmq4nMM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0pQmq4nMM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0pQmq4nMM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0pQmq4nMM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0pQmq4nMM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0pQmq4nMM .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-t0pQmq4nMM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0pQmq4nMM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0pQmq4nMM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0pQmq4nMM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0pQmq4nMM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0pQmq4nMM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0pQmq4nMM .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0pQmq4nMM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0pQmq4nMM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0pQmq4nMM .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-t0pQmq4nMM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0pQmq4nMM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0pQmq4nMM .dropdown-item.active,
.cid-t0pQmq4nMM .dropdown-item:active {
  background-color: transparent;
}
.cid-t0pQmq4nMM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0pQmq4nMM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0pQmq4nMM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0pQmq4nMM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-t0pQmq4nMM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0pQmq4nMM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0pQmq4nMM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0pQmq4nMM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0pQmq4nMM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0pQmq4nMM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0pQmq4nMM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0pQmq4nMM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0pQmq4nMM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0pQmq4nMM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0pQmq4nMM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t0pQmq4nMM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0pQmq4nMM .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-t0pQmq4nMM .navbar {
    height: 70px;
  }
  .cid-t0pQmq4nMM .navbar.opened {
    height: auto;
  }
  .cid-t0pQmq4nMM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAIubBoQ2x {
  padding-top: 9rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/2-371x301.jpg");
}
.cid-uAIubBoQ2x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAIubBoQ2x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAIubBoQ2x .row {
  align-items: center;
}
.cid-uAIubBoQ2x .mbr-section-title {
  color: #ff7900;
}
.cid-uAIEG2fnIe {
  overflow: hidden;
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uAIEG2fnIe .image {
  position: absolute;
  background-image: url("../../../assets/images/desktop-650x700.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1 !important;
  width: 800px;
  height: 500px;
  margin-left: 54vw;
  transform-origin: center;
  transform: rotate(6deg);
}
@media (max-width: 991px) {
  .cid-uAIEG2fnIe .image {
    display: none;
  }
}
.cid-uAIEG2fnIe .position {
  z-index: 10;
}
.cid-uAIEG2fnIe .mbr-section-subtitle {
  margin: 10px 0 15px;
  line-height: 1.55;
}
.cid-uAIEG2fnIe .mbr-section-title {
  margin-bottom: 0;
}
.cid-uAIEG2fnIe .mbr-text {
  margin-top: 30px;
}
.cid-uAIEG2fnIe .mbr-section-btn {
  margin-top: 30px;
}
.cid-uAIEG2fnIe .info__block {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
}
.cid-uAIEG2fnIe .divider {
  background-color: #191f23;
  width: 100%;
  height: 1px;
  display: inline-block;
}
.cid-uAIEG2fnIe .info__block-item {
  width: 130px;
  padding-top: 25px;
  margin-right: 25px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uAIEG2fnIe .info__block-item {
    margin-right: 10px;
  }
}
.cid-uAIEG2fnIe .title__item,
.cid-uAIEG2fnIe .text__item {
  margin-bottom: 0;
}
.cid-uAIEG2fnIe .text__item {
  line-height: 1.35;
  text-align: left;
}
.cid-uAIEG2fnIe .animated-element {
  color: #ff7900;
}
.cid-uAIEG2fnIe .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ff7900;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uAIEG2fnIe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAIEG2fnIe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAMYf8bV3H {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uAMYf8bV3H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMYf8bV3H .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-uAMYf8bV3H .container {
    padding: 0 20px;
  }
}
.cid-uAMYf8bV3H .row {
  padding: 60px 0;
}
@media (max-width: 992px) {
  .cid-uAMYf8bV3H .row {
    padding: 46px 0;
  }
}
.cid-uAMYf8bV3H .row .card {
  justify-content: flex-end;
}
.cid-uAMYf8bV3H .content-wrapper {
  margin-bottom: 50px;
}
.cid-uAMYf8bV3H .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uAMYf8bV3H .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uAMYf8bV3H .tabs-wrap {
  margin-bottom: 40px;
  text-align: right;
}
.cid-uAMYf8bV3H .tabs-wrap .nav.nav-tabs {
  display: inline-flex;
  border: none;
}
.cid-uAMYf8bV3H .tabs-wrap .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  border-radius: 0;
  margin: 0 5px 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uAMYf8bV3H .tabs-wrap .nav.nav-tabs .nav-item:last-child {
  margin-right: 0;
}
.cid-uAMYf8bV3H .tabs-wrap .nav.nav-tabs .nav-item .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  margin-bottom: 0;
  border: none;
  color: #ffffff;
  background-color: #ffffff;
  border-radius: 12px !important;
  transition: all 0.3s ease-in-out;
}
.cid-uAMYf8bV3H .tabs-wrap .nav.nav-tabs .nav-item .nav-link.active {
  background-color: #ffffff;
  color: #ffffff;
}
.cid-uAMYf8bV3H .tab-content .tab-pane .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1200px) {
  .cid-uAMYf8bV3H .tab-content .tab-pane .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uAMYf8bV3H .tab-content .tab-pane .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uAMYf8bV3H .tab-content .tab-pane .items-wrapper .item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #f3f6f9;
  border-radius: 20px !important;
  padding: 60px 40px 40px;
}
@media (max-width: 1200px) {
  .cid-uAMYf8bV3H .tab-content .tab-pane .items-wrapper .item {
    padding: 60px 20px 40px;
  }
}
.cid-uAMYf8bV3H .tab-content .tab-pane .items-wrapper .item .item-wrapper .item-img {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.cid-uAMYf8bV3H .tab-content .tab-pane .items-wrapper .item .item-wrapper .item-img img {
  width: 134px;
  height: 134px;
  border-radius: 100% !important;
  object-fit: cover;
}
.cid-uAMYf8bV3H .tab-content .tab-pane .items-wrapper .item .item-wrapper .item-content {
  z-index: 1;
  position: relative;
}
.cid-uAMYf8bV3H .tab-content .tab-pane .items-wrapper .item .item-wrapper .item-content .card-name {
  margin-bottom: 20px;
}
.cid-uAMYf8bV3H .tab-content .tab-pane .items-wrapper .item .item-wrapper .item-content .card-role {
  margin-bottom: 25px;
}
.cid-uAMYf8bV3H .tab-content .tab-pane .items-wrapper .item .item-wrapper .item-content .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uAMYf8bV3H .tab-content .tab-pane .items-wrapper .item .item-wrapper .item-content .tags-wrapper .list .item-wrap {
  margin-right: 10px;
  margin-bottom: 0;
}
.cid-uAMYf8bV3H .tab-content .tab-pane .items-wrapper .item .item-wrapper .item-content .tags-wrapper .list .item-wrap:last-child {
  margin-right: 0;
}
.cid-uAMYf8bV3H .tab-content .tab-pane .items-wrapper .item .mbr-section-btn {
  z-index: 1;
  position: relative;
  margin-top: 20px;
}
.cid-uAMYf8bV3H .tab-content .tab-pane .items-wrapper .item .mbr-section-btn .btn-primary,
.cid-uAMYf8bV3H .tab-content .tab-pane .items-wrapper .item .mbr-section-btn .btn-secondary,
.cid-uAMYf8bV3H .tab-content .tab-pane .items-wrapper .item .mbr-section-btn .btn-success,
.cid-uAMYf8bV3H .tab-content .tab-pane .items-wrapper .item .mbr-section-btn .btn-info,
.cid-uAMYf8bV3H .tab-content .tab-pane .items-wrapper .item .mbr-section-btn .btn-warning,
.cid-uAMYf8bV3H .tab-content .tab-pane .items-wrapper .item .mbr-section-btn .btn-danger,
.cid-uAMYf8bV3H .tab-content .tab-pane .items-wrapper .item .mbr-section-btn .btn-black,
.cid-uAMYf8bV3H .tab-content .tab-pane .items-wrapper .item .mbr-section-btn .btn-white {
  border: 2px solid #dcdde0 !important;
}
.cid-uAMYf8bV3H .mbr-section-title {
  color: #000000;
}
.cid-uAMYf8bV3H .mbr-desc {
  color: #000000;
}
.cid-uAMYf8bV3H .card-name {
  color: #000000;
}
.cid-uAMYf8bV3H .card-role {
  color: #000000;
  text-align: center;
}
.cid-uAMYf8bV3H .list,
.cid-uAMYf8bV3H .tags-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uAMYf8bV3H .card-name,
.cid-uAMYf8bV3H .mbr-section-btn {
  text-align: center;
}
.cid-uAMYf8bV3H .mbr-section-title .tabs-wrap {
  color: #ff7900;
}
.cid-uAN28aMqQO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f3f6f9;
}
.cid-uAN28aMqQO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAN28aMqQO .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-uAN28aMqQO .container {
    padding: 0 20px;
  }
}
.cid-uAN28aMqQO .row {
  padding: 60px 0;
}
@media (max-width: 992px) {
  .cid-uAN28aMqQO .row {
    padding: 46px 0;
  }
}
.cid-uAN28aMqQO .row .card {
  justify-content: flex-end;
}
.cid-uAN28aMqQO .content-wrapper {
  margin-bottom: 50px;
}
.cid-uAN28aMqQO .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uAN28aMqQO .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uAN28aMqQO .tabs-wrap {
  margin-bottom: 40px;
  text-align: right;
}
.cid-uAN28aMqQO .tabs-wrap .nav.nav-tabs {
  display: inline-flex;
  border: none;
}
.cid-uAN28aMqQO .tabs-wrap .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  border-radius: 0;
  margin: 0 5px 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uAN28aMqQO .tabs-wrap .nav.nav-tabs .nav-item:last-child {
  margin-right: 0;
}
.cid-uAN28aMqQO .tabs-wrap .nav.nav-tabs .nav-item .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  margin-bottom: 0;
  border: none;
  color: #f3f6f9;
  background-color: #f3f6f9;
  border-radius: 12px !important;
  transition: all 0.3s ease-in-out;
}
.cid-uAN28aMqQO .tabs-wrap .nav.nav-tabs .nav-item .nav-link.active {
  background-color: #f3f6f9;
  color: #f3f6f9;
}
.cid-uAN28aMqQO .tab-content .tab-pane .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1200px) {
  .cid-uAN28aMqQO .tab-content .tab-pane .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uAN28aMqQO .tab-content .tab-pane .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uAN28aMqQO .tab-content .tab-pane .items-wrapper .item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 20px !important;
  padding: 60px 40px 40px;
}
@media (max-width: 1200px) {
  .cid-uAN28aMqQO .tab-content .tab-pane .items-wrapper .item {
    padding: 60px 20px 40px;
  }
}
.cid-uAN28aMqQO .tab-content .tab-pane .items-wrapper .item .item-wrapper .item-img {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.cid-uAN28aMqQO .tab-content .tab-pane .items-wrapper .item .item-wrapper .item-img img {
  width: 134px;
  height: 134px;
  border-radius: 100% !important;
  object-fit: cover;
}
.cid-uAN28aMqQO .tab-content .tab-pane .items-wrapper .item .item-wrapper .item-content {
  z-index: 1;
  position: relative;
}
.cid-uAN28aMqQO .tab-content .tab-pane .items-wrapper .item .item-wrapper .item-content .card-name {
  margin-bottom: 20px;
}
.cid-uAN28aMqQO .tab-content .tab-pane .items-wrapper .item .item-wrapper .item-content .card-role {
  margin-bottom: 25px;
}
.cid-uAN28aMqQO .tab-content .tab-pane .items-wrapper .item .item-wrapper .item-content .tags-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uAN28aMqQO .tab-content .tab-pane .items-wrapper .item .item-wrapper .item-content .tags-wrapper .list .item-wrap {
  margin-right: 10px;
  margin-bottom: 0;
}
.cid-uAN28aMqQO .tab-content .tab-pane .items-wrapper .item .item-wrapper .item-content .tags-wrapper .list .item-wrap:last-child {
  margin-right: 0;
}
.cid-uAN28aMqQO .tab-content .tab-pane .items-wrapper .item .mbr-section-btn {
  z-index: 1;
  position: relative;
  margin-top: 20px;
}
.cid-uAN28aMqQO .tab-content .tab-pane .items-wrapper .item .mbr-section-btn .btn-primary,
.cid-uAN28aMqQO .tab-content .tab-pane .items-wrapper .item .mbr-section-btn .btn-secondary,
.cid-uAN28aMqQO .tab-content .tab-pane .items-wrapper .item .mbr-section-btn .btn-success,
.cid-uAN28aMqQO .tab-content .tab-pane .items-wrapper .item .mbr-section-btn .btn-info,
.cid-uAN28aMqQO .tab-content .tab-pane .items-wrapper .item .mbr-section-btn .btn-warning,
.cid-uAN28aMqQO .tab-content .tab-pane .items-wrapper .item .mbr-section-btn .btn-danger,
.cid-uAN28aMqQO .tab-content .tab-pane .items-wrapper .item .mbr-section-btn .btn-black,
.cid-uAN28aMqQO .tab-content .tab-pane .items-wrapper .item .mbr-section-btn .btn-white {
  border: 2px solid #dcdde0 !important;
}
.cid-uAN28aMqQO .mbr-section-title {
  color: #000000;
}
.cid-uAN28aMqQO .mbr-desc {
  color: #000000;
  text-align: left;
}
.cid-uAN28aMqQO .card-name {
  color: #000000;
}
.cid-uAN28aMqQO .card-role {
  color: #000000;
  text-align: center;
}
.cid-uAN28aMqQO .list,
.cid-uAN28aMqQO .tags-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uAN28aMqQO .card-name,
.cid-uAN28aMqQO .mbr-section-btn {
  text-align: center;
}
.cid-uAN28aMqQO .mbr-section-title .tabs-wrap {
  text-align: center;
}
.cid-uANHuGhv17 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-uANHuGhv17 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uANHuGhv17 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uANHuGhv17 .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uANHuGhv17 .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uANHuGhv17 .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uANHuGhv17 .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uANHuGhv17 .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uANHuGhv17 .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uANHuGhv17 .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uANHuGhv17 .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uANHuGhv17 .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uANHuGhv17 .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #5f6368;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uANHuGhv17 .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uANHuGhv17 .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uANHuGhv17 .items-wrapper .card {
  padding: 0 32px;
}
.cid-uANHuGhv17 .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uANHuGhv17 .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uANHuGhv17 .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uANHuGhv17 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uANHuGhv17 .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uANHuGhv17 .list-wrapper .list .item-wrap:hover,
.cid-uANHuGhv17 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uANHuGhv17 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uANHuGhv17 .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uANHuGhv17 .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uANHuGhv17 .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uANHuGhv17 .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uANHuGhv17 .mbr-copy {
  margin-bottom: 0;
  color: #9aa0a6;
}
.cid-uANHuGhv17 .mbr-desc {
  color: #ff7900;
}
.cid-uANHuGhv17 .mbr-text,
.cid-uANHuGhv17 .text-wrapper {
  color: #9aa0a6;
}
.cid-uANHuGhv17 .list {
  color: #9aa0a6;
}
