body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #999999 !important;
}
.bg-success {
  background-color: #dad9d9 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #353535 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #999999 !important;
  border-color: #999999 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #6e6e6e !important;
  border-color: #6e6e6e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #6e6e6e !important;
  border-color: #6e6e6e !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #dad9d9 !important;
  border-color: #dad9d9 !important;
  color: #5b5959 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #afadad !important;
  border-color: #afadad !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #5b5959 !important;
  background-color: #afadad !important;
  border-color: #afadad !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #353535 !important;
  border-color: #353535 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #999999;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #6e6e6e !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: #999999 !important;
  border-color: #999999 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bbbbbb;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #909090 !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: #bbbbbb !important;
  border-color: #bbbbbb !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: #dad9d9;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #afadad !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #5b5959 !important;
  background-color: #dad9d9 !important;
  border-color: #dad9d9 !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: #353535;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #0a0a0a !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: #353535 !important;
  border-color: #353535 !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: #999999 !important;
}
.text-secondary {
  color: #bbbbbb !important;
}
.text-success {
  color: #dad9d9 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #353535 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #666666 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #888888 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #a8a5a5 !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: #020202 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #999999;
}
.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: #353535;
}
.mbr-gallery-filter li.active .btn {
  background-color: #999999;
  border-color: #999999;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #999999;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d9d9d9;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.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: #a8a8a8;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #999999 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #999999;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #999999;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #999999;
}
.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: #999999;
  border-bottom-color: #999999;
}
.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: #999999 !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: #bbbbbb !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='%23999999' %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-u3sLSwH4gv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u3sLSwH4gv nav.navbar {
  position: fixed;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3sLSwH4gv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3sLSwH4gv .dropdown-item:hover,
.cid-u3sLSwH4gv .dropdown-item:focus {
  background: #999999 !important;
  color: white !important;
}
.cid-u3sLSwH4gv .dropdown-item:hover span {
  color: white;
}
.cid-u3sLSwH4gv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3sLSwH4gv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3sLSwH4gv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3sLSwH4gv .nav-link {
  position: relative;
}
.cid-u3sLSwH4gv .container {
  display: flex;
  margin: auto;
}
.cid-u3sLSwH4gv .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3sLSwH4gv .dropdown-menu,
.cid-u3sLSwH4gv .navbar.opened {
  background: #202020 !important;
}
.cid-u3sLSwH4gv .nav-item:focus,
.cid-u3sLSwH4gv .nav-link:focus {
  outline: none;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3sLSwH4gv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3sLSwH4gv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3sLSwH4gv .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-u3sLSwH4gv .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #202020;
  padding: 0 12px !important;
}
.cid-u3sLSwH4gv .navbar.opened {
  transition: all 0.3s;
}
.cid-u3sLSwH4gv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3sLSwH4gv .navbar .navbar-logo img {
  width: auto;
}
.cid-u3sLSwH4gv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-u3sLSwH4gv .navbar.collapsed {
  justify-content: center;
}
.cid-u3sLSwH4gv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3sLSwH4gv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3sLSwH4gv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3sLSwH4gv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3sLSwH4gv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3sLSwH4gv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3sLSwH4gv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3sLSwH4gv .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u3sLSwH4gv .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3sLSwH4gv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3sLSwH4gv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-u3sLSwH4gv .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-u3sLSwH4gv .navbar {
    padding: 0 50px !important;
  }
}
.cid-u3sLSwH4gv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
  display: none !important;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3sLSwH4gv .dropdown-item.active,
.cid-u3sLSwH4gv .dropdown-item:active {
  background-color: transparent;
}
.cid-u3sLSwH4gv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3sLSwH4gv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #202020;
}
.cid-u3sLSwH4gv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3sLSwH4gv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3sLSwH4gv ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-u3sLSwH4gv .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-u3sLSwH4gv .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-u3sLSwH4gv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3sLSwH4gv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar {
    height: 100px;
  }
  .cid-u3sLSwH4gv .navbar.opened {
    height: auto;
  }
  .cid-u3sLSwH4gv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3sLSwH4gv .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-u3sLSwH4gv .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u3sLSwH4gv .nav-link:before {
  content: '';
  position: absolute;
  color: #999999;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tvNBh8mNOM {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tvNBh8mNOM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvNBh8mNOM img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvNBh8mNOM .text-wrapper {
    padding: 2rem;
  }
}
.cid-tvNBh8mNOM .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tvNBh8mNOM .mbr-section-title {
  color: #000000;
}
.cid-twvOSP1AYB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-twvOSP1AYB .mbr-fallback-image.disabled {
  display: none;
}
.cid-twvOSP1AYB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twvOSP1AYB .mbr-title {
  margin-bottom: 30px;
  color: #000000;
}
@media (max-width: 575px) {
  .cid-twvOSP1AYB .mbr-title {
    margin-bottom: 10px;
  }
}
.cid-twvOSP1AYB .mbr-subtitle {
  padding-top: 20px;
  color: #353535;
}
.cid-twvOSP1AYB .mbr-text {
  padding-top: 30px;
  color: #747474;
}
.cid-twvOSP1AYB .mbr-section-btn {
  padding-top: 40px;
}
.cid-twvTJghGD4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-twvTJghGD4 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-twvTJghGD4 .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-twvTJghGD4 .mbr-text,
.cid-twvTJghGD4 .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-twvTJghGD4 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-twvTGzWvIM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-twvTGzWvIM .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-twvTGzWvIM .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-twvTGzWvIM .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-twvTGzWvIM .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-twvTGzWvIM .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-twvTGzWvIM .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-twvTGzWvIM .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-twvTGzWvIM .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-twvTGzWvIM .card-title {
  color: #000000;
}
.cid-twvTGzWvIM .mbr-text,
.cid-twvTGzWvIM .mbr-section-btn {
  color: #000000;
}
.cid-twvTFx7Sme {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-twvTFx7Sme .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-twvTFx7Sme .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-twvTFx7Sme .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-twvTFx7Sme .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-twvTFx7Sme .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-twvTFx7Sme .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-twvTFx7Sme .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-twvTFx7Sme .card-title {
  color: #000000;
}
.cid-tww0p2IgKM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tww0p2IgKM .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-tww0p2IgKM .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tww0p2IgKM .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tww0p2IgKM .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tww0p2IgKM .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tww0p2IgKM .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tww0p2IgKM .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tww0p2IgKM .card-title {
  color: #000000;
}
.cid-twvRY0IL0o {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-twvRY0IL0o .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-twvRY0IL0o img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-twvRY0IL0o .text-wrapper {
    padding: 2rem;
  }
}
.cid-twvRY0IL0o .mbr-section-title {
  color: #000000;
}
.cid-twvRY0IL0o .mbr-text {
  color: #000000;
}
.cid-tvNBhCeYGN {
  background-color: #ffffff;
}
.cid-tvNBhCeYGN .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tvNBhCeYGN .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tvNBhCeYGN .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tvNBhCeYGN .card-wrapper {
    padding: 4rem;
  }
}
.cid-tvNBhCeYGN .mbr-text,
.cid-tvNBhCeYGN .mbr-section-btn {
  color: #000000;
}
.cid-tvNBhCeYGN .card-title,
.cid-tvNBhCeYGN .card-box {
  text-align: left;
  color: #000000;
}
.cid-tvNBhSkVM5 {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tvNBhSkVM5 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tvNBhSkVM5 .row {
    flex-direction: column-reverse;
  }
  .cid-tvNBhSkVM5 .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-tvNBhSkVM5 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tvNBhSkVM5 .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-tvNBhSkVM5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvNBhSkVM5 .mbr-text,
.cid-tvNBhSkVM5 .mbr-section-btn {
  color: #212121;
}
.cid-tvNBhSkVM5 .card-title {
  color: #000000;
}
.cid-u3sLSwH4gv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u3sLSwH4gv nav.navbar {
  position: fixed;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3sLSwH4gv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3sLSwH4gv .dropdown-item:hover,
.cid-u3sLSwH4gv .dropdown-item:focus {
  background: #999999 !important;
  color: white !important;
}
.cid-u3sLSwH4gv .dropdown-item:hover span {
  color: white;
}
.cid-u3sLSwH4gv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3sLSwH4gv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3sLSwH4gv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3sLSwH4gv .nav-link {
  position: relative;
}
.cid-u3sLSwH4gv .container {
  display: flex;
  margin: auto;
}
.cid-u3sLSwH4gv .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3sLSwH4gv .dropdown-menu,
.cid-u3sLSwH4gv .navbar.opened {
  background: #202020 !important;
}
.cid-u3sLSwH4gv .nav-item:focus,
.cid-u3sLSwH4gv .nav-link:focus {
  outline: none;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3sLSwH4gv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3sLSwH4gv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3sLSwH4gv .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-u3sLSwH4gv .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #202020;
  padding: 0 12px !important;
}
.cid-u3sLSwH4gv .navbar.opened {
  transition: all 0.3s;
}
.cid-u3sLSwH4gv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3sLSwH4gv .navbar .navbar-logo img {
  width: auto;
}
.cid-u3sLSwH4gv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-u3sLSwH4gv .navbar.collapsed {
  justify-content: center;
}
.cid-u3sLSwH4gv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3sLSwH4gv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3sLSwH4gv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3sLSwH4gv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3sLSwH4gv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3sLSwH4gv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3sLSwH4gv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3sLSwH4gv .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u3sLSwH4gv .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3sLSwH4gv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3sLSwH4gv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-u3sLSwH4gv .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-u3sLSwH4gv .navbar {
    padding: 0 50px !important;
  }
}
.cid-u3sLSwH4gv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
  display: none !important;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3sLSwH4gv .dropdown-item.active,
.cid-u3sLSwH4gv .dropdown-item:active {
  background-color: transparent;
}
.cid-u3sLSwH4gv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3sLSwH4gv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #202020;
}
.cid-u3sLSwH4gv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3sLSwH4gv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3sLSwH4gv ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-u3sLSwH4gv .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-u3sLSwH4gv .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-u3sLSwH4gv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3sLSwH4gv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar {
    height: 100px;
  }
  .cid-u3sLSwH4gv .navbar.opened {
    height: auto;
  }
  .cid-u3sLSwH4gv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3sLSwH4gv .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-u3sLSwH4gv .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u3sLSwH4gv .nav-link:before {
  content: '';
  position: absolute;
  color: #999999;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tvNN41DVgr {
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-tvNN41DVgr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvNN41DVgr img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvNN41DVgr .text-wrapper {
    padding: 2rem;
  }
}
.cid-tvNN41DVgr .mbr-text {
  color: #353535;
  text-align: left;
}
.cid-tvNN41DVgr .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-twFpDOnObQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-twFpDOnObQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-twFpDOnObQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twFpDOnObQ .mbr-title {
  margin-bottom: 30px;
  color: #000000;
}
@media (max-width: 575px) {
  .cid-twFpDOnObQ .mbr-title {
    margin-bottom: 10px;
  }
}
.cid-twFpDOnObQ .mbr-subtitle {
  padding-top: 20px;
  color: #747474;
}
.cid-twFpDOnObQ .mbr-text {
  padding-top: 30px;
  color: #747474;
}
.cid-twFpDOnObQ .mbr-section-btn {
  padding-top: 40px;
}
.cid-tvNN5MfdSA {
  background-color: #fafafa;
}
.cid-tvNN5MfdSA .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tvNN5MfdSA .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tvNN5MfdSA .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tvNN5MfdSA .card-wrapper {
    padding: 4rem;
  }
}
.cid-tvNN5MfdSA .mbr-text,
.cid-tvNN5MfdSA .mbr-section-btn {
  color: #000000;
}
.cid-tvNN5MfdSA .card-title,
.cid-tvNN5MfdSA .card-box {
  text-align: left;
  color: #000000;
}
.cid-tvNN69oAtf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-tvNN69oAtf .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvNN69oAtf .row {
  flex-direction: row-reverse;
}
.cid-tvNN69oAtf img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvNN69oAtf .text-wrapper {
    padding: 2rem;
  }
}
.cid-twwhhYYZPc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-twwhhYYZPc .mbr-fallback-image.disabled {
  display: none;
}
.cid-twwhhYYZPc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twwhhYYZPc .row {
  justify-content: center;
}
.cid-twwhhYYZPc .item-wrap {
  z-index: 1;
}
.cid-twwhhYYZPc .image-wrapper {
  padding: 32px 16px;
}
@media (max-width: 992px) {
  .cid-twwhhYYZPc .image-wrapper {
    padding: 12px 0;
  }
}
.cid-twwhhYYZPc .image-wrapper img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-twwhhYYZPc .image-wrapper img {
    height: 200px;
  }
}
@media (max-width: 425px) {
  .cid-twwhhYYZPc .image-wrapper img {
    height: 150px;
  }
}
.cid-twvG0ZxtCY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-twvG0ZxtCY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-twvG0ZxtCY img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-twvG0ZxtCY .text-wrapper {
    padding: 2rem;
  }
}
.cid-twvG0ZxtCY .mbr-section-title {
  text-align: left;
  color: #353535;
}
.cid-twvG0ZxtCY .mbr-text {
  color: #353535;
}
.cid-twwc8NUhFH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-twwc8NUhFH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-twwc8NUhFH .row {
  flex-direction: row-reverse;
}
.cid-twwc8NUhFH img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-twwc8NUhFH .text-wrapper {
    padding: 2rem;
  }
}
.cid-twwjtLe9up {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #fafafa;
}
.cid-twwjtLe9up .row {
  align-items: stretch;
  justify-content: center;
}
.cid-twwjtLe9up .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-twwjtLe9up .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-twwjtLe9up P {
  color: #000000;
  margin-bottom: 0px;
  margin-top: 5px;
}
.cid-twwjtLe9up img {
  margin-top: 15px;
}
@media (max-width: 990px) {
  .cid-twwjtLe9up .top {
    margin-top: 0;
  }
}
@media (min-width: 990px) {
  .cid-twwjtLe9up .top,
  .cid-twwjtLe9up .top-2 {
    margin-top: 0;
  }
}
.cid-tvNN6uecoI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-tvNN6uecoI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvNN6uecoI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvNN6uecoI .text-wrapper {
    padding: 2rem;
  }
}
.cid-tvNN6uecoI .mbr-section-title {
  text-align: left;
  color: #353535;
}
.cid-tvNN6uecoI .mbr-text {
  color: #353535;
}
.cid-tvNN80GZ3q {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tvNN80GZ3q .mbr-media {
  position: relative;
}
.cid-tvNN80GZ3q .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tvNN80GZ3q .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tvNN80GZ3q .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tvNN80GZ3q .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tvNN80GZ3q .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tvNN80GZ3q .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tvNN80GZ3q .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tvNN80GZ3q .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tvNN80GZ3q .mbr-section-title {
  color: #353535;
  text-align: left;
}
.cid-u3sLSwH4gv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u3sLSwH4gv nav.navbar {
  position: fixed;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3sLSwH4gv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3sLSwH4gv .dropdown-item:hover,
.cid-u3sLSwH4gv .dropdown-item:focus {
  background: #999999 !important;
  color: white !important;
}
.cid-u3sLSwH4gv .dropdown-item:hover span {
  color: white;
}
.cid-u3sLSwH4gv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3sLSwH4gv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3sLSwH4gv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3sLSwH4gv .nav-link {
  position: relative;
}
.cid-u3sLSwH4gv .container {
  display: flex;
  margin: auto;
}
.cid-u3sLSwH4gv .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3sLSwH4gv .dropdown-menu,
.cid-u3sLSwH4gv .navbar.opened {
  background: #202020 !important;
}
.cid-u3sLSwH4gv .nav-item:focus,
.cid-u3sLSwH4gv .nav-link:focus {
  outline: none;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3sLSwH4gv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3sLSwH4gv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3sLSwH4gv .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-u3sLSwH4gv .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #202020;
  padding: 0 12px !important;
}
.cid-u3sLSwH4gv .navbar.opened {
  transition: all 0.3s;
}
.cid-u3sLSwH4gv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3sLSwH4gv .navbar .navbar-logo img {
  width: auto;
}
.cid-u3sLSwH4gv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-u3sLSwH4gv .navbar.collapsed {
  justify-content: center;
}
.cid-u3sLSwH4gv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3sLSwH4gv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3sLSwH4gv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3sLSwH4gv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3sLSwH4gv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3sLSwH4gv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3sLSwH4gv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3sLSwH4gv .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u3sLSwH4gv .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3sLSwH4gv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3sLSwH4gv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-u3sLSwH4gv .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-u3sLSwH4gv .navbar {
    padding: 0 50px !important;
  }
}
.cid-u3sLSwH4gv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
  display: none !important;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3sLSwH4gv .dropdown-item.active,
.cid-u3sLSwH4gv .dropdown-item:active {
  background-color: transparent;
}
.cid-u3sLSwH4gv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3sLSwH4gv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #202020;
}
.cid-u3sLSwH4gv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3sLSwH4gv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3sLSwH4gv ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-u3sLSwH4gv .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-u3sLSwH4gv .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-u3sLSwH4gv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3sLSwH4gv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar {
    height: 100px;
  }
  .cid-u3sLSwH4gv .navbar.opened {
    height: auto;
  }
  .cid-u3sLSwH4gv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3sLSwH4gv .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-u3sLSwH4gv .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u3sLSwH4gv .nav-link:before {
  content: '';
  position: absolute;
  color: #999999;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tvNQo58SHR {
  background-image: url("../../../assets/images/oi6ddc.jpg");
}
@media (max-width: 991px) {
  .cid-tvNQo58SHR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvNQo58SHR .row {
  flex-direction: row-reverse;
}
.cid-tvNQo58SHR img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvNQo58SHR .text-wrapper {
    padding: 2rem;
  }
}
.cid-tvNQo58SHR .mbr-text {
  color: #fafafa;
}
.cid-tvNQo58SHR .mbr-section-title {
  color: #fafafa;
}
.cid-twzapkaTOq {
  background-image: url("../../../assets/images/oi6ddc.jpg");
}
@media (max-width: 991px) {
  .cid-twzapkaTOq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-twzapkaTOq .row {
  flex-direction: row-reverse;
}
.cid-twzapkaTOq img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-twzapkaTOq .text-wrapper {
    padding: 2rem;
  }
}
.cid-twzapkaTOq .mbr-text {
  color: #fafafa;
}
.cid-twzapkaTOq .mbr-section-title {
  color: #fafafa;
}
.cid-twz7Bh5E0k {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/oi6ddc.jpg");
}
.cid-twz7Bh5E0k .mbr-fallback-image.disabled {
  display: none;
}
.cid-twz7Bh5E0k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twz7Bh5E0k .main-wrap {
  display: grid;
  max-width: 100%;
  grid-auto-columns: 1fr;
  grid-column-gap: 100px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-twz7Bh5E0k .main-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }
}
.cid-twz7Bh5E0k .card-col {
  display: flex;
  height: 100%;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-twz7Bh5E0k .card-col {
    padding: 20px 0 0;
  }
}
.cid-twz7Bh5E0k .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cid-twz7Bh5E0k .card-wrapper {
    margin: 0 auto 0 0;
    max-width: 70%;
  }
}
@media (max-width: 575px) {
  .cid-twz7Bh5E0k .card-wrapper {
    max-width: 100%;
  }
}
.cid-twz7Bh5E0k .card-title {
  padding-bottom: 10px;
  color: #ffffff;
}
.cid-twz7Bh5E0k .mbr-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #747474;
}
.cid-twz7Bh5E0k .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-twz7Bh5E0k .image-wrapper {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .cid-twz7Bh5E0k .image-wrapper {
    max-width: 100%;
  }
}
.cid-twz7Bh5E0k .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-twz7Bh5E0k .mbr-text,
.cid-twz7Bh5E0k .mbr-section-btn {
  color: #ffffff;
}
.cid-twzbIk4T7F {
  background-image: url("../../../assets/images/oi6ddc.jpg");
}
@media (max-width: 991px) {
  .cid-twzbIk4T7F .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-twzbIk4T7F .row {
  flex-direction: row-reverse;
}
.cid-twzbIk4T7F img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-twzbIk4T7F .text-wrapper {
    padding: 2rem;
  }
}
.cid-twzbIk4T7F .mbr-text {
  color: #fafafa;
}
.cid-twzbIk4T7F .mbr-section-title {
  color: #fafafa;
}
.cid-tvNQoIEfRs {
  background-image: url("../../../assets/images/oi6ddc.jpg");
}
@media (max-width: 991px) {
  .cid-tvNQoIEfRs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvNQoIEfRs img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvNQoIEfRs .text-wrapper {
    padding: 2rem;
  }
}
.cid-tvNQoIEfRs .mbr-section-title {
  color: #fafafa;
}
.cid-tvNQoIEfRs .mbr-text {
  color: #fafafa;
}
.cid-tvNQp7oPiS {
  background-image: url("../../../assets/images/oi6ddc.jpg");
}
@media (max-width: 991px) {
  .cid-tvNQp7oPiS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvNQp7oPiS .row {
  flex-direction: row-reverse;
}
.cid-tvNQp7oPiS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvNQp7oPiS .text-wrapper {
    padding: 2rem;
  }
}
.cid-tvNQp7oPiS .mbr-text {
  color: #fafafa;
}
.cid-tvNQp7oPiS .mbr-section-title {
  color: #fafafa;
}
.cid-tvNQop26LH {
  background-image: url("../../../assets/images/oi6ddc.jpg");
}
.cid-tvNQop26LH .mbr-section-title {
  text-align: left;
  color: #fafafa;
}
.cid-tvNQop26LH .mbr-section-subtitle {
  color: #fafafa;
  text-align: left;
}
.cid-tvNQq0zskU {
  background-image: url("../../../assets/images/oi6ddc.jpg");
}
.cid-tvNQq0zskU .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tvNQq0zskU .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tvNQq0zskU .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tvNQq0zskU .mbr-section-title {
  color: #ffffff;
}
.cid-tvNQq0zskU .mbr-text,
.cid-tvNQq0zskU .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-u3sLSwH4gv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u3sLSwH4gv nav.navbar {
  position: fixed;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3sLSwH4gv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3sLSwH4gv .dropdown-item:hover,
.cid-u3sLSwH4gv .dropdown-item:focus {
  background: #999999 !important;
  color: white !important;
}
.cid-u3sLSwH4gv .dropdown-item:hover span {
  color: white;
}
.cid-u3sLSwH4gv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3sLSwH4gv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3sLSwH4gv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3sLSwH4gv .nav-link {
  position: relative;
}
.cid-u3sLSwH4gv .container {
  display: flex;
  margin: auto;
}
.cid-u3sLSwH4gv .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3sLSwH4gv .dropdown-menu,
.cid-u3sLSwH4gv .navbar.opened {
  background: #202020 !important;
}
.cid-u3sLSwH4gv .nav-item:focus,
.cid-u3sLSwH4gv .nav-link:focus {
  outline: none;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3sLSwH4gv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3sLSwH4gv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3sLSwH4gv .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-u3sLSwH4gv .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #202020;
  padding: 0 12px !important;
}
.cid-u3sLSwH4gv .navbar.opened {
  transition: all 0.3s;
}
.cid-u3sLSwH4gv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3sLSwH4gv .navbar .navbar-logo img {
  width: auto;
}
.cid-u3sLSwH4gv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-u3sLSwH4gv .navbar.collapsed {
  justify-content: center;
}
.cid-u3sLSwH4gv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3sLSwH4gv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3sLSwH4gv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3sLSwH4gv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3sLSwH4gv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3sLSwH4gv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3sLSwH4gv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3sLSwH4gv .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u3sLSwH4gv .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3sLSwH4gv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3sLSwH4gv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-u3sLSwH4gv .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-u3sLSwH4gv .navbar {
    padding: 0 50px !important;
  }
}
.cid-u3sLSwH4gv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
  display: none !important;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3sLSwH4gv .dropdown-item.active,
.cid-u3sLSwH4gv .dropdown-item:active {
  background-color: transparent;
}
.cid-u3sLSwH4gv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3sLSwH4gv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #202020;
}
.cid-u3sLSwH4gv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3sLSwH4gv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3sLSwH4gv ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-u3sLSwH4gv .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-u3sLSwH4gv .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-u3sLSwH4gv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3sLSwH4gv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar {
    height: 100px;
  }
  .cid-u3sLSwH4gv .navbar.opened {
    height: auto;
  }
  .cid-u3sLSwH4gv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3sLSwH4gv .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-u3sLSwH4gv .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u3sLSwH4gv .nav-link:before {
  content: '';
  position: absolute;
  color: #999999;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-twziY3LId2 {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #fafafa;
}
.cid-twziY3LId2 H2 {
  color: #353535;
}
.cid-twziY3LId2 .mbr-text,
.cid-twziY3LId2 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-twziY3LId2 img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-twziY3LId2 img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-twziY3LId2 H1 {
  color: #000000;
}
.cid-twziY3LId2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-twziY3LId2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twzjEgref8 {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-twzjEgref8 {
    height: auto;
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 18px;
  }
}
.cid-twzjEgref8 .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-twzjEgref8 h1 {
  color: #ffffff;
}
.cid-twzjEgref8 h2 {
  color: #ffffff;
}
.cid-twzjEgref8 a {
  color: #ffffff;
}
.cid-twzjEgref8 .btn-line::after {
  background-color: #ffffff;
}
.cid-twzjEgref8 .animated-element {
  color: #efefef;
}
.cid-twzjEgref8 .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-twzjEgref8 .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-twzjEgref8 .container-fluid {
    padding: 0 1rem;
  }
  .cid-twzjEgref8 .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-twzjEgref8 .mbr-white {
    padding-left: 6rem;
  }
  .cid-twzjEgref8 .container-fluid {
    padding: 0 2rem;
  }
}
.cid-twzjEgref8 .container-fluid {
  max-width: 1300px;
}
.cid-twzjEgref8 .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-twzjEgref8 .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-twzjEgref8 .btn-line {
  margin-top: 3rem;
}
.cid-twzjEgref8 .mbr-section-subtitle,
.cid-twzjEgref8 .mbr-section-btn {
  color: #000000;
}
.cid-tvNTvs2r9r {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-tvNTvs2r9r .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvNTvs2r9r img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvNTvs2r9r .text-wrapper {
    padding: 2rem;
  }
}
.cid-tvNTvs2r9r .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tvNTvs2r9r .mbr-text {
  color: #000000;
}
.cid-tvNSIvpdls {
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-tvNSIvpdls .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvNSIvpdls .row {
  flex-direction: row-reverse;
}
.cid-tvNSIvpdls img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvNSIvpdls .text-wrapper {
    padding: 2rem;
  }
}
.cid-tvNSISHpBL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-tvNSISHpBL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvNSISHpBL img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvNSISHpBL .text-wrapper {
    padding: 2rem;
  }
}
.cid-tvNSISHpBL .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tvNSISHpBL .mbr-text {
  color: #353535;
}
.cid-tvNVzQ4rFX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-tvNVzQ4rFX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvNVzQ4rFX img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvNVzQ4rFX .text-wrapper {
    padding: 2rem;
  }
}
.cid-tvNVzQ4rFX .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tvNVzQ4rFX .mbr-text {
  color: #000000;
}
.cid-tvNW3igAaJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-tvNW3igAaJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvNW3igAaJ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvNW3igAaJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-tvNW3igAaJ .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tvNW3igAaJ .mbr-text {
  color: #000000;
}
.cid-tvNT3ztk5O {
  background-color: #fafafa;
}
.cid-tvNT3ztk5O .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tvNT3ztk5O .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tvNT3ztk5O .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tvNT3ztk5O .card-wrapper {
    padding: 4rem;
  }
}
.cid-tvNT3ztk5O .mbr-text,
.cid-tvNT3ztk5O .mbr-section-btn {
  color: #000000;
}
.cid-tvNT3ztk5O .card-title,
.cid-tvNT3ztk5O .card-box {
  text-align: left;
  color: #000000;
}
.cid-tvNWGQdP8l {
  background-color: #fafafa;
}
.cid-tvNWGQdP8l .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tvNWGQdP8l .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tvNWGQdP8l .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tvNWGQdP8l .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tvNWGQdP8l .mbr-text,
.cid-tvNWGQdP8l .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-u3sLSwH4gv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u3sLSwH4gv nav.navbar {
  position: fixed;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3sLSwH4gv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3sLSwH4gv .dropdown-item:hover,
.cid-u3sLSwH4gv .dropdown-item:focus {
  background: #999999 !important;
  color: white !important;
}
.cid-u3sLSwH4gv .dropdown-item:hover span {
  color: white;
}
.cid-u3sLSwH4gv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3sLSwH4gv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3sLSwH4gv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3sLSwH4gv .nav-link {
  position: relative;
}
.cid-u3sLSwH4gv .container {
  display: flex;
  margin: auto;
}
.cid-u3sLSwH4gv .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3sLSwH4gv .dropdown-menu,
.cid-u3sLSwH4gv .navbar.opened {
  background: #202020 !important;
}
.cid-u3sLSwH4gv .nav-item:focus,
.cid-u3sLSwH4gv .nav-link:focus {
  outline: none;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3sLSwH4gv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3sLSwH4gv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3sLSwH4gv .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-u3sLSwH4gv .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #202020;
  padding: 0 12px !important;
}
.cid-u3sLSwH4gv .navbar.opened {
  transition: all 0.3s;
}
.cid-u3sLSwH4gv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3sLSwH4gv .navbar .navbar-logo img {
  width: auto;
}
.cid-u3sLSwH4gv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-u3sLSwH4gv .navbar.collapsed {
  justify-content: center;
}
.cid-u3sLSwH4gv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3sLSwH4gv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3sLSwH4gv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3sLSwH4gv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3sLSwH4gv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3sLSwH4gv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3sLSwH4gv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3sLSwH4gv .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u3sLSwH4gv .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3sLSwH4gv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3sLSwH4gv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-u3sLSwH4gv .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-u3sLSwH4gv .navbar {
    padding: 0 50px !important;
  }
}
.cid-u3sLSwH4gv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
  display: none !important;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3sLSwH4gv .dropdown-item.active,
.cid-u3sLSwH4gv .dropdown-item:active {
  background-color: transparent;
}
.cid-u3sLSwH4gv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3sLSwH4gv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #202020;
}
.cid-u3sLSwH4gv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3sLSwH4gv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3sLSwH4gv ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-u3sLSwH4gv .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-u3sLSwH4gv .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-u3sLSwH4gv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3sLSwH4gv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar {
    height: 100px;
  }
  .cid-u3sLSwH4gv .navbar.opened {
    height: auto;
  }
  .cid-u3sLSwH4gv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3sLSwH4gv .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-u3sLSwH4gv .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u3sLSwH4gv .nav-link:before {
  content: '';
  position: absolute;
  color: #999999;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tvNd15g4ai {
  background-color: #202020;
}
.cid-tvNd15g4ai .mbr-text,
.cid-tvNd15g4ai .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-tvNd15g4ai .mbr-text {
  max-width: 800px;
  padding: 0 4rem;
}
@media (max-width: 767px) {
  .cid-tvNd15g4ai .mbr-text {
    padding: 0;
  }
}
.cid-tvNd15g4ai .mbr-section-btn {
  padding: 0 4rem;
  padding-bottom: 8rem;
}
@media (max-width: 767px) {
  .cid-tvNd15g4ai .mbr-section-btn {
    padding: 0;
    padding-bottom: 8rem;
  }
}
.cid-tvNd15g4ai .mbr-section-subtitle {
  color: #121212;
}
.cid-tvNd15g4ai .mbr-iconfont {
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s;
}
.cid-tvNd15g4ai .icons-wrapper {
  position: absolute;
  display: flex;
  bottom: 4rem;
  width: fit-content;
  left: 4rem;
}
@media (max-width: 767px) {
  .cid-tvNd15g4ai .icons-wrapper {
    right: 50%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.cid-tvNd15g4ai .icon-wrapper {
  position: relative;
  width: 35px;
  cursor: pointer;
  margin: 0 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
}
.cid-tvNd15g4ai .icon-wrapper:hover .mbr-iconfont {
  color: #999999;
}
.cid-tvNd15g4ai .mbr-section-title {
  color: #ffffff;
}
.cid-tvNz7uAHLD {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tvNz7uAHLD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvNz7uAHLD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvNz7uAHLD .card-wrapper {
  width: 100%;
}
.cid-tvNz7uAHLD .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tvNz7uAHLD .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-tvNz7uAHLD .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-tvNz7uAHLD .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tvNz7uAHLD .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-tvNz7uAHLD .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #121212;
}
.cid-tvNz7uAHLD .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-tvNz7uAHLD .text-wrap {
    padding: 8px 16px;
  }
}
.cid-tvNz7uAHLD .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-tvNz7uAHLD .card-title {
    text-align: center !important;
  }
}
.cid-tvNz7uAHLD .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tvNz7uAHLD .card-text {
    text-align: center !important;
  }
}
.cid-u4kT8XxUIy {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: #ffffff;
}
.cid-u4kT8XxUIy .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-u4kT8XxUIy .team-card:hover {
  transform: translateY(-10px);
}
.cid-u4kT8XxUIy .container {
  max-width: 1500px;
}
.cid-u4kT8XxUIy .card2 {
  margin-top: 3rem;
}
.cid-u4kT8XxUIy img {
  transition: all 0.3s;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-u4kT8XxUIy h5 {
  margin-bottom: 0.2rem;
}
.cid-u4kT8XxUIy .image-wrap {
  transition: all 0.3s;
  overflow: hidden;
  height: 500px;
}
.cid-u4kT8XxUIy .mbr-role {
  transition: all 0.3s;
}
.cid-u4kT8XxUIy .card-wrap {
  padding: 2rem;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-u4kT8XxUIy .card-wrap {
    margin-bottom: 2rem;
  }
}
@media (max-width: 1400px) {
  .cid-u4kT8XxUIy .card-wrap {
    padding: 0rem;
  }
}
.cid-u4kT8XxUIy .card-wrap .image-wrap img {
  width: 100%;
}
.cid-u4kT8XxUIy .card-wrap .content-wrap {
  padding-top: 2rem;
  transition: all 0.3s;
}
.cid-u4kT8XxUIy .card-wrap:hover img {
  transform: scale(1.2);
}
.cid-u4kT8XxUIy .card-wrap:hover .image-wrap {
  transform: scale(0.95);
}
.cid-u4kT8XxUIy .card-wrap:hover .content-wrap {
  padding-left: 1.5rem;
}
.cid-u4kT8XxUIy .card-wrap:hover .mbr-role {
  color: #999999;
}
.cid-u4kT8XxUIy .mbr-role,
.cid-u4kT8XxUIy .social-row {
  color: #121212;
}
.cid-u4kT8XxUIy .mbr-section-subtitle {
  color: #707070;
  font-weight: 600;
}
.cid-u4kT8XxUIy .card-title,
.cid-u4kT8XxUIy .social-row {
  color: #353535;
}
.cid-u4kT8XxUIy .mbr-section-text {
  color: #707070;
}
@media (max-width: 767px) {
  .cid-u4kT8XxUIy .card-wrap .content-wrap {
    padding-left: 0rem!important;
  }
}
.cid-tvNeNE2de1 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: #ffffff;
}
.cid-tvNeNE2de1 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tvNeNE2de1 .team-card:hover {
  transform: translateY(-10px);
}
.cid-tvNeNE2de1 .container {
  max-width: 1500px;
}
.cid-tvNeNE2de1 .card2 {
  margin-top: 3rem;
}
.cid-tvNeNE2de1 img {
  transition: all 0.3s;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-tvNeNE2de1 h5 {
  margin-bottom: 0.2rem;
}
.cid-tvNeNE2de1 .image-wrap {
  transition: all 0.3s;
  overflow: hidden;
  height: 500px;
}
.cid-tvNeNE2de1 .mbr-role {
  transition: all 0.3s;
}
.cid-tvNeNE2de1 .card-wrap {
  padding: 2rem;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-tvNeNE2de1 .card-wrap {
    margin-bottom: 2rem;
  }
}
@media (max-width: 1400px) {
  .cid-tvNeNE2de1 .card-wrap {
    padding: 0rem;
  }
}
.cid-tvNeNE2de1 .card-wrap .image-wrap img {
  width: 100%;
}
.cid-tvNeNE2de1 .card-wrap .content-wrap {
  padding-top: 2rem;
  transition: all 0.3s;
}
.cid-tvNeNE2de1 .card-wrap:hover img {
  transform: scale(1.2);
}
.cid-tvNeNE2de1 .card-wrap:hover .image-wrap {
  transform: scale(0.95);
}
.cid-tvNeNE2de1 .card-wrap:hover .content-wrap {
  padding-left: 1.5rem;
}
.cid-tvNeNE2de1 .card-wrap:hover .mbr-role {
  color: #999999;
}
.cid-tvNeNE2de1 .mbr-role,
.cid-tvNeNE2de1 .social-row {
  color: #121212;
}
.cid-tvNeNE2de1 .mbr-section-subtitle {
  color: #707070;
  font-weight: 600;
}
.cid-tvNeNE2de1 .card-title,
.cid-tvNeNE2de1 .social-row {
  color: #353535;
}
.cid-tvNeNE2de1 .mbr-section-text {
  color: #707070;
}
@media (max-width: 767px) {
  .cid-tvNeNE2de1 .card-wrap .content-wrap {
    padding-left: 0rem!important;
  }
}
.cid-uwqu29qiyg {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: #ffffff;
}
.cid-uwqu29qiyg .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uwqu29qiyg .team-card:hover {
  transform: translateY(-10px);
}
.cid-uwqu29qiyg .container {
  max-width: 1500px;
}
.cid-uwqu29qiyg .card2 {
  margin-top: 3rem;
}
.cid-uwqu29qiyg img {
  transition: all 0.3s;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-uwqu29qiyg h5 {
  margin-bottom: 0.2rem;
}
.cid-uwqu29qiyg .image-wrap {
  transition: all 0.3s;
  overflow: hidden;
  height: 500px;
}
.cid-uwqu29qiyg .mbr-role {
  transition: all 0.3s;
}
.cid-uwqu29qiyg .card-wrap {
  padding: 2rem;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uwqu29qiyg .card-wrap {
    margin-bottom: 2rem;
  }
}
@media (max-width: 1400px) {
  .cid-uwqu29qiyg .card-wrap {
    padding: 0rem;
  }
}
.cid-uwqu29qiyg .card-wrap .image-wrap img {
  width: 100%;
}
.cid-uwqu29qiyg .card-wrap .content-wrap {
  padding-top: 2rem;
  transition: all 0.3s;
}
.cid-uwqu29qiyg .card-wrap:hover img {
  transform: scale(1.2);
}
.cid-uwqu29qiyg .card-wrap:hover .image-wrap {
  transform: scale(0.95);
}
.cid-uwqu29qiyg .card-wrap:hover .content-wrap {
  padding-left: 1.5rem;
}
.cid-uwqu29qiyg .card-wrap:hover .mbr-role {
  color: #999999;
}
.cid-uwqu29qiyg .mbr-role,
.cid-uwqu29qiyg .social-row {
  color: #121212;
}
.cid-uwqu29qiyg .mbr-section-subtitle {
  color: #707070;
  font-weight: 600;
}
.cid-uwqu29qiyg .card-title,
.cid-uwqu29qiyg .social-row {
  color: #353535;
}
.cid-uwqu29qiyg .mbr-section-text {
  color: #707070;
}
@media (max-width: 767px) {
  .cid-uwqu29qiyg .card-wrap .content-wrap {
    padding-left: 0rem!important;
  }
}
.cid-u3sLSwH4gv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u3sLSwH4gv nav.navbar {
  position: fixed;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3sLSwH4gv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3sLSwH4gv .dropdown-item:hover,
.cid-u3sLSwH4gv .dropdown-item:focus {
  background: #999999 !important;
  color: white !important;
}
.cid-u3sLSwH4gv .dropdown-item:hover span {
  color: white;
}
.cid-u3sLSwH4gv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3sLSwH4gv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3sLSwH4gv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3sLSwH4gv .nav-link {
  position: relative;
}
.cid-u3sLSwH4gv .container {
  display: flex;
  margin: auto;
}
.cid-u3sLSwH4gv .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3sLSwH4gv .dropdown-menu,
.cid-u3sLSwH4gv .navbar.opened {
  background: #202020 !important;
}
.cid-u3sLSwH4gv .nav-item:focus,
.cid-u3sLSwH4gv .nav-link:focus {
  outline: none;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3sLSwH4gv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3sLSwH4gv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3sLSwH4gv .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-u3sLSwH4gv .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #202020;
  padding: 0 12px !important;
}
.cid-u3sLSwH4gv .navbar.opened {
  transition: all 0.3s;
}
.cid-u3sLSwH4gv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3sLSwH4gv .navbar .navbar-logo img {
  width: auto;
}
.cid-u3sLSwH4gv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-u3sLSwH4gv .navbar.collapsed {
  justify-content: center;
}
.cid-u3sLSwH4gv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3sLSwH4gv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3sLSwH4gv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3sLSwH4gv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3sLSwH4gv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3sLSwH4gv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3sLSwH4gv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3sLSwH4gv .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u3sLSwH4gv .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3sLSwH4gv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3sLSwH4gv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-u3sLSwH4gv .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-u3sLSwH4gv .navbar {
    padding: 0 50px !important;
  }
}
.cid-u3sLSwH4gv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
  display: none !important;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3sLSwH4gv .dropdown-item.active,
.cid-u3sLSwH4gv .dropdown-item:active {
  background-color: transparent;
}
.cid-u3sLSwH4gv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3sLSwH4gv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #202020;
}
.cid-u3sLSwH4gv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3sLSwH4gv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3sLSwH4gv ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-u3sLSwH4gv .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-u3sLSwH4gv .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-u3sLSwH4gv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3sLSwH4gv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar {
    height: 100px;
  }
  .cid-u3sLSwH4gv .navbar.opened {
    height: auto;
  }
  .cid-u3sLSwH4gv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3sLSwH4gv .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-u3sLSwH4gv .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u3sLSwH4gv .nav-link:before {
  content: '';
  position: absolute;
  color: #999999;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-twBTKQeTto {
  background-color: #202020;
}
.cid-twBTKQeTto .mbr-fallback-image.disabled {
  display: none;
}
.cid-twBTKQeTto .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twBTKQeTto .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 75px;
  grid-row-gap: 75px;
  -ms-grid-columns: 1fr 0.5fr;
  grid-template-columns: 1fr 0.5fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  align-items: flex-end;
}
@media (max-width: 1259px) {
  .cid-twBTKQeTto .content-container {
    grid-template-columns: 1fr 0.25fr;
  }
}
@media (max-width: 991px) {
  .cid-twBTKQeTto .content-container {
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }
}
.cid-twBTKQeTto .mbr-section-title {
  color: #bbbbbb;
}
.cid-twBTKQeTto .mbr-section-subtitle {
  color: #8f8f8f;
  padding: 16px 0;
  font-weight: 400;
}
.cid-twBTKQeTto .mbr-section-subtitle b {
  font-weight: 700;
}
@media (max-width: 575px) {
  .cid-twBTKQeTto .mbr-section-subtitle {
    padding: 4px 0;
  }
}
.cid-twBTKQeTto .item-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding-top: 60px;
}
@media (max-width: 991px) {
  .cid-twBTKQeTto .item-right {
    padding-top: 0;
  }
}
.cid-twBTKQeTto .mbr-text {
  margin-bottom: 10px;
  color: #747474;
}
.cid-twBTKQeTto .mbr-section-btn {
  margin-top: 30px;
}
.cid-twBTKQeTto .mbr-section-btn .btn {
  min-width: 50px;
}
.cid-twBWNQimXJ {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-twBWNQimXJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-twBWNQimXJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twBWNQimXJ .card-wrapper {
  width: 100%;
}
.cid-twBWNQimXJ .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-twBWNQimXJ .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-twBWNQimXJ .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-twBWNQimXJ .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-twBWNQimXJ .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-twBWNQimXJ .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #121212;
}
.cid-twBWNQimXJ .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-twBWNQimXJ .text-wrap {
    padding: 8px 16px;
  }
}
.cid-twBWNQimXJ .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-twBWNQimXJ .card-title {
    text-align: center !important;
  }
}
.cid-twBWNQimXJ .card-text {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-twBWNQimXJ .card-text {
    text-align: center !important;
  }
}
.cid-twBWPbeYGA {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: #ffffff;
}
.cid-twBWPbeYGA .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-twBWPbeYGA .team-card:hover {
  transform: translateY(-10px);
}
.cid-twBWPbeYGA .container {
  max-width: 1500px;
}
.cid-twBWPbeYGA .card2 {
  margin-top: 3rem;
}
.cid-twBWPbeYGA img {
  transition: all 0.3s;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-twBWPbeYGA h5 {
  margin-bottom: 0.2rem;
}
.cid-twBWPbeYGA .image-wrap {
  transition: all 0.3s;
  overflow: hidden;
  height: 500px;
}
.cid-twBWPbeYGA .mbr-role {
  transition: all 0.3s;
}
.cid-twBWPbeYGA .card-wrap {
  padding: 2rem;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-twBWPbeYGA .card-wrap {
    margin-bottom: 2rem;
  }
}
@media (max-width: 1400px) {
  .cid-twBWPbeYGA .card-wrap {
    padding: 0rem;
  }
}
.cid-twBWPbeYGA .card-wrap .image-wrap img {
  width: 100%;
}
.cid-twBWPbeYGA .card-wrap .content-wrap {
  padding-top: 2rem;
  transition: all 0.3s;
}
.cid-twBWPbeYGA .card-wrap:hover img {
  transform: scale(1.2);
}
.cid-twBWPbeYGA .card-wrap:hover .image-wrap {
  transform: scale(0.95);
}
.cid-twBWPbeYGA .card-wrap:hover .content-wrap {
  padding-left: 1.5rem;
}
.cid-twBWPbeYGA .card-wrap:hover .mbr-role {
  color: #999999;
}
.cid-twBWPbeYGA .mbr-role,
.cid-twBWPbeYGA .social-row {
  color: #121212;
}
.cid-twBWPbeYGA .mbr-section-subtitle {
  color: #707070;
  font-weight: 600;
}
.cid-twBWPbeYGA .card-title,
.cid-twBWPbeYGA .social-row {
  color: #353535;
}
.cid-twBWPbeYGA .mbr-section-text {
  color: #707070;
}
@media (max-width: 767px) {
  .cid-twBWPbeYGA .card-wrap .content-wrap {
    padding-left: 0rem!important;
  }
}
.cid-twBWPNr5hD {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background: #ffffff;
}
.cid-twBWPNr5hD .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-twBWPNr5hD .team-card:hover {
  transform: translateY(-10px);
}
.cid-twBWPNr5hD .container {
  max-width: 1500px;
}
.cid-twBWPNr5hD .card2 {
  margin-top: 3rem;
}
.cid-twBWPNr5hD img {
  transition: all 0.3s;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-twBWPNr5hD h5 {
  margin-bottom: 0.2rem;
}
.cid-twBWPNr5hD .image-wrap {
  transition: all 0.3s;
  overflow: hidden;
  height: 500px;
}
.cid-twBWPNr5hD .mbr-role {
  transition: all 0.3s;
}
.cid-twBWPNr5hD .card-wrap {
  padding: 2rem;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-twBWPNr5hD .card-wrap {
    margin-bottom: 2rem;
  }
}
@media (max-width: 1400px) {
  .cid-twBWPNr5hD .card-wrap {
    padding: 0rem;
  }
}
.cid-twBWPNr5hD .card-wrap .image-wrap img {
  width: 100%;
}
.cid-twBWPNr5hD .card-wrap .content-wrap {
  padding-top: 2rem;
  transition: all 0.3s;
}
.cid-twBWPNr5hD .card-wrap:hover img {
  transform: scale(1.2);
}
.cid-twBWPNr5hD .card-wrap:hover .image-wrap {
  transform: scale(0.95);
}
.cid-twBWPNr5hD .card-wrap:hover .content-wrap {
  padding-left: 1.5rem;
}
.cid-twBWPNr5hD .card-wrap:hover .mbr-role {
  color: #999999;
}
.cid-twBWPNr5hD .mbr-role,
.cid-twBWPNr5hD .social-row {
  color: #121212;
}
.cid-twBWPNr5hD .mbr-section-subtitle {
  color: #707070;
  font-weight: 600;
}
.cid-twBWPNr5hD .card-title,
.cid-twBWPNr5hD .social-row {
  color: #353535;
}
.cid-twBWPNr5hD .mbr-section-text {
  color: #707070;
}
@media (max-width: 767px) {
  .cid-twBWPNr5hD .card-wrap .content-wrap {
    padding-left: 0rem!important;
  }
}
.cid-u3sLSwH4gv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u3sLSwH4gv nav.navbar {
  position: fixed;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3sLSwH4gv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3sLSwH4gv .dropdown-item:hover,
.cid-u3sLSwH4gv .dropdown-item:focus {
  background: #999999 !important;
  color: white !important;
}
.cid-u3sLSwH4gv .dropdown-item:hover span {
  color: white;
}
.cid-u3sLSwH4gv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3sLSwH4gv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3sLSwH4gv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3sLSwH4gv .nav-link {
  position: relative;
}
.cid-u3sLSwH4gv .container {
  display: flex;
  margin: auto;
}
.cid-u3sLSwH4gv .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3sLSwH4gv .dropdown-menu,
.cid-u3sLSwH4gv .navbar.opened {
  background: #202020 !important;
}
.cid-u3sLSwH4gv .nav-item:focus,
.cid-u3sLSwH4gv .nav-link:focus {
  outline: none;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3sLSwH4gv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3sLSwH4gv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3sLSwH4gv .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-u3sLSwH4gv .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #202020;
  padding: 0 12px !important;
}
.cid-u3sLSwH4gv .navbar.opened {
  transition: all 0.3s;
}
.cid-u3sLSwH4gv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3sLSwH4gv .navbar .navbar-logo img {
  width: auto;
}
.cid-u3sLSwH4gv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-u3sLSwH4gv .navbar.collapsed {
  justify-content: center;
}
.cid-u3sLSwH4gv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3sLSwH4gv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3sLSwH4gv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3sLSwH4gv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3sLSwH4gv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3sLSwH4gv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3sLSwH4gv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3sLSwH4gv .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u3sLSwH4gv .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3sLSwH4gv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3sLSwH4gv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-u3sLSwH4gv .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-u3sLSwH4gv .navbar {
    padding: 0 50px !important;
  }
}
.cid-u3sLSwH4gv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
  display: none !important;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3sLSwH4gv .dropdown-item.active,
.cid-u3sLSwH4gv .dropdown-item:active {
  background-color: transparent;
}
.cid-u3sLSwH4gv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3sLSwH4gv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #202020;
}
.cid-u3sLSwH4gv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3sLSwH4gv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3sLSwH4gv ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-u3sLSwH4gv .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-u3sLSwH4gv .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-u3sLSwH4gv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3sLSwH4gv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar {
    height: 100px;
  }
  .cid-u3sLSwH4gv .navbar.opened {
    height: auto;
  }
  .cid-u3sLSwH4gv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3sLSwH4gv .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-u3sLSwH4gv .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u3sLSwH4gv .nav-link:before {
  content: '';
  position: absolute;
  color: #999999;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-twwfFTgPjW {
  background-color: #ffffff;
}
.cid-twwfFTgPjW .mbr-fallback-image.disabled {
  display: none;
}
.cid-twwfFTgPjW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twwfFTgPjW .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 75px;
  grid-row-gap: 75px;
  -ms-grid-columns: 1fr 0.5fr;
  grid-template-columns: 1fr 0.5fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  align-items: flex-end;
}
@media (max-width: 1259px) {
  .cid-twwfFTgPjW .content-container {
    grid-template-columns: 1fr 0.25fr;
  }
}
@media (max-width: 991px) {
  .cid-twwfFTgPjW .content-container {
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }
}
.cid-twwfFTgPjW .mbr-section-title {
  color: #000000;
}
.cid-twwfFTgPjW .mbr-section-subtitle {
  color: #8f8f8f;
  padding: 16px 0;
  font-weight: 400;
}
.cid-twwfFTgPjW .mbr-section-subtitle b {
  font-weight: 700;
}
@media (max-width: 575px) {
  .cid-twwfFTgPjW .mbr-section-subtitle {
    padding: 4px 0;
  }
}
.cid-twwfFTgPjW .item-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding-top: 60px;
}
@media (max-width: 991px) {
  .cid-twwfFTgPjW .item-right {
    padding-top: 0;
  }
}
.cid-twwfFTgPjW .mbr-text {
  margin-bottom: 10px;
  color: #747474;
}
.cid-twwfFTgPjW .mbr-section-btn {
  margin-top: 30px;
}
.cid-twwfFTgPjW .mbr-section-btn .btn {
  min-width: 50px;
}
.cid-u3sLSwH4gv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u3sLSwH4gv nav.navbar {
  position: fixed;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3sLSwH4gv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3sLSwH4gv .dropdown-item:hover,
.cid-u3sLSwH4gv .dropdown-item:focus {
  background: #999999 !important;
  color: white !important;
}
.cid-u3sLSwH4gv .dropdown-item:hover span {
  color: white;
}
.cid-u3sLSwH4gv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3sLSwH4gv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3sLSwH4gv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3sLSwH4gv .nav-link {
  position: relative;
}
.cid-u3sLSwH4gv .container {
  display: flex;
  margin: auto;
}
.cid-u3sLSwH4gv .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3sLSwH4gv .dropdown-menu,
.cid-u3sLSwH4gv .navbar.opened {
  background: #202020 !important;
}
.cid-u3sLSwH4gv .nav-item:focus,
.cid-u3sLSwH4gv .nav-link:focus {
  outline: none;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3sLSwH4gv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3sLSwH4gv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3sLSwH4gv .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-u3sLSwH4gv .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #202020;
  padding: 0 12px !important;
}
.cid-u3sLSwH4gv .navbar.opened {
  transition: all 0.3s;
}
.cid-u3sLSwH4gv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3sLSwH4gv .navbar .navbar-logo img {
  width: auto;
}
.cid-u3sLSwH4gv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-u3sLSwH4gv .navbar.collapsed {
  justify-content: center;
}
.cid-u3sLSwH4gv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3sLSwH4gv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3sLSwH4gv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3sLSwH4gv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3sLSwH4gv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3sLSwH4gv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3sLSwH4gv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3sLSwH4gv .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u3sLSwH4gv .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3sLSwH4gv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3sLSwH4gv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-u3sLSwH4gv .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-u3sLSwH4gv .navbar {
    padding: 0 50px !important;
  }
}
.cid-u3sLSwH4gv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
  display: none !important;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3sLSwH4gv .dropdown-item.active,
.cid-u3sLSwH4gv .dropdown-item:active {
  background-color: transparent;
}
.cid-u3sLSwH4gv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3sLSwH4gv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #202020;
}
.cid-u3sLSwH4gv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3sLSwH4gv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3sLSwH4gv ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-u3sLSwH4gv .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-u3sLSwH4gv .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-u3sLSwH4gv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3sLSwH4gv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar {
    height: 100px;
  }
  .cid-u3sLSwH4gv .navbar.opened {
    height: auto;
  }
  .cid-u3sLSwH4gv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3sLSwH4gv .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-u3sLSwH4gv .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u3sLSwH4gv .nav-link:before {
  content: '';
  position: absolute;
  color: #999999;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tww7PgeLsm {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tww7PgeLsm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tww7PgeLsm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tww7PgeLsm .container-fluid {
  padding: 0;
}
.cid-tww7PgeLsm .row {
  padding: 0;
}
.cid-tww7PgeLsm .title-wrapper {
  padding: 0 2rem;
}
.cid-tww7PgeLsm .title-wrapper .mbr-section-subtitle {
  margin-bottom: 29px;
  letter-spacing: -0.04ch;
}
@media (max-width: 992px) {
  .cid-tww7PgeLsm .title-wrapper .mbr-section-subtitle {
    margin-bottom: 16px;
  }
}
.cid-tww7PgeLsm .title-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .cid-tww7PgeLsm .title-wrapper .mbr-section-title {
    margin-bottom: 14px;
  }
}
.cid-tww7PgeLsm .title-wrapper .mbr-text {
  margin-bottom: 29px;
}
@media (max-width: 768px) {
  .cid-tww7PgeLsm .title-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-tww7PgeLsm .title-wrapper .mbr-section-btn {
  margin-bottom: 29px;
}
@media (max-width: 768px) {
  .cid-tww7PgeLsm .title-wrapper .mbr-section-btn {
    margin-bottom: 16px;
  }
}
.cid-tww7PgeLsm .title-wrapper img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tww7PgeLsm .title-wrapper img {
    max-height: 300px;
  }
}
.cid-tww7PgeLsm .mbr-section-title {
  color: #1c314e;
}
.cid-tww7PgeLsm .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tww7PgeLsm .mbr-text {
  color: #747474;
  text-align: center;
}
.cid-tww7PgeLsm .mbr-section-title,
.cid-tww7PgeLsm .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-twzDoJ3blk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-twzDoJ3blk .img-container {
  position: relative;
}
.cid-twzDoJ3blk .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}
.cid-twzDoJ3blk .image-wrapper img {
  width: 100%;
  height: 26vw;
  object-fit: cover;
  max-height: 100vh;
}
@media (max-width: 991px) {
  .cid-twzDoJ3blk .image-wrapper img {
    height: auto;
  }
}
.cid-twzDoJ3blk .text-wrap {
  width: 100%;
  margin-top: 50px;
}
.cid-twzDoJ3blk .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-twzDoJ3blk .mbr-text {
  padding-top: 10px;
  color: #747474;
}
.cid-twzG9rf9Rs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-twzG9rf9Rs .mbr-fallback-image.disabled {
  display: none;
}
.cid-twzG9rf9Rs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twzG9rf9Rs .main-wrap {
  display: grid;
  max-width: 100%;
  grid-auto-columns: 1fr;
  grid-column-gap: 100px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-twzG9rf9Rs .main-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }
}
.cid-twzG9rf9Rs .card-col {
  display: flex;
  height: 100%;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-twzG9rf9Rs .card-col {
    padding: 20px 0 0;
  }
}
.cid-twzG9rf9Rs .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cid-twzG9rf9Rs .card-wrapper {
    margin: 0 auto 0 0;
    max-width: 70%;
  }
}
@media (max-width: 575px) {
  .cid-twzG9rf9Rs .card-wrapper {
    max-width: 100%;
  }
}
.cid-twzG9rf9Rs .card-title {
  padding-bottom: 10px;
  color: #000000;
}
.cid-twzG9rf9Rs .mbr-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #747474;
}
.cid-twzG9rf9Rs .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-twzG9rf9Rs .image-wrapper {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .cid-twzG9rf9Rs .image-wrapper {
    max-width: 100%;
  }
}
.cid-twzG9rf9Rs .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-twzHpXl0oH {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-twzHpXl0oH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-twzHpXl0oH .row {
  flex-direction: row-reverse;
}
.cid-twzHpXl0oH img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-twzHpXl0oH .text-wrapper {
    padding: 2rem;
  }
}
.cid-twzHpXl0oH .mbr-text {
  color: #747474;
}
.cid-twzLwQUCRu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-twzLwQUCRu .mbr-fallback-image.disabled {
  display: none;
}
.cid-twzLwQUCRu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twzLwQUCRu .main-wrap {
  display: grid;
  max-width: 100%;
  grid-auto-columns: 1fr;
  grid-column-gap: 100px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-twzLwQUCRu .main-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }
}
.cid-twzLwQUCRu .card-col {
  display: flex;
  height: 100%;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-twzLwQUCRu .card-col {
    padding: 20px 0 0;
  }
}
.cid-twzLwQUCRu .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cid-twzLwQUCRu .card-wrapper {
    margin: 0 auto 0 0;
    max-width: 70%;
  }
}
@media (max-width: 575px) {
  .cid-twzLwQUCRu .card-wrapper {
    max-width: 100%;
  }
}
.cid-twzLwQUCRu .card-title {
  padding-bottom: 10px;
  color: #000000;
}
.cid-twzLwQUCRu .mbr-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #747474;
}
.cid-twzLwQUCRu .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-twzLwQUCRu .image-wrapper {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .cid-twzLwQUCRu .image-wrapper {
    max-width: 100%;
  }
}
.cid-twzLwQUCRu .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-twzQabAt94 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-twzQabAt94 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-twzQabAt94 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-twzQabAt94 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-twzQabAt94 .card-wrapper {
    padding: 4rem;
  }
}
.cid-twzQabAt94 .mbr-text,
.cid-twzQabAt94 .mbr-section-btn {
  color: #595959;
}
.cid-twzQabAt94 .card-title,
.cid-twzQabAt94 .card-box {
  text-align: left;
  color: #000000;
}
.cid-twzNMp5v7k {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-twzNMp5v7k .mbr-media {
  position: relative;
}
.cid-twzNMp5v7k .mbr-media img {
  width: 100%;
  object-fit: cover;
  border-radius: 2rem;
}
.cid-twzNMp5v7k .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-twzNMp5v7k .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-twzNMp5v7k .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-twzNMp5v7k .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-twzNMp5v7k .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-twzNMp5v7k .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-twzNMp5v7k .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-twzNMp5v7k .mbr-section-subtitle {
  color: #595959;
}
.cid-u3sLSwH4gv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u3sLSwH4gv nav.navbar {
  position: fixed;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3sLSwH4gv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3sLSwH4gv .dropdown-item:hover,
.cid-u3sLSwH4gv .dropdown-item:focus {
  background: #999999 !important;
  color: white !important;
}
.cid-u3sLSwH4gv .dropdown-item:hover span {
  color: white;
}
.cid-u3sLSwH4gv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3sLSwH4gv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3sLSwH4gv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3sLSwH4gv .nav-link {
  position: relative;
}
.cid-u3sLSwH4gv .container {
  display: flex;
  margin: auto;
}
.cid-u3sLSwH4gv .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3sLSwH4gv .dropdown-menu,
.cid-u3sLSwH4gv .navbar.opened {
  background: #202020 !important;
}
.cid-u3sLSwH4gv .nav-item:focus,
.cid-u3sLSwH4gv .nav-link:focus {
  outline: none;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3sLSwH4gv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3sLSwH4gv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3sLSwH4gv .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-u3sLSwH4gv .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #202020;
  padding: 0 12px !important;
}
.cid-u3sLSwH4gv .navbar.opened {
  transition: all 0.3s;
}
.cid-u3sLSwH4gv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3sLSwH4gv .navbar .navbar-logo img {
  width: auto;
}
.cid-u3sLSwH4gv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-u3sLSwH4gv .navbar.collapsed {
  justify-content: center;
}
.cid-u3sLSwH4gv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3sLSwH4gv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3sLSwH4gv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3sLSwH4gv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3sLSwH4gv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3sLSwH4gv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3sLSwH4gv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3sLSwH4gv .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u3sLSwH4gv .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3sLSwH4gv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3sLSwH4gv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-u3sLSwH4gv .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-u3sLSwH4gv .navbar {
    padding: 0 50px !important;
  }
}
.cid-u3sLSwH4gv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
  display: none !important;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3sLSwH4gv .dropdown-item.active,
.cid-u3sLSwH4gv .dropdown-item:active {
  background-color: transparent;
}
.cid-u3sLSwH4gv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3sLSwH4gv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #202020;
}
.cid-u3sLSwH4gv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3sLSwH4gv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3sLSwH4gv ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-u3sLSwH4gv .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-u3sLSwH4gv .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-u3sLSwH4gv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3sLSwH4gv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar {
    height: 100px;
  }
  .cid-u3sLSwH4gv .navbar.opened {
    height: auto;
  }
  .cid-u3sLSwH4gv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3sLSwH4gv .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-u3sLSwH4gv .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u3sLSwH4gv .nav-link:before {
  content: '';
  position: absolute;
  color: #999999;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-twzYdcqmnD {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #fafafa;
}
.cid-twzYdcqmnD H2 {
  color: #353535;
}
.cid-twzYdcqmnD .mbr-text,
.cid-twzYdcqmnD .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-twzYdcqmnD img {
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-twzYdcqmnD img {
    max-width: 500px;
    margin: auto;
  }
}
.cid-twzYdcqmnD H1 {
  color: #000000;
}
.cid-twzYdcqmnD .mbr-fallback-image.disabled {
  display: none;
}
.cid-twzYdcqmnD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvOgJTx1qM {
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-tvOgJTx1qM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvOgJTx1qM img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvOgJTx1qM .text-wrapper {
    padding: 2rem;
  }
}
.cid-tvOgJTx1qM .mbr-text {
  color: #353535;
  text-align: left;
}
.cid-tvOgJTx1qM .mbr-section-title {
  color: #353535;
  text-align: left;
}
.cid-twB4WAm844 {
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-twB4WAm844 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-twB4WAm844 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-twB4WAm844 .text-wrapper {
    padding: 2rem;
  }
}
.cid-twB4WAm844 .mbr-text {
  color: #353535;
  text-align: left;
}
.cid-twB4WAm844 .mbr-section-title {
  color: #353535;
  text-align: left;
}
.cid-tvOh17vjtQ {
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-tvOh17vjtQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvOh17vjtQ .row {
  flex-direction: row-reverse;
}
.cid-tvOh17vjtQ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvOh17vjtQ .text-wrapper {
    padding: 2rem;
  }
}
.cid-tvP7OdUdVi {
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-tvP7OdUdVi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvP7OdUdVi img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvP7OdUdVi .text-wrapper {
    padding: 2rem;
  }
}
.cid-tvP7OdUdVi .mbr-text {
  color: #353535;
  text-align: left;
}
.cid-tvP7OdUdVi .mbr-section-title {
  color: #353535;
  text-align: left;
}
.cid-tvOgHVXNno {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tvOgHVXNno .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tvOgHVXNno .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tvOgHVXNno .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tvOgHVXNno .card-wrapper {
    padding: 4rem;
  }
}
.cid-tvOgHVXNno .mbr-text,
.cid-tvOgHVXNno .mbr-section-btn {
  color: #353535;
}
.cid-tvOgHVXNno .card-title,
.cid-tvOgHVXNno .card-box {
  text-align: left;
  color: #353535;
}
.cid-twASl29Uvd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-twASl29Uvd .mbr-fallback-image.disabled {
  display: none;
}
.cid-twASl29Uvd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twASl29Uvd .mbr-title {
  margin-bottom: 30px;
  color: #000000;
}
@media (max-width: 575px) {
  .cid-twASl29Uvd .mbr-title {
    margin-bottom: 10px;
  }
}
.cid-twASl29Uvd .mbr-subtitle {
  padding-top: 20px;
  color: #747474;
}
.cid-twASl29Uvd .mbr-text {
  padding-top: 30px;
  color: #747474;
}
.cid-twASl29Uvd .mbr-section-btn {
  padding-top: 40px;
}
.cid-twARibDdZb {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-twARibDdZb .image_wrapper {
  text-align: center;
  width: 100%;
  height: 100%;
  display: block;
}
.cid-twARibDdZb .item-img {
  width: 250px;
  margin-bottom: 21px;
  height: 100%;
  display: inline-block;
}
.cid-twARibDdZb img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.cid-twARibDdZb .item {
  margin-bottom: 70px;
}
.cid-twARibDdZb .item-title {
  margin-bottom: 11px;
  color: #202020;
}
.cid-twARibDdZb .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: visible;
}
.cid-twARibDdZb .mbr-text {
  margin-bottom: 18px;
}
.cid-twARibDdZb .linkBtn a {
  position: relative;
  display: inline-block;
  padding: 1px 7px;
  vertical-align: middle;
  overflow: hidden;
  line-height: 2em;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .2em;
}
.cid-twARibDdZb .linkBtn a:after,
.cid-twARibDdZb .linkBtn a:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.4s cubic-bezier(0.31, 0.29, 0.05, 0.96);
}
.cid-twARibDdZb .linkBtn a:before {
  left: 0;
}
.cid-twARibDdZb .linkBtn a:after {
  left: -100%;
  transition-delay: .3s;
}
.cid-twARibDdZb .linkBtn a:hover:before,
.cid-twARibDdZb .linkBtn a:hover:after {
  transform: translateX(100%);
}
.cid-u3sLSwH4gv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u3sLSwH4gv nav.navbar {
  position: fixed;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3sLSwH4gv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3sLSwH4gv .dropdown-item:hover,
.cid-u3sLSwH4gv .dropdown-item:focus {
  background: #999999 !important;
  color: white !important;
}
.cid-u3sLSwH4gv .dropdown-item:hover span {
  color: white;
}
.cid-u3sLSwH4gv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3sLSwH4gv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3sLSwH4gv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3sLSwH4gv .nav-link {
  position: relative;
}
.cid-u3sLSwH4gv .container {
  display: flex;
  margin: auto;
}
.cid-u3sLSwH4gv .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3sLSwH4gv .dropdown-menu,
.cid-u3sLSwH4gv .navbar.opened {
  background: #202020 !important;
}
.cid-u3sLSwH4gv .nav-item:focus,
.cid-u3sLSwH4gv .nav-link:focus {
  outline: none;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3sLSwH4gv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3sLSwH4gv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3sLSwH4gv .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-u3sLSwH4gv .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #202020;
  padding: 0 12px !important;
}
.cid-u3sLSwH4gv .navbar.opened {
  transition: all 0.3s;
}
.cid-u3sLSwH4gv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3sLSwH4gv .navbar .navbar-logo img {
  width: auto;
}
.cid-u3sLSwH4gv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-u3sLSwH4gv .navbar.collapsed {
  justify-content: center;
}
.cid-u3sLSwH4gv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3sLSwH4gv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3sLSwH4gv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3sLSwH4gv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3sLSwH4gv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3sLSwH4gv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3sLSwH4gv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3sLSwH4gv .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u3sLSwH4gv .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3sLSwH4gv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3sLSwH4gv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-u3sLSwH4gv .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-u3sLSwH4gv .navbar {
    padding: 0 50px !important;
  }
}
.cid-u3sLSwH4gv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
  display: none !important;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3sLSwH4gv .dropdown-item.active,
.cid-u3sLSwH4gv .dropdown-item:active {
  background-color: transparent;
}
.cid-u3sLSwH4gv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3sLSwH4gv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #202020;
}
.cid-u3sLSwH4gv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3sLSwH4gv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3sLSwH4gv ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-u3sLSwH4gv .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-u3sLSwH4gv .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-u3sLSwH4gv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3sLSwH4gv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar {
    height: 100px;
  }
  .cid-u3sLSwH4gv .navbar.opened {
    height: auto;
  }
  .cid-u3sLSwH4gv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3sLSwH4gv .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-u3sLSwH4gv .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u3sLSwH4gv .nav-link:before {
  content: '';
  position: absolute;
  color: #999999;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u2rvw74O5c {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u2rvw74O5c .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2rvw74O5c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2rvw74O5c .container-fluid {
  padding: 0;
}
.cid-u2rvw74O5c .row {
  padding: 0;
}
.cid-u2rvw74O5c .title-wrapper {
  padding: 0 2rem;
}
.cid-u2rvw74O5c .title-wrapper .mbr-section-subtitle {
  margin-bottom: 29px;
  letter-spacing: -0.04ch;
}
@media (max-width: 992px) {
  .cid-u2rvw74O5c .title-wrapper .mbr-section-subtitle {
    margin-bottom: 16px;
  }
}
.cid-u2rvw74O5c .title-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .cid-u2rvw74O5c .title-wrapper .mbr-section-title {
    margin-bottom: 14px;
  }
}
.cid-u2rvw74O5c .title-wrapper .mbr-text {
  margin-bottom: 29px;
}
@media (max-width: 768px) {
  .cid-u2rvw74O5c .title-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-u2rvw74O5c .title-wrapper .mbr-section-btn {
  margin-bottom: 29px;
}
@media (max-width: 768px) {
  .cid-u2rvw74O5c .title-wrapper .mbr-section-btn {
    margin-bottom: 16px;
  }
}
.cid-u2rvw74O5c .title-wrapper img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u2rvw74O5c .title-wrapper img {
    max-height: 300px;
  }
}
.cid-u2rvw74O5c .mbr-section-title {
  color: #1c314e;
}
.cid-u2rvw74O5c .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-u2rvw74O5c .mbr-text {
  color: #747474;
  text-align: center;
}
.cid-u2rvw74O5c .mbr-section-title,
.cid-u2rvw74O5c .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-u2rAYW187I {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u2rAYW187I .mbr-media {
  position: relative;
}
.cid-u2rAYW187I .mbr-media img {
  width: 100%;
  object-fit: cover;
  border-radius: 2rem;
}
.cid-u2rAYW187I .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u2rAYW187I .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u2rAYW187I .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u2rAYW187I .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u2rAYW187I .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u2rAYW187I .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u2rAYW187I .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u2rAYW187I .mbr-section-subtitle {
  color: #595959;
}
.cid-u2rvw7m6Jq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u2rvw7m6Jq .img-container {
  position: relative;
}
.cid-u2rvw7m6Jq .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}
.cid-u2rvw7m6Jq .image-wrapper img {
  width: 100%;
  height: 26vw;
  object-fit: cover;
  max-height: 100vh;
}
@media (max-width: 991px) {
  .cid-u2rvw7m6Jq .image-wrapper img {
    height: auto;
  }
}
.cid-u2rvw7m6Jq .text-wrap {
  width: 100%;
  margin-top: 50px;
}
.cid-u2rvw7m6Jq .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-u2rvw7m6Jq .mbr-text {
  padding-top: 10px;
  color: #747474;
}
.cid-u2rvw7AHAN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u2rvw7AHAN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2rvw7AHAN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2rvw7AHAN .main-wrap {
  display: grid;
  max-width: 100%;
  grid-auto-columns: 1fr;
  grid-column-gap: 100px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u2rvw7AHAN .main-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }
}
.cid-u2rvw7AHAN .card-col {
  display: flex;
  height: 100%;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-u2rvw7AHAN .card-col {
    padding: 20px 0 0;
  }
}
.cid-u2rvw7AHAN .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cid-u2rvw7AHAN .card-wrapper {
    margin: 0 auto 0 0;
    max-width: 70%;
  }
}
@media (max-width: 575px) {
  .cid-u2rvw7AHAN .card-wrapper {
    max-width: 100%;
  }
}
.cid-u2rvw7AHAN .card-title {
  padding-bottom: 10px;
  color: #000000;
}
.cid-u2rvw7AHAN .mbr-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #747474;
}
.cid-u2rvw7AHAN .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-u2rvw7AHAN .image-wrapper {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .cid-u2rvw7AHAN .image-wrapper {
    max-width: 100%;
  }
}
.cid-u2rvw7AHAN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u2rvw7OaYp {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u2rvw7OaYp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u2rvw7OaYp .row {
  flex-direction: row-reverse;
}
.cid-u2rvw7OaYp img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u2rvw7OaYp .text-wrapper {
    padding: 2rem;
  }
}
.cid-u2rvw7OaYp .mbr-text {
  color: #747474;
}
.cid-u2rvw85pYn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u2rvw85pYn .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2rvw85pYn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2rvw85pYn .main-wrap {
  display: grid;
  max-width: 100%;
  grid-auto-columns: 1fr;
  grid-column-gap: 100px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u2rvw85pYn .main-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }
}
.cid-u2rvw85pYn .card-col {
  display: flex;
  height: 100%;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-u2rvw85pYn .card-col {
    padding: 20px 0 0;
  }
}
.cid-u2rvw85pYn .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cid-u2rvw85pYn .card-wrapper {
    margin: 0 auto 0 0;
    max-width: 70%;
  }
}
@media (max-width: 575px) {
  .cid-u2rvw85pYn .card-wrapper {
    max-width: 100%;
  }
}
.cid-u2rvw85pYn .card-title {
  padding-bottom: 10px;
  color: #000000;
}
.cid-u2rvw85pYn .mbr-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #747474;
}
.cid-u2rvw85pYn .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-u2rvw85pYn .image-wrapper {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .cid-u2rvw85pYn .image-wrapper {
    max-width: 100%;
  }
}
.cid-u2rvw85pYn .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u2rzkTKIg2 {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u2rzkTKIg2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u2rzkTKIg2 .row {
  flex-direction: row-reverse;
}
.cid-u2rzkTKIg2 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u2rzkTKIg2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u2rzkTKIg2 .mbr-text {
  color: #747474;
}
.cid-u2rvw8loAt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2rvw8loAt .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-u2rvw8loAt .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u2rvw8loAt .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u2rvw8loAt .card-wrapper {
    padding: 4rem;
  }
}
.cid-u2rvw8loAt .mbr-text,
.cid-u2rvw8loAt .mbr-section-btn {
  color: #595959;
}
.cid-u2rvw8loAt .card-title,
.cid-u2rvw8loAt .card-box {
  text-align: left;
  color: #000000;
}
.cid-u3m9qWzExB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u3m9qWzExB .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-u3m9qWzExB .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u3m9qWzExB .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u3m9qWzExB .card-wrapper {
    padding: 4rem;
  }
}
.cid-u3m9qWzExB .mbr-text,
.cid-u3m9qWzExB .mbr-section-btn {
  color: #595959;
}
.cid-u3m9qWzExB .card-title,
.cid-u3m9qWzExB .card-box {
  text-align: left;
  color: #000000;
}
.cid-u3sLSwH4gv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u3sLSwH4gv nav.navbar {
  position: fixed;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u3sLSwH4gv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u3sLSwH4gv .dropdown-item:hover,
.cid-u3sLSwH4gv .dropdown-item:focus {
  background: #999999 !important;
  color: white !important;
}
.cid-u3sLSwH4gv .dropdown-item:hover span {
  color: white;
}
.cid-u3sLSwH4gv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u3sLSwH4gv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u3sLSwH4gv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3sLSwH4gv .nav-link {
  position: relative;
}
.cid-u3sLSwH4gv .container {
  display: flex;
  margin: auto;
}
.cid-u3sLSwH4gv .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3sLSwH4gv .dropdown-menu,
.cid-u3sLSwH4gv .navbar.opened {
  background: #202020 !important;
}
.cid-u3sLSwH4gv .nav-item:focus,
.cid-u3sLSwH4gv .nav-link:focus {
  outline: none;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3sLSwH4gv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3sLSwH4gv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3sLSwH4gv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3sLSwH4gv .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-u3sLSwH4gv .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #202020;
  padding: 0 12px !important;
}
.cid-u3sLSwH4gv .navbar.opened {
  transition: all 0.3s;
}
.cid-u3sLSwH4gv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3sLSwH4gv .navbar .navbar-logo img {
  width: auto;
}
.cid-u3sLSwH4gv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-u3sLSwH4gv .navbar.collapsed {
  justify-content: center;
}
.cid-u3sLSwH4gv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3sLSwH4gv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-u3sLSwH4gv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3sLSwH4gv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3sLSwH4gv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3sLSwH4gv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3sLSwH4gv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3sLSwH4gv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3sLSwH4gv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3sLSwH4gv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3sLSwH4gv .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u3sLSwH4gv .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3sLSwH4gv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3sLSwH4gv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-u3sLSwH4gv .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-u3sLSwH4gv .navbar {
    padding: 0 50px !important;
  }
}
.cid-u3sLSwH4gv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
  display: none !important;
}
.cid-u3sLSwH4gv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3sLSwH4gv .dropdown-item.active,
.cid-u3sLSwH4gv .dropdown-item:active {
  background-color: transparent;
}
.cid-u3sLSwH4gv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3sLSwH4gv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3sLSwH4gv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #202020;
}
.cid-u3sLSwH4gv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3sLSwH4gv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3sLSwH4gv ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-u3sLSwH4gv .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-u3sLSwH4gv .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-u3sLSwH4gv .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-u3sLSwH4gv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-u3sLSwH4gv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-u3sLSwH4gv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3sLSwH4gv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3sLSwH4gv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3sLSwH4gv .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-u3sLSwH4gv .navbar {
    height: 100px;
  }
  .cid-u3sLSwH4gv .navbar.opened {
    height: auto;
  }
  .cid-u3sLSwH4gv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3sLSwH4gv .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-u3sLSwH4gv .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u3sLSwH4gv .nav-link:before {
  content: '';
  position: absolute;
  color: #999999;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u3d2mFu5Jc {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u3d2mFu5Jc .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3d2mFu5Jc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3d2mFu5Jc .container-fluid {
  padding: 0;
}
.cid-u3d2mFu5Jc .row {
  padding: 0;
}
.cid-u3d2mFu5Jc .title-wrapper {
  padding: 0 2rem;
}
.cid-u3d2mFu5Jc .title-wrapper .mbr-section-subtitle {
  margin-bottom: 29px;
  letter-spacing: -0.04ch;
}
@media (max-width: 992px) {
  .cid-u3d2mFu5Jc .title-wrapper .mbr-section-subtitle {
    margin-bottom: 16px;
  }
}
.cid-u3d2mFu5Jc .title-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .cid-u3d2mFu5Jc .title-wrapper .mbr-section-title {
    margin-bottom: 14px;
  }
}
.cid-u3d2mFu5Jc .title-wrapper .mbr-text {
  margin-bottom: 29px;
}
@media (max-width: 768px) {
  .cid-u3d2mFu5Jc .title-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-u3d2mFu5Jc .title-wrapper .mbr-section-btn {
  margin-bottom: 29px;
}
@media (max-width: 768px) {
  .cid-u3d2mFu5Jc .title-wrapper .mbr-section-btn {
    margin-bottom: 16px;
  }
}
.cid-u3d2mFu5Jc .title-wrapper img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u3d2mFu5Jc .title-wrapper img {
    max-height: 300px;
  }
}
.cid-u3d2mFu5Jc .mbr-section-title {
  color: #1c314e;
}
.cid-u3d2mFu5Jc .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-u3d2mFu5Jc .mbr-text {
  color: #747474;
  text-align: center;
}
.cid-u3d2mFu5Jc .mbr-section-title,
.cid-u3d2mFu5Jc .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-u3d2mFJ1hf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u3d2mFJ1hf .mbr-media {
  position: relative;
}
.cid-u3d2mFJ1hf .mbr-media img {
  width: 100%;
  object-fit: cover;
  border-radius: 2rem;
}
.cid-u3d2mFJ1hf .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u3d2mFJ1hf .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u3d2mFJ1hf .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u3d2mFJ1hf .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u3d2mFJ1hf .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u3d2mFJ1hf .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u3d2mFJ1hf .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u3d2mFJ1hf .mbr-section-subtitle {
  color: #595959;
}
.cid-u3d2mG3ASa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u3d2mG3ASa .img-container {
  position: relative;
}
.cid-u3d2mG3ASa .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}
.cid-u3d2mG3ASa .image-wrapper img {
  width: 100%;
  height: 26vw;
  object-fit: cover;
  max-height: 100vh;
}
@media (max-width: 991px) {
  .cid-u3d2mG3ASa .image-wrapper img {
    height: auto;
  }
}
.cid-u3d2mG3ASa .text-wrap {
  width: 100%;
  margin-top: 50px;
}
.cid-u3d2mG3ASa .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-u3d2mG3ASa .mbr-text {
  padding-top: 10px;
  color: #747474;
}
.cid-u3d2mGeY0m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u3d2mGeY0m .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3d2mGeY0m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3d2mGeY0m .main-wrap {
  display: grid;
  max-width: 100%;
  grid-auto-columns: 1fr;
  grid-column-gap: 100px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u3d2mGeY0m .main-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }
}
.cid-u3d2mGeY0m .card-col {
  display: flex;
  height: 100%;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-u3d2mGeY0m .card-col {
    padding: 20px 0 0;
  }
}
.cid-u3d2mGeY0m .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cid-u3d2mGeY0m .card-wrapper {
    margin: 0 auto 0 0;
    max-width: 70%;
  }
}
@media (max-width: 575px) {
  .cid-u3d2mGeY0m .card-wrapper {
    max-width: 100%;
  }
}
.cid-u3d2mGeY0m .card-title {
  padding-bottom: 10px;
  color: #000000;
}
.cid-u3d2mGeY0m .mbr-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #747474;
}
.cid-u3d2mGeY0m .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-u3d2mGeY0m .image-wrapper {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .cid-u3d2mGeY0m .image-wrapper {
    max-width: 100%;
  }
}
.cid-u3d2mGeY0m .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u3d2mGeY0m .mbr-text,
.cid-u3d2mGeY0m .mbr-section-btn {
  text-align: left;
}
.cid-u3d2mGsRMc {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u3d2mGsRMc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u3d2mGsRMc .row {
  flex-direction: row-reverse;
}
.cid-u3d2mGsRMc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u3d2mGsRMc .text-wrapper {
    padding: 2rem;
  }
}
.cid-u3d2mGsRMc .mbr-text {
  color: #747474;
  text-align: left;
}
.cid-u3d2mGF0wk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u3d2mGF0wk .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3d2mGF0wk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3d2mGF0wk .main-wrap {
  display: grid;
  max-width: 100%;
  grid-auto-columns: 1fr;
  grid-column-gap: 100px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u3d2mGF0wk .main-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }
}
.cid-u3d2mGF0wk .card-col {
  display: flex;
  height: 100%;
  padding: 0;
}
@media (max-width: 575px) {
  .cid-u3d2mGF0wk .card-col {
    padding: 20px 0 0;
  }
}
.cid-u3d2mGF0wk .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cid-u3d2mGF0wk .card-wrapper {
    margin: 0 auto 0 0;
    max-width: 70%;
  }
}
@media (max-width: 575px) {
  .cid-u3d2mGF0wk .card-wrapper {
    max-width: 100%;
  }
}
.cid-u3d2mGF0wk .card-title {
  padding-bottom: 10px;
  color: #000000;
}
.cid-u3d2mGF0wk .mbr-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #747474;
}
.cid-u3d2mGF0wk .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-u3d2mGF0wk .image-wrapper {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .cid-u3d2mGF0wk .image-wrapper {
    max-width: 100%;
  }
}
.cid-u3d2mGF0wk .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u3d2mGWoIb {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u3d2mGWoIb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u3d2mGWoIb .row {
  flex-direction: row-reverse;
}
.cid-u3d2mGWoIb img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u3d2mGWoIb .text-wrapper {
    padding: 2rem;
  }
}
.cid-u3d2mGWoIb .mbr-text {
  color: #747474;
}
.cid-u3d2mHdEjK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u3d2mHdEjK .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-u3d2mHdEjK .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u3d2mHdEjK .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u3d2mHdEjK .card-wrapper {
    padding: 4rem;
  }
}
.cid-u3d2mHdEjK .mbr-text,
.cid-u3d2mHdEjK .mbr-section-btn {
  color: #595959;
}
.cid-u3d2mHdEjK .card-title,
.cid-u3d2mHdEjK .card-box {
  text-align: left;
  color: #000000;
}
.cid-ujAqXOPpdS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ujAqXOPpdS nav.navbar {
  position: fixed;
}
.cid-ujAqXOPpdS .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-ujAqXOPpdS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ujAqXOPpdS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ujAqXOPpdS .dropdown-item:hover,
.cid-ujAqXOPpdS .dropdown-item:focus {
  background: #999999 !important;
  color: white !important;
}
.cid-ujAqXOPpdS .dropdown-item:hover span {
  color: white;
}
.cid-ujAqXOPpdS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ujAqXOPpdS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ujAqXOPpdS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ujAqXOPpdS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ujAqXOPpdS .nav-link {
  position: relative;
}
.cid-ujAqXOPpdS .container {
  display: flex;
  margin: auto;
}
.cid-ujAqXOPpdS .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ujAqXOPpdS .dropdown-menu,
.cid-ujAqXOPpdS .navbar.opened {
  background: #202020 !important;
}
.cid-ujAqXOPpdS .nav-item:focus,
.cid-ujAqXOPpdS .nav-link:focus {
  outline: none;
}
.cid-ujAqXOPpdS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ujAqXOPpdS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ujAqXOPpdS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ujAqXOPpdS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ujAqXOPpdS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ujAqXOPpdS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ujAqXOPpdS .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ujAqXOPpdS .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-ujAqXOPpdS .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-ujAqXOPpdS .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #202020;
  padding: 0 12px !important;
}
.cid-ujAqXOPpdS .navbar.opened {
  transition: all 0.3s;
}
.cid-ujAqXOPpdS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ujAqXOPpdS .navbar .navbar-logo img {
  width: auto;
}
.cid-ujAqXOPpdS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-ujAqXOPpdS .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-ujAqXOPpdS .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-ujAqXOPpdS .navbar.collapsed {
  justify-content: center;
}
.cid-ujAqXOPpdS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ujAqXOPpdS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ujAqXOPpdS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ujAqXOPpdS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ujAqXOPpdS .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-ujAqXOPpdS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-ujAqXOPpdS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ujAqXOPpdS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ujAqXOPpdS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ujAqXOPpdS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ujAqXOPpdS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ujAqXOPpdS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ujAqXOPpdS .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-ujAqXOPpdS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ujAqXOPpdS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ujAqXOPpdS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ujAqXOPpdS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ujAqXOPpdS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ujAqXOPpdS .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ujAqXOPpdS .navbar.navbar-short {
  min-height: 60px;
}
.cid-ujAqXOPpdS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ujAqXOPpdS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-ujAqXOPpdS .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-ujAqXOPpdS .navbar {
    padding: 0 50px !important;
  }
}
.cid-ujAqXOPpdS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-ujAqXOPpdS .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-ujAqXOPpdS .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-ujAqXOPpdS .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-ujAqXOPpdS .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
  display: none !important;
}
.cid-ujAqXOPpdS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ujAqXOPpdS .dropdown-item.active,
.cid-ujAqXOPpdS .dropdown-item:active {
  background-color: transparent;
}
.cid-ujAqXOPpdS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ujAqXOPpdS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ujAqXOPpdS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ujAqXOPpdS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #202020;
}
.cid-ujAqXOPpdS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ujAqXOPpdS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ujAqXOPpdS ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-ujAqXOPpdS ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-ujAqXOPpdS .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ujAqXOPpdS .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-ujAqXOPpdS .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-ujAqXOPpdS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-ujAqXOPpdS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-ujAqXOPpdS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ujAqXOPpdS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-ujAqXOPpdS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-ujAqXOPpdS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-ujAqXOPpdS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujAqXOPpdS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-ujAqXOPpdS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-ujAqXOPpdS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujAqXOPpdS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ujAqXOPpdS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ujAqXOPpdS .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-ujAqXOPpdS .navbar {
    height: 100px;
  }
  .cid-ujAqXOPpdS .navbar.opened {
    height: auto;
  }
  .cid-ujAqXOPpdS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujAqXOPpdS .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-ujAqXOPpdS .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-ujAqXOPpdS .nav-link:before {
  content: '';
  position: absolute;
  color: #999999;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-ujAqXP6128 {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ujAqXP6128 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujAqXP6128 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujAqXP6128 .container-fluid {
  padding: 0;
}
.cid-ujAqXP6128 .row {
  padding: 0;
}
.cid-ujAqXP6128 .title-wrapper {
  padding: 0 2rem;
}
.cid-ujAqXP6128 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 29px;
  letter-spacing: -0.04ch;
}
@media (max-width: 992px) {
  .cid-ujAqXP6128 .title-wrapper .mbr-section-subtitle {
    margin-bottom: 16px;
  }
}
.cid-ujAqXP6128 .title-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .cid-ujAqXP6128 .title-wrapper .mbr-section-title {
    margin-bottom: 14px;
  }
}
.cid-ujAqXP6128 .title-wrapper .mbr-text {
  margin-bottom: 29px;
}
@media (max-width: 768px) {
  .cid-ujAqXP6128 .title-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-ujAqXP6128 .title-wrapper .mbr-section-btn {
  margin-bottom: 29px;
}
@media (max-width: 768px) {
  .cid-ujAqXP6128 .title-wrapper .mbr-section-btn {
    margin-bottom: 16px;
  }
}
.cid-ujAqXP6128 .title-wrapper img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ujAqXP6128 .title-wrapper img {
    max-height: 300px;
  }
}
.cid-ujAqXP6128 .mbr-section-title {
  color: #1c314e;
}
.cid-ujAqXP6128 .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-ujAqXP6128 .mbr-text {
  color: #747474;
  text-align: center;
}
.cid-ujAqXP6128 .mbr-section-title,
.cid-ujAqXP6128 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-ulia5qOirq {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-ulia5qOirq .mbr-fallback-image.disabled {
  display: none;
}
@media (max-width: 767px) {
  .cid-ulia5qOirq .display-1 {
    font-size: 2rem;
  }
}
.cid-ulia5qOirq a {
  display: block;
  width: 100%;
}
.cid-ulia5qOirq a:hover {
  background-image: none !important;
}
.cid-ulia5qOirq .content-wrap {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.cid-ulia5qOirq .content-wrap:before {
  content: '';
  width: 150%;
  height: 0%;
  background: #999999;
  position: absolute;
  transition: all 0.5s;
  left: -25%;
  bottom: -25%;
  transform: rotate(2deg);
}
.cid-ulia5qOirq .content-wrap:after {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  transition: all 0.5s;
  background: #999999;
  right: 20px;
  top: 50%;
  transform: translateY(-10px);
  border-radius: 50%;
}
.cid-ulia5qOirq .content-wrap:hover:before {
  height: 150%;
}
.cid-ulia5qOirq .content-wrap:hover:after {
  background-color: #bbbbbb;
  right: 40px;
}
.cid-ulia5qOirq .content-wrap:hover .mbr-section-title,
.cid-ulia5qOirq .content-wrap:hover .mbr-section-title a {
  color: #bbbbbb !important;
  z-index: 2;
  position: relative;
}
.cid-ulia5qOirq .content-wrap:hover .mbr-section-title {
  padding-left: 2rem;
}
.cid-ulia5qOirq .mbr-section-title {
  margin-top: 2rem;
  transition: all 0.3s;
  padding: 0 1rem;
  color: #d70081;
}
.cid-ulia5qOirq .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-ulia5qOirq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulia5qOirq .mbr-section-subtitle,
.cid-ulia5qOirq .line {
  color: #291f1e;
}
.cid-ulia5qOirq .mbr-text,
.cid-ulia5qOirq .mbr-section-btn {
  text-align: left;
  color: #291f1e;
}
.cid-ulia5qOirq .mbr-section-title,
.cid-ulia5qOirq .line {
  color: #291f1e;
}
.cid-uk9Qa0xdME {
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-uk9Qa0xdME .mbr-section-subtitle {
  color: #767676;
}
.cid-uk9Qa0xdME .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uk9Qa0xdME .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uk9Qa0xdME .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uk9Qa0xdME .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uk9Qa0xdME .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #59585d;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uk9Qa0xdME .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-uk9Qa0xdME .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uk9Qa0xdME .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-uk9Qa0xdME .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uk9Qa0xdME .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-uk9Qa0xdME ul {
  font-size: 0;
}
.cid-uk9Qa0xdME .mbr-gallery-filter ul {
  text-align: left;
}
.cid-uk9Qa0xdME .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-uk9Qa0xdME .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-uk9Qa0xdME .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-uk9Qa0xdME .mbr-gallery-filter ul li:first-child,
.cid-uk9Qa0xdME .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-uk9Qa0xdME .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-uk9Qa0xdME .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-uk9Qa0xdME .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-uk9Qa0xdME .btn.active:after {
  animation: none;
}
.cid-uk9Qa0xdME .btn:active {
  box-shadow: none !important;
}
.cid-uk9Qa0xdME .btn:hover {
  background: transparent !important;
}
.cid-uk9Qa0xdME .btn:hover:before {
  background: transparent !important;
}
.cid-uk9Qa0xdME .btn:before {
  background-color: transparent !important;
}
.cid-uk9Qa0xdME .btn:focus {
  box-shadow: none !important;
}
.cid-uka02qeBdS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uka02qeBdS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uka02qeBdS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uka02qeBdS .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.cid-uka02qeBdS .line2 {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-top: 2rem;
}
.cid-uka02qeBdS .title .num {
  width: 100%;
  display: block;
}
.cid-uka02qeBdS .title .card-title {
  z-index: 1;
}
.cid-uka02qeBdS .num {
  color: #291f1e;
}
.cid-uka02qeBdS .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uka02qeBdS .item-mb {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uka02qeBdS * {
    text-align: center !important;
  }
  .cid-uka02qeBdS .content-column {
    margin-bottom: 2rem;
  }
}
.cid-uka02qeBdS .card-title,
.cid-uka02qeBdS .card-img {
  color: #291f1e;
}
.cid-uka02qeBdS .card-text {
  color: #291f1e;
}
.cid-uka02qeBdS .mbr-section-title,
.cid-uka02qeBdS .card-box {
  text-align: left;
}
.cid-uka02qeBdS .mbr-section-title,
.cid-uka02qeBdS .line {
  color: #291f1e;
}
.cid-uka02qeBdS .card-text,
.cid-uka02qeBdS .line2 {
  color: #291f1e;
}
.cid-uk9HOYCaAp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uk9HOYCaAp .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uk9HOYCaAp .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uk9HOYCaAp .container {
    padding: 0 26px;
  }
}
.cid-uk9HOYCaAp .row {
  justify-content: center;
}
.cid-uk9HOYCaAp .content-wrapper .content-wrap {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uk9HOYCaAp .content-wrapper .content-wrap {
    margin-bottom: 40px;
  }
}
.cid-uk9HOYCaAp .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uk9HOYCaAp .content-wrapper .content-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uk9HOYCaAp .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-uk9HOYCaAp .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uk9HOYCaAp .embla__slide .slide-content {
  width: 100%;
}
.cid-uk9HOYCaAp .embla__slide .slide-content .item-wrapper {
  padding: 0 150px;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 1440px) {
  .cid-uk9HOYCaAp .embla__slide .slide-content .item-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-uk9HOYCaAp .embla__slide .slide-content .item-wrapper {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-uk9HOYCaAp .embla__slide .slide-content .item-wrapper {
    display: block;
  }
}
.cid-uk9HOYCaAp .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  width: 40%;
  padding: 50px 50px 0 0;
}
@media (max-width: 768px) {
  .cid-uk9HOYCaAp .embla__slide .slide-content .item-wrapper .item-content {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uk9HOYCaAp .embla__slide .slide-content .item-wrapper .item-content .item-number {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uk9HOYCaAp .embla__slide .slide-content .item-wrapper .item-content .item-number {
    margin-bottom: 40px;
  }
}
.cid-uk9HOYCaAp .embla__slide .slide-content .item-wrapper .item-content .text-wrapper {
  border-top: 1px solid #000000;
  padding-top: 10px;
}
.cid-uk9HOYCaAp .embla__slide .slide-content .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 16px;
}
.cid-uk9HOYCaAp .embla__slide .slide-content .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 0;
}
.cid-uk9HOYCaAp .embla__slide .slide-content .item-wrapper .item-img {
  width: 60%;
}
@media (max-width: 768px) {
  .cid-uk9HOYCaAp .embla__slide .slide-content .item-wrapper .item-img {
    width: 100%;
  }
}
.cid-uk9HOYCaAp .embla__slide .slide-content .item-wrapper .item-img img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uk9HOYCaAp .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uk9HOYCaAp .embla__button--next,
.cid-uk9HOYCaAp .embla__button--prev {
  display: flex;
}
.cid-uk9HOYCaAp .embla__button {
  top: 50%;
  width: 25px;
  height: 25px;
  margin-top: -1.5rem;
  font-size: 25px;
  background-color: transparent !important;
  color: #999999 !important;
  border: none !important;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uk9HOYCaAp .embla__button:hover {
  opacity: .6 !important;
}
.cid-uk9HOYCaAp .embla__button.embla__button--prev {
  left: 0;
}
.cid-uk9HOYCaAp .embla__button.embla__button--next {
  right: 0;
}
@media (max-width: 992px) {
  .cid-uk9HOYCaAp .embla__button {
    top: 0;
  }
}
.cid-uk9HOYCaAp .embla {
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uk9HOYCaAp .embla {
    padding-top: 25px;
  }
}
.cid-uk9HOYCaAp .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uk9HOYCaAp .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uk9HOYCaAp .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uk9HOYCaAp .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uk9HOYCaAp .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uk9HOYCaAp .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uk9HOYCaAp .item-number {
  color: #000000;
  text-align: center;
}
.cid-uk9HOYCaAp .item-title {
  color: #000000;
}
.cid-uk9HOYCaAp .item-text {
  color: #000000;
}
.cid-uk9HOYCaAp .mbr-section-title,
.cid-uk9HOYCaAp .mbr-section-btn {
  text-align: left;
}
.cid-uka4QkLBJj {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uka4QkLBJj .mbr-overlay {
  background: #5eeebb;
}
.cid-uka4QkLBJj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uka4QkLBJj .card-title {
  margin-bottom: 26px;
}
.cid-uka4QkLBJj .mbr-text {
  margin-bottom: 30px;
}
.cid-uka4QkLBJj .iconfont-wrapper {
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cid-uka4QkLBJj .iconfont-wrapper:before {
  content: "";
  top: 0;
  left: 50%;
  bottom: 0;
  z-index: -1;
  width: 60px;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.07);
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
}
.cid-uka4QkLBJj .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  height: 75px;
  line-height: 75px;
  font-size: 46px;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uka4QkLBJj .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uka4QkLBJj .text-wrapper {
    text-align: center;
  }
  .cid-uka4QkLBJj .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-uka4QkLBJj .mbr-text {
    margin-bottom: 20px;
  }
  .cid-uka4QkLBJj .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uka4QkLBJj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uka4QkLBJj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uka4QkLBJj .card-title,
.cid-uka4QkLBJj .icon_block {
  color: #131313;
}
.cid-uka4QkLBJj .mbr-text,
.cid-uka4QkLBJj .mbr-section-btn {
  color: #131313;
}
.cid-uk9NPkVCzG {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uk9NPkVCzG .mbr-overlay {
  background: #5eeebb;
}
.cid-uk9NPkVCzG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uk9NPkVCzG .card-title {
  margin-bottom: 26px;
}
.cid-uk9NPkVCzG .mbr-text {
  margin-bottom: 30px;
}
.cid-uk9NPkVCzG .iconfont-wrapper {
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cid-uk9NPkVCzG .iconfont-wrapper:before {
  content: "";
  top: 0;
  left: 50%;
  bottom: 0;
  z-index: -1;
  width: 60px;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.07);
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
}
.cid-uk9NPkVCzG .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  height: 75px;
  line-height: 75px;
  font-size: 46px;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uk9NPkVCzG .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uk9NPkVCzG .text-wrapper {
    text-align: center;
  }
  .cid-uk9NPkVCzG .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-uk9NPkVCzG .mbr-text {
    margin-bottom: 20px;
  }
  .cid-uk9NPkVCzG .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uk9NPkVCzG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uk9NPkVCzG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uk9NPkVCzG .card-title,
.cid-uk9NPkVCzG .icon_block {
  color: #131313;
}
.cid-uk9NPkVCzG .mbr-text,
.cid-uk9NPkVCzG .mbr-section-btn {
  color: #131313;
}
.cid-uka5HSioFm {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uka5HSioFm .mbr-overlay {
  background: #5eeebb;
}
.cid-uka5HSioFm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uka5HSioFm .card-title {
  margin-bottom: 26px;
}
.cid-uka5HSioFm .mbr-text {
  margin-bottom: 30px;
}
.cid-uka5HSioFm .iconfont-wrapper {
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cid-uka5HSioFm .iconfont-wrapper:before {
  content: "";
  top: 0;
  left: 50%;
  bottom: 0;
  z-index: -1;
  width: 60px;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.07);
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
}
.cid-uka5HSioFm .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  height: 75px;
  line-height: 75px;
  font-size: 46px;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uka5HSioFm .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uka5HSioFm .text-wrapper {
    text-align: center;
  }
  .cid-uka5HSioFm .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-uka5HSioFm .mbr-text {
    margin-bottom: 20px;
  }
  .cid-uka5HSioFm .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uka5HSioFm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uka5HSioFm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uka5HSioFm .card-title,
.cid-uka5HSioFm .icon_block {
  color: #131313;
}
.cid-uka5HSioFm .mbr-text,
.cid-uka5HSioFm .mbr-section-btn {
  color: #131313;
}
.cid-uwkJM2zlmR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uwkJM2zlmR nav.navbar {
  position: fixed;
}
.cid-uwkJM2zlmR .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-uwkJM2zlmR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwkJM2zlmR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwkJM2zlmR .dropdown-item:hover,
.cid-uwkJM2zlmR .dropdown-item:focus {
  background: #999999 !important;
  color: white !important;
}
.cid-uwkJM2zlmR .dropdown-item:hover span {
  color: white;
}
.cid-uwkJM2zlmR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwkJM2zlmR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwkJM2zlmR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwkJM2zlmR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwkJM2zlmR .nav-link {
  position: relative;
}
.cid-uwkJM2zlmR .container {
  display: flex;
  margin: auto;
}
.cid-uwkJM2zlmR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uwkJM2zlmR .dropdown-menu,
.cid-uwkJM2zlmR .navbar.opened {
  background: #202020 !important;
}
.cid-uwkJM2zlmR .nav-item:focus,
.cid-uwkJM2zlmR .nav-link:focus {
  outline: none;
}
.cid-uwkJM2zlmR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwkJM2zlmR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwkJM2zlmR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwkJM2zlmR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwkJM2zlmR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwkJM2zlmR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwkJM2zlmR .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uwkJM2zlmR .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uwkJM2zlmR .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uwkJM2zlmR .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #202020;
  padding: 0 12px !important;
}
.cid-uwkJM2zlmR .navbar.opened {
  transition: all 0.3s;
}
.cid-uwkJM2zlmR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwkJM2zlmR .navbar .navbar-logo img {
  width: auto;
}
.cid-uwkJM2zlmR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uwkJM2zlmR .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uwkJM2zlmR .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uwkJM2zlmR .navbar.collapsed {
  justify-content: center;
}
.cid-uwkJM2zlmR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwkJM2zlmR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uwkJM2zlmR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwkJM2zlmR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwkJM2zlmR .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-uwkJM2zlmR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uwkJM2zlmR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwkJM2zlmR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwkJM2zlmR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwkJM2zlmR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwkJM2zlmR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwkJM2zlmR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwkJM2zlmR .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-uwkJM2zlmR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwkJM2zlmR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwkJM2zlmR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwkJM2zlmR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwkJM2zlmR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwkJM2zlmR .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uwkJM2zlmR .navbar.navbar-short {
  min-height: 60px;
}
.cid-uwkJM2zlmR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwkJM2zlmR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uwkJM2zlmR .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uwkJM2zlmR .navbar {
    padding: 0 50px !important;
  }
}
.cid-uwkJM2zlmR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uwkJM2zlmR .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uwkJM2zlmR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uwkJM2zlmR .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uwkJM2zlmR .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
  display: none !important;
}
.cid-uwkJM2zlmR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwkJM2zlmR .dropdown-item.active,
.cid-uwkJM2zlmR .dropdown-item:active {
  background-color: transparent;
}
.cid-uwkJM2zlmR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwkJM2zlmR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwkJM2zlmR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwkJM2zlmR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #202020;
}
.cid-uwkJM2zlmR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwkJM2zlmR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwkJM2zlmR ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uwkJM2zlmR ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uwkJM2zlmR .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uwkJM2zlmR .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uwkJM2zlmR .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uwkJM2zlmR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uwkJM2zlmR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #bbbbbb;
}
.cid-uwkJM2zlmR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uwkJM2zlmR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uwkJM2zlmR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uwkJM2zlmR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uwkJM2zlmR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwkJM2zlmR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uwkJM2zlmR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uwkJM2zlmR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwkJM2zlmR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uwkJM2zlmR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwkJM2zlmR .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-uwkJM2zlmR .navbar {
    height: 100px;
  }
  .cid-uwkJM2zlmR .navbar.opened {
    height: auto;
  }
  .cid-uwkJM2zlmR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwkJM2zlmR .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uwkJM2zlmR .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uwkJM2zlmR .nav-link:before {
  content: '';
  position: absolute;
  color: #999999;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-uwkJM2PYeA {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwkJM2PYeA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwkJM2PYeA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwkJM2PYeA .container-fluid {
  padding: 0;
}
.cid-uwkJM2PYeA .row {
  padding: 0;
}
.cid-uwkJM2PYeA .title-wrapper {
  padding: 0 2rem;
}
.cid-uwkJM2PYeA .title-wrapper .mbr-section-subtitle {
  margin-bottom: 29px;
  letter-spacing: -0.04ch;
}
@media (max-width: 992px) {
  .cid-uwkJM2PYeA .title-wrapper .mbr-section-subtitle {
    margin-bottom: 16px;
  }
}
.cid-uwkJM2PYeA .title-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .cid-uwkJM2PYeA .title-wrapper .mbr-section-title {
    margin-bottom: 14px;
  }
}
.cid-uwkJM2PYeA .title-wrapper .mbr-text {
  margin-bottom: 29px;
}
@media (max-width: 768px) {
  .cid-uwkJM2PYeA .title-wrapper .mbr-text {
    margin-bottom: 16px;
  }
}
.cid-uwkJM2PYeA .title-wrapper .mbr-section-btn {
  margin-bottom: 29px;
}
@media (max-width: 768px) {
  .cid-uwkJM2PYeA .title-wrapper .mbr-section-btn {
    margin-bottom: 16px;
  }
}
.cid-uwkJM2PYeA .title-wrapper img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uwkJM2PYeA .title-wrapper img {
    max-height: 300px;
  }
}
.cid-uwkJM2PYeA .mbr-section-title {
  color: #1c314e;
}
.cid-uwkJM2PYeA .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uwkJM2PYeA .mbr-text {
  color: #131313;
  text-align: center;
}
.cid-uwkJM2PYeA .mbr-section-title,
.cid-uwkJM2PYeA .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uwkJM33SJ0 {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uwkJM33SJ0 .mbr-fallback-image.disabled {
  display: none;
}
@media (max-width: 767px) {
  .cid-uwkJM33SJ0 .display-1 {
    font-size: 2rem;
  }
}
.cid-uwkJM33SJ0 a {
  display: block;
  width: 100%;
}
.cid-uwkJM33SJ0 a:hover {
  background-image: none !important;
}
.cid-uwkJM33SJ0 .content-wrap {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.cid-uwkJM33SJ0 .content-wrap:before {
  content: '';
  width: 150%;
  height: 0%;
  background: #999999;
  position: absolute;
  transition: all 0.5s;
  left: -25%;
  bottom: -25%;
  transform: rotate(2deg);
}
.cid-uwkJM33SJ0 .content-wrap:after {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  transition: all 0.5s;
  background: #999999;
  right: 20px;
  top: 50%;
  transform: translateY(-10px);
  border-radius: 50%;
}
.cid-uwkJM33SJ0 .content-wrap:hover:before {
  height: 150%;
}
.cid-uwkJM33SJ0 .content-wrap:hover:after {
  background-color: #bbbbbb;
  right: 40px;
}
.cid-uwkJM33SJ0 .content-wrap:hover .mbr-section-title,
.cid-uwkJM33SJ0 .content-wrap:hover .mbr-section-title a {
  color: #bbbbbb !important;
  z-index: 2;
  position: relative;
}
.cid-uwkJM33SJ0 .content-wrap:hover .mbr-section-title {
  padding-left: 2rem;
}
.cid-uwkJM33SJ0 .mbr-section-title {
  margin-top: 2rem;
  transition: all 0.3s;
  padding: 0 1rem;
  color: #d70081;
}
.cid-uwkJM33SJ0 .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-uwkJM33SJ0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwkJM33SJ0 .mbr-section-subtitle,
.cid-uwkJM33SJ0 .line {
  color: #291f1e;
}
.cid-uwkJM33SJ0 .mbr-text,
.cid-uwkJM33SJ0 .mbr-section-btn {
  text-align: left;
  color: #291f1e;
}
.cid-uwkJM33SJ0 .mbr-section-title,
.cid-uwkJM33SJ0 .line {
  color: #291f1e;
}
.cid-uwkJM3hD2q {
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-uwkJM3hD2q .mbr-section-subtitle {
  color: #767676;
}
.cid-uwkJM3hD2q .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uwkJM3hD2q .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uwkJM3hD2q .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uwkJM3hD2q .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uwkJM3hD2q .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #59585d;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uwkJM3hD2q .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-uwkJM3hD2q .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uwkJM3hD2q .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-uwkJM3hD2q .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uwkJM3hD2q .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-uwkJM3hD2q ul {
  font-size: 0;
}
.cid-uwkJM3hD2q .mbr-gallery-filter ul {
  text-align: left;
}
.cid-uwkJM3hD2q .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-uwkJM3hD2q .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-uwkJM3hD2q .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-uwkJM3hD2q .mbr-gallery-filter ul li:first-child,
.cid-uwkJM3hD2q .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-uwkJM3hD2q .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-uwkJM3hD2q .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-uwkJM3hD2q .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-uwkJM3hD2q .btn.active:after {
  animation: none;
}
.cid-uwkJM3hD2q .btn:active {
  box-shadow: none !important;
}
.cid-uwkJM3hD2q .btn:hover {
  background: transparent !important;
}
.cid-uwkJM3hD2q .btn:hover:before {
  background: transparent !important;
}
.cid-uwkJM3hD2q .btn:before {
  background-color: transparent !important;
}
.cid-uwkJM3hD2q .btn:focus {
  box-shadow: none !important;
}
.cid-uwkJM3JyhD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwkJM3JyhD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwkJM3JyhD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwkJM3JyhD .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.cid-uwkJM3JyhD .line2 {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-top: 2rem;
}
.cid-uwkJM3JyhD .title .num {
  width: 100%;
  display: block;
}
.cid-uwkJM3JyhD .title .card-title {
  z-index: 1;
}
.cid-uwkJM3JyhD .num {
  color: #291f1e;
}
.cid-uwkJM3JyhD .item-mb {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uwkJM3JyhD .item-mb {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uwkJM3JyhD * {
    text-align: center !important;
  }
  .cid-uwkJM3JyhD .content-column {
    margin-bottom: 2rem;
  }
}
.cid-uwkJM3JyhD .card-title,
.cid-uwkJM3JyhD .card-img {
  color: #291f1e;
}
.cid-uwkJM3JyhD .card-text {
  color: #291f1e;
}
.cid-uwkJM3JyhD .mbr-section-title,
.cid-uwkJM3JyhD .card-box {
  text-align: left;
}
.cid-uwkJM3JyhD .mbr-section-title,
.cid-uwkJM3JyhD .line {
  color: #291f1e;
}
.cid-uwkJM3JyhD .card-text,
.cid-uwkJM3JyhD .line2 {
  color: #291f1e;
}
.cid-uwkJM47FMC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwkJM47FMC .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uwkJM47FMC .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uwkJM47FMC .container {
    padding: 0 26px;
  }
}
.cid-uwkJM47FMC .row {
  justify-content: center;
}
.cid-uwkJM47FMC .content-wrapper .content-wrap {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uwkJM47FMC .content-wrapper .content-wrap {
    margin-bottom: 40px;
  }
}
.cid-uwkJM47FMC .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uwkJM47FMC .content-wrapper .content-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uwkJM47FMC .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-uwkJM47FMC .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uwkJM47FMC .embla__slide .slide-content {
  width: 100%;
}
.cid-uwkJM47FMC .embla__slide .slide-content .item-wrapper {
  padding: 0 150px;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 1440px) {
  .cid-uwkJM47FMC .embla__slide .slide-content .item-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-uwkJM47FMC .embla__slide .slide-content .item-wrapper {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-uwkJM47FMC .embla__slide .slide-content .item-wrapper {
    display: block;
  }
}
.cid-uwkJM47FMC .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  width: 40%;
  padding: 50px 50px 0 0;
}
@media (max-width: 768px) {
  .cid-uwkJM47FMC .embla__slide .slide-content .item-wrapper .item-content {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uwkJM47FMC .embla__slide .slide-content .item-wrapper .item-content .item-number {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uwkJM47FMC .embla__slide .slide-content .item-wrapper .item-content .item-number {
    margin-bottom: 40px;
  }
}
.cid-uwkJM47FMC .embla__slide .slide-content .item-wrapper .item-content .text-wrapper {
  border-top: 1px solid #000000;
  padding-top: 10px;
}
.cid-uwkJM47FMC .embla__slide .slide-content .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 16px;
}
.cid-uwkJM47FMC .embla__slide .slide-content .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 0;
}
.cid-uwkJM47FMC .embla__slide .slide-content .item-wrapper .item-img {
  width: 60%;
}
@media (max-width: 768px) {
  .cid-uwkJM47FMC .embla__slide .slide-content .item-wrapper .item-img {
    width: 100%;
  }
}
.cid-uwkJM47FMC .embla__slide .slide-content .item-wrapper .item-img img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uwkJM47FMC .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uwkJM47FMC .embla__button--next,
.cid-uwkJM47FMC .embla__button--prev {
  display: flex;
}
.cid-uwkJM47FMC .embla__button {
  top: 50%;
  width: 25px;
  height: 25px;
  margin-top: -1.5rem;
  font-size: 25px;
  background-color: transparent !important;
  color: #999999 !important;
  border: none !important;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uwkJM47FMC .embla__button:hover {
  opacity: .6 !important;
}
.cid-uwkJM47FMC .embla__button.embla__button--prev {
  left: 0;
}
.cid-uwkJM47FMC .embla__button.embla__button--next {
  right: 0;
}
@media (max-width: 992px) {
  .cid-uwkJM47FMC .embla__button {
    top: 0;
  }
}
.cid-uwkJM47FMC .embla {
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uwkJM47FMC .embla {
    padding-top: 25px;
  }
}
.cid-uwkJM47FMC .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uwkJM47FMC .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uwkJM47FMC .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uwkJM47FMC .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uwkJM47FMC .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uwkJM47FMC .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uwkJM47FMC .item-number {
  color: #000000;
  text-align: center;
}
.cid-uwkJM47FMC .item-title {
  color: #000000;
}
.cid-uwkJM47FMC .item-text {
  color: #000000;
}
.cid-uwkJM47FMC .mbr-section-title,
.cid-uwkJM47FMC .mbr-section-btn {
  text-align: left;
}
.cid-uwkJM4BNPm {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwkJM4BNPm .mbr-overlay {
  background: #5eeebb;
}
.cid-uwkJM4BNPm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uwkJM4BNPm .card-title {
  margin-bottom: 26px;
}
.cid-uwkJM4BNPm .mbr-text {
  margin-bottom: 30px;
}
.cid-uwkJM4BNPm .iconfont-wrapper {
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cid-uwkJM4BNPm .iconfont-wrapper:before {
  content: "";
  top: 0;
  left: 50%;
  bottom: 0;
  z-index: -1;
  width: 60px;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.07);
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
}
.cid-uwkJM4BNPm .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  height: 75px;
  line-height: 75px;
  font-size: 46px;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uwkJM4BNPm .text-wrapper {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwkJM4BNPm .text-wrapper {
    text-align: center;
  }
  .cid-uwkJM4BNPm .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-uwkJM4BNPm .mbr-text {
    margin-bottom: 20px;
  }
  .cid-uwkJM4BNPm .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwkJM4BNPm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwkJM4BNPm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwkJM4BNPm .card-title,
.cid-uwkJM4BNPm .icon_block {
  color: #131313;
}
.cid-uwkJM4BNPm .mbr-text,
.cid-uwkJM4BNPm .mbr-section-btn {
  color: #131313;
}
.cid-uwkJM4VNoo {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwkJM4VNoo .mbr-overlay {
  background: #5eeebb;
}
.cid-uwkJM4VNoo .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uwkJM4VNoo .card-title {
  margin-bottom: 26px;
}
.cid-uwkJM4VNoo .mbr-text {
  margin-bottom: 30px;
}
.cid-uwkJM4VNoo .iconfont-wrapper {
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cid-uwkJM4VNoo .iconfont-wrapper:before {
  content: "";
  top: 0;
  left: 50%;
  bottom: 0;
  z-index: -1;
  width: 60px;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.07);
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
}
.cid-uwkJM4VNoo .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  height: 75px;
  line-height: 75px;
  font-size: 46px;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uwkJM4VNoo .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwkJM4VNoo .text-wrapper {
    text-align: center;
  }
  .cid-uwkJM4VNoo .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-uwkJM4VNoo .mbr-text {
    margin-bottom: 20px;
  }
  .cid-uwkJM4VNoo .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwkJM4VNoo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwkJM4VNoo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwkJM4VNoo .card-title,
.cid-uwkJM4VNoo .icon_block {
  color: #131313;
}
.cid-uwkJM4VNoo .mbr-text,
.cid-uwkJM4VNoo .mbr-section-btn {
  color: #131313;
}
.cid-uwkJM5f23P {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwkJM5f23P .mbr-overlay {
  background: #5eeebb;
}
.cid-uwkJM5f23P .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uwkJM5f23P .card-title {
  margin-bottom: 26px;
}
.cid-uwkJM5f23P .mbr-text {
  margin-bottom: 30px;
}
.cid-uwkJM5f23P .iconfont-wrapper {
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.cid-uwkJM5f23P .iconfont-wrapper:before {
  content: "";
  top: 0;
  left: 50%;
  bottom: 0;
  z-index: -1;
  width: 60px;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.07);
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
}
.cid-uwkJM5f23P .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  height: 75px;
  line-height: 75px;
  font-size: 46px;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uwkJM5f23P .text-wrapper {
    padding-right: 0;
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwkJM5f23P .text-wrapper {
    text-align: center;
  }
  .cid-uwkJM5f23P .image-wrapper {
    margin-bottom: 40px;
  }
  .cid-uwkJM5f23P .mbr-text {
    margin-bottom: 20px;
  }
  .cid-uwkJM5f23P .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uwkJM5f23P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwkJM5f23P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwkJM5f23P .card-title,
.cid-uwkJM5f23P .icon_block {
  color: #131313;
}
.cid-uwkJM5f23P .mbr-text,
.cid-uwkJM5f23P .mbr-section-btn {
  color: #131313;
}
