body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Poppins', 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: #8b8c8d !important;
}
.bg-success {
  background-color: #7eb7bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #8b8c8d !important;
  border-color: #8b8c8d !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: #606161 !important;
  border-color: #606161 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #606161 !important;
  border-color: #606161 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #4756a2 !important;
  border-color: #4756a2 !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: #2d3666 !important;
  border-color: #2d3666 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #2d3666 !important;
  border-color: #2d3666 !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: #7eb7bf !important;
  border-color: #7eb7bf !important;
  color: #ffffff !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: #4c909a !important;
  border-color: #4c909a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #4c909a !important;
  border-color: #4c909a !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: #ff9966 !important;
  border-color: #ff9966 !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: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  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: #8b8c8d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #606161 !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: #8b8c8d !important;
  border-color: #8b8c8d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #4756a2;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #2d3666 !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: #4756a2 !important;
  border-color: #4756a2 !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: #7eb7bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #4c909a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #7eb7bf !important;
  border-color: #7eb7bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #8b8c8d !important;
}
.text-secondary {
  color: #4756a2 !important;
}
.text-success {
  color: #7eb7bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #58595a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #28305b !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #478790 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #8b8c8d;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #8b8c8d;
  border-color: #8b8c8d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #8b8c8d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #cbcccc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #d3e7e9;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Poppins', 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: #8b8c8d !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Poppins', 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: #8b8c8d;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #8b8c8d;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #8b8c8d;
}
.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: #8b8c8d;
  border-bottom-color: #8b8c8d;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #8b8c8d !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #4756a2 !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='%238b8c8d' %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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-uJmLvvI4S8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uJmLvvI4S8 nav.navbar {
  position: fixed;
}
.cid-uJmLvvI4S8 .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-uJmLvvI4S8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uJmLvvI4S8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uJmLvvI4S8 .dropdown-item:hover,
.cid-uJmLvvI4S8 .dropdown-item:focus {
  background: #8b8c8d !important;
  color: white !important;
}
.cid-uJmLvvI4S8 .dropdown-item:hover span {
  color: white;
}
.cid-uJmLvvI4S8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJmLvvI4S8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJmLvvI4S8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uJmLvvI4S8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJmLvvI4S8 .nav-link {
  position: relative;
}
.cid-uJmLvvI4S8 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uJmLvvI4S8 .container {
    flex-wrap: wrap;
  }
}
.cid-uJmLvvI4S8 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uJmLvvI4S8 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uJmLvvI4S8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uJmLvvI4S8 .dropdown-menu,
.cid-uJmLvvI4S8 .navbar.opened {
  background: #ffffff !important;
}
.cid-uJmLvvI4S8 .nav-item:focus,
.cid-uJmLvvI4S8 .nav-link:focus {
  outline: none;
}
.cid-uJmLvvI4S8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJmLvvI4S8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJmLvvI4S8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJmLvvI4S8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJmLvvI4S8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJmLvvI4S8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJmLvvI4S8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uJmLvvI4S8 .navbar.opened {
  transition: all 0.3s;
}
.cid-uJmLvvI4S8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJmLvvI4S8 .navbar .navbar-logo img {
  width: auto;
}
.cid-uJmLvvI4S8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJmLvvI4S8 .navbar.collapsed {
  justify-content: center;
}
.cid-uJmLvvI4S8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJmLvvI4S8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJmLvvI4S8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.1rem);
  }
}
.cid-uJmLvvI4S8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJmLvvI4S8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJmLvvI4S8 .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-uJmLvvI4S8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJmLvvI4S8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJmLvvI4S8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJmLvvI4S8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJmLvvI4S8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJmLvvI4S8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJmLvvI4S8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJmLvvI4S8 .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-uJmLvvI4S8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJmLvvI4S8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJmLvvI4S8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJmLvvI4S8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJmLvvI4S8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJmLvvI4S8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uJmLvvI4S8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uJmLvvI4S8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJmLvvI4S8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJmLvvI4S8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJmLvvI4S8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uJmLvvI4S8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJmLvvI4S8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJmLvvI4S8 .dropdown-item.active,
.cid-uJmLvvI4S8 .dropdown-item:active {
  background-color: transparent;
}
.cid-uJmLvvI4S8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJmLvvI4S8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJmLvvI4S8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJmLvvI4S8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uJmLvvI4S8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJmLvvI4S8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJmLvvI4S8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJmLvvI4S8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJmLvvI4S8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJmLvvI4S8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uJmLvvI4S8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJmLvvI4S8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJmLvvI4S8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJmLvvI4S8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJmLvvI4S8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJmLvvI4S8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJmLvvI4S8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJmLvvI4S8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJmLvvI4S8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJmLvvI4S8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uJmLvvI4S8 .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-uJmLvvI4S8 .navbar {
    height: 70px;
  }
  .cid-uJmLvvI4S8 .navbar.opened {
    height: auto;
  }
  .cid-uJmLvvI4S8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJmLfb7Iop {
  padding-top: 1rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uJmLfb7Iop .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uJmLfb7Iop .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uJmLfb7Iop .container {
    padding: 0 20px;
  }
}
.cid-uJmLfb7Iop .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-uJmLfb7Iop .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uJmLfb7Iop .embla__slide .slide-content {
  width: 100%;
}
.cid-uJmLfb7Iop .embla__slide .slide-content .item-wrapper {
  height: 100%;
}
.cid-uJmLfb7Iop .embla__slide .slide-content .item-wrapper .item-img {
  position: relative;
  min-height: 830px;
  border-radius: 20px !important;
  overflow: hidden;
  padding: 60px 86px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uJmLfb7Iop .embla__slide .slide-content .item-wrapper .item-img {
    padding: 46px 20px 46px;
    min-height: auto;
    height: 100%;
  }
}
.cid-uJmLfb7Iop .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uJmLfb7Iop .embla__slide .slide-content .item-wrapper .item-img .item-desc {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.cid-uJmLfb7Iop .embla__slide .slide-content .item-wrapper .item-img .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.cid-uJmLfb7Iop .embla__slide .slide-content .item-wrapper .item-img .title-wrapper .title-wrap .item-title {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .cid-uJmLfb7Iop .embla__slide .slide-content .item-wrapper .item-img .title-wrapper .title-wrap .item-title {
    width: 100%;
  }
}
.cid-uJmLfb7Iop .embla__slide .slide-content .item-wrapper .item-img .name-wrapper {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin: 0 auto;
}
.cid-uJmLfb7Iop .embla__slide .slide-content .item-wrapper .item-img .name-wrapper .icon-wrapper {
  margin-right: 32px;
}
@media (max-width: 768px) {
  .cid-uJmLfb7Iop .embla__slide .slide-content .item-wrapper .item-img .name-wrapper .icon-wrapper {
    margin-right: 16px;
  }
}
.cid-uJmLfb7Iop .embla__slide .slide-content .item-wrapper .item-img .name-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 86px;
  border-radius: 100%;
  color: #000000;
}
.cid-uJmLfb7Iop .embla__slide .slide-content .item-wrapper .item-img .name-wrapper .icon-wrapper .name-wrap .item-name {
  margin-bottom: 16px;
}
.cid-uJmLfb7Iop .embla__slide .slide-content .item-wrapper .item-img .name-wrapper .icon-wrapper .name-wrap .item-role {
  margin-bottom: 0;
}
.cid-uJmLfb7Iop .embla__button--next,
.cid-uJmLfb7Iop .embla__button--prev {
  display: flex;
}
.cid-uJmLfb7Iop .embla__button {
  top: 50%;
  width: 48px;
  height: 48px;
  margin-top: -1.5rem;
  font-size: 18px;
  background-color: transparent !important;
  color: #8b8c8d !important;
  border: 2px solid #8b8c8d !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: .6 !important;
}
@media (max-width: 768px) {
  .cid-uJmLfb7Iop .embla__button {
    top: 2.5rem;
    color: #8b8c8d !important;
    border: 2px solid #8b8c8d !important;
  }
}
@media (max-width: 768px) {
  .cid-uJmLfb7Iop .embla__button {
    display: none;
  }
}
.cid-uJmLfb7Iop .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uJmLfb7Iop .embla__button:hover {
  opacity: 1 !important;
}
.cid-uJmLfb7Iop .embla__button.embla__button--prev {
  left: 30px;
}
.cid-uJmLfb7Iop .embla__button.embla__button--next {
  right: 30px;
}
.cid-uJmLfb7Iop .embla {
  position: relative;
  width: 100%;
}
.cid-uJmLfb7Iop .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uJmLfb7Iop .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uJmLfb7Iop .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uJmLfb7Iop .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uJmLfb7Iop .item-desc {
  color: #28282c;
  text-align: center;
}
.cid-uJmLfb7Iop .item-title {
  color: #000000;
}
.cid-uJmLfb7Iop .item-name {
  color: #000000;
}
.cid-uJmLfb7Iop .item-role {
  color: #000000;
}
.cid-uJmLfb7Iop .list {
  color: #000000;
}
.cid-uJmLfb7Iop .item-title,
.cid-uJmLfb7Iop .mbr-section-btn,
.cid-uJmLfb7Iop .title-wrap {
  text-align: center;
  color: #232323;
}
.cid-uJmSI6wO7C {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uJmSI6wO7C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJmSI6wO7C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uJmSI6wO7C .container {
    padding: 0 30px;
  }
}
.cid-uJmSI6wO7C .card {
  justify-content: center;
}
.cid-uJmSI6wO7C .content-wrapper {
  padding: 0 120px;
}
@media (max-width: 1440px) {
  .cid-uJmSI6wO7C .content-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-uJmSI6wO7C .content-wrapper {
    padding: 0;
  }
}
.cid-uJmSI6wO7C .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  position: relative;
  align-items: center;
  margin-bottom: 60px;
  padding-left: 120px;
}
@media (max-width: 992px) {
  .cid-uJmSI6wO7C .content-wrapper .desc-wrapper .mbr-desc {
    margin-bottom: 40px;
    padding-left: 60px;
  }
}
.cid-uJmSI6wO7C .content-wrapper .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  left: 0;
  width: 90px;
  height: 1px;
  background-color: #8b8c8d;
}
@media (max-width: 992px) {
  .cid-uJmSI6wO7C .content-wrapper .desc-wrapper .mbr-desc::before {
    width: 40px;
  }
}
.cid-uJmSI6wO7C .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uJmSI6wO7C .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-uJmSI6wO7C .mbr-desc {
  color: #254b45;
}
.cid-uJmSI6wO7C .mbr-section-title {
  color: #254b45;
}
.cid-uJmSI6wO7C .mbr-text {
  color: #8b8c8d;
}
.cid-uJmSI6wO7C .mbr-section-title,
.cid-uJmSI6wO7C .mbr-section-btn {
  color: #7eb7bf;
}
.cid-uJmSI6wO7C .mbr-desc,
.cid-uJmSI6wO7C .desc-wrapper {
  color: #8b8c8d;
}
.cid-uJmV7WSe38 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uJmV7WSe38 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJmV7WSe38 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uJmV7WSe38 .container {
    padding: 0 30px;
  }
}
.cid-uJmV7WSe38 .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uJmV7WSe38 .row {
    margin: 0 -34px;
  }
}
.cid-uJmV7WSe38 .card {
  padding: 0 34px;
}
@media (max-width: 992px) {
  .cid-uJmV7WSe38 .card {
    margin-bottom: 40px;
    padding: 0 12px;
  }
}
.cid-uJmV7WSe38 .card .card-wrapper .mbr-number {
  margin-bottom: 25px;
}
.cid-uJmV7WSe38 .card .card-wrapper .mbr-card-title {
  margin-bottom: 25px;
}
.cid-uJmV7WSe38 .card .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJmV7WSe38 .mbr-number {
  color: #000000;
  text-align: center;
}
.cid-uJmV7WSe38 .mbr-card-title {
  color: #7eb7bf;
  text-align: center;
}
.cid-uJmV7WSe38 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uShoNskWU6 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uShoNskWU6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uShoNskWU6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uShoNskWU6 .container {
    padding: 0 30px;
  }
}
.cid-uShoNskWU6 .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uShoNskWU6 .row {
    margin: 0 -34px;
  }
}
.cid-uShoNskWU6 .card {
  padding: 0 34px;
}
@media (max-width: 992px) {
  .cid-uShoNskWU6 .card {
    margin-bottom: 40px;
    padding: 0 12px;
  }
}
.cid-uShoNskWU6 .card .card-wrapper .mbr-number {
  margin-bottom: 25px;
}
.cid-uShoNskWU6 .card .card-wrapper .mbr-card-title {
  margin-bottom: 25px;
}
.cid-uShoNskWU6 .card .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uShoNskWU6 .mbr-number {
  color: #000000;
  text-align: center;
}
.cid-uShoNskWU6 .mbr-card-title {
  color: #7eb7bf;
  text-align: center;
}
.cid-uShoNskWU6 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uJmV9H8G1Y {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #28282c;
}
.cid-uJmV9H8G1Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJmV9H8G1Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJmV9H8G1Y .container,
.cid-uJmV9H8G1Y .container-fluid {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #28282c;
}
.cid-uJmV9H8G1Y .col-text {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uJmV9H8G1Y .col-text {
    max-width: 624px;
  }
}
.cid-uJmV9H8G1Y .mbr-section-title {
  color: #fafafa;
}
.cid-uJmV9H8G1Y .mbr-section-subtitle {
  margin-top: 8px;
  color: #fafafa;
}
.cid-uJmV9H8G1Y .mbr-text {
  margin-top: 24px;
  color: #bbbbbb;
}
.cid-uJmV9H8G1Y .cards {
  margin-top: 2rem;
  row-gap: 32px;
}
.cid-uJmV9H8G1Y .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-uJmV9H8G1Y .card:not(:first-child) {
    border-left: 1px solid #c1c1c1;
  }
}
.cid-uJmV9H8G1Y .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-uJmV9H8G1Y .mbr-iconfont {
  display: block;
  font-size: 56px;
  color: #fafafa;
  margin-bottom: 1rem;
}
.cid-uJmV9H8G1Y .card-title {
  color: #fafafa;
}
.cid-uJpdMpq7F3 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uJpdMpq7F3 .mbr-section-subtitle {
  color: #8c8c95;
  text-align: center;
  max-width: 552px;
  margin: auto;
}
.cid-uJpdMpq7F3 .mbr-section-title {
  text-align: center;
  color: #28282c;
  padding-bottom: 24px;
}
.cid-uJpdMpq7F3 .row {
  align-items: center;
  height: 100%;
}
.cid-uJpdMpq7F3 .wrapper {
  margin: auto;
}
.cid-uJpdMpq7F3 .subtitle {
  display: inline;
  width: auto;
  color: #8c8c95;
}
.cid-uJpdMpq7F3 .mbr-section-btn {
  display: inline;
  width: auto;
  margin-right: 25px;
}
.cid-uJpdMpq7F3 .title-block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 24px;
}
.cid-uJpdMpq7F3 a.btn {
  padding: 16px 25px !important;
}
@media (max-width: 340px) {
  .cid-uJpdMpq7F3 .title-block {
    display: flex;
    flex-direction: column;
  }
  .cid-uJpdMpq7F3 .mbr-section-btn {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.cid-uJpfFFVQcq {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uJpfFFVQcq .iconfont-wrapper .mbr-iconfont {
  display: flex;
  font-size: 3rem;
  color: #7eb7bf;
  background: #fafafa;
  width: 110px;
  height: 110px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: auto;
  transition: all 0.3s;
  margin-bottom: 2rem;
  border: 1px solid transparent;
}
.cid-uJpfFFVQcq .iconfont-wrapper .mbr-iconfont:hover {
  background: transparent;
  border: 1px solid #7eb7bf;
}
.cid-uJpfFFVQcq .card-wrapper {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.cid-uJpfFFVQcq .row {
  justify-content: center;
}
@media (min-width: 1400px) {
  .cid-uJpfFFVQcq .card {
    max-width: 14.2%;
  }
}
.cid-uJpfFFVQcq .card-title,
.cid-uJpfFFVQcq .iconfont-wrapper {
  color: #7eb7bf;
}
.cid-uJpfFFVQcq .mbr-section-title {
  color: #103178;
}
.cid-uJpfFFVQcq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJpfFFVQcq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJpe1NyTio {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  background-color: #28282c;
}
.cid-uJpe1NyTio .bg-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ffffff;
  height: 100%;
  width: 30%;
}
.cid-uJpe1NyTio .card-title {
  color: #ffffff;
}
.cid-uJpe1NyTio .mbr-text,
.cid-uJpe1NyTio .mbr-section-btn {
  color: #9b9ba5;
}
@media (min-width: 992px) {
  .cid-uJpe1NyTio .text-wrapper {
    padding-left: 5rem;
  }
  .cid-uJpe1NyTio .image-wrapper img {
    width: 650px;
    height: 615px;
    object-fit: cover;
  }
  .cid-uJpe1NyTio .item-btn {
    width: 10.6rem;
    height: 10.6rem;
  }
  .cid-uJpe1NyTio .item-btn:hover {
    color: #ffffff;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uJpe1NyTio .text-wrapper {
    padding-left: 2rem;
    position: relative;
  }
  .cid-uJpe1NyTio .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uJpe1NyTio .item-btn {
    width: 7rem;
    height: 7rem;
  }
}
@media (max-width: 767px) {
  .cid-uJpe1NyTio .bg-wrapper {
    display: none;
  }
  .cid-uJpe1NyTio .text-wrapper {
    text-align: center;
  }
  .cid-uJpe1NyTio .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uJpe1NyTio .item-btn {
    width: 7rem;
    height: 7rem;
    position: static;
  }
}
.cid-uJpe1NyTio .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 600px) {
  .cid-uJpe1NyTio .card-title {
    letter-spacing: -1px;
  }
}
.cid-uJprFiYe7D {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #fafafa;
}
.cid-uJprFiYe7D h3 {
  text-align: center;
}
.cid-uJprFiYe7D h2 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 4px;
}
.cid-uJprFiYe7D h2:before {
  position: absolute;
  content: "";
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uJprFiYe7D h2:after {
  position: absolute;
  content: "";
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uJprFiYe7D .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-uJprFiYe7D .mbr-section-subtitle {
  color: #767676;
}
.cid-uJprFiYe7D .pie_progress__number {
  text-align: center !important;
}
.cid-uJprFiYe7D .card-title {
  margin-bottom: 0;
}
.cid-uJprFiYe7D .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-uJprFiYe7D .svg-gradient {
  position: absolute;
}
.cid-uJprFiYe7D ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
.cid-uJprFiYe7D path {
  stroke: #7eb7bf;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uJprFiYe7D .card {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 768px) {
  .cid-uJprFiYe7D h2:before,
  .cid-uJprFiYe7D h2:after {
    display: none;
  }
}
.cid-uJprFiYe7D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJprFiYe7D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJpn2Mlofg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbeb7;
}
.cid-uJpn2Mlofg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJpn2Mlofg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJpn2Mlofg .row {
  justify-content: space-between;
}
.cid-uJpn2Mlofg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uJpn2Mlofg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uJpn2Mlofg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uJpn2Mlofg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uJpn2Mlofg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uJpn2Mlofg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uJpn2Mlofg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uJpn2Mlofg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uJpn2Mlofg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uJpn2Mlofg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uJpn2Mlofg .list-wrapper .list .item-wrap:hover,
.cid-uJpn2Mlofg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uJpn2Mlofg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uJpn2Mlofg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uJpn2Mlofg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uJpn2Mlofg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uJpn2Mlofg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uJpn2Mlofg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uJpn2Mlofg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uJpn2Mlofg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uJpn2Mlofg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uJpn2Mlofg .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uJpn2Mlofg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uJpn2Mlofg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uJpn2Mlofg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uJpn2Mlofg .mbr-section-title {
  color: #000000;
}
.cid-uJpn2Mlofg .mbr-text {
  color: #000000;
}
.cid-uJpn2Mlofg .list {
  color: #000000;
}
.cid-uJpn2Mlofg .mbr-desc {
  color: #000000;
}
.cid-uJpn2Mlofg .mbr-copy {
  color: #000000;
}
.cid-uJpn2Mlofg .mbr-desc,
.cid-uJpn2Mlofg .social-wrapper {
  text-align: center;
}
.cid-uJpn2Mlofg .mbr-copy,
.cid-uJpn2Mlofg .mbr-section-btn-main {
  text-align: center;
}
.cid-uJmLvvI4S8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uJmLvvI4S8 nav.navbar {
  position: fixed;
}
.cid-uJmLvvI4S8 .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-uJmLvvI4S8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uJmLvvI4S8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uJmLvvI4S8 .dropdown-item:hover,
.cid-uJmLvvI4S8 .dropdown-item:focus {
  background: #8b8c8d !important;
  color: white !important;
}
.cid-uJmLvvI4S8 .dropdown-item:hover span {
  color: white;
}
.cid-uJmLvvI4S8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJmLvvI4S8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJmLvvI4S8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uJmLvvI4S8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJmLvvI4S8 .nav-link {
  position: relative;
}
.cid-uJmLvvI4S8 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uJmLvvI4S8 .container {
    flex-wrap: wrap;
  }
}
.cid-uJmLvvI4S8 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uJmLvvI4S8 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uJmLvvI4S8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uJmLvvI4S8 .dropdown-menu,
.cid-uJmLvvI4S8 .navbar.opened {
  background: #ffffff !important;
}
.cid-uJmLvvI4S8 .nav-item:focus,
.cid-uJmLvvI4S8 .nav-link:focus {
  outline: none;
}
.cid-uJmLvvI4S8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJmLvvI4S8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJmLvvI4S8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJmLvvI4S8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJmLvvI4S8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJmLvvI4S8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJmLvvI4S8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uJmLvvI4S8 .navbar.opened {
  transition: all 0.3s;
}
.cid-uJmLvvI4S8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJmLvvI4S8 .navbar .navbar-logo img {
  width: auto;
}
.cid-uJmLvvI4S8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJmLvvI4S8 .navbar.collapsed {
  justify-content: center;
}
.cid-uJmLvvI4S8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJmLvvI4S8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJmLvvI4S8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uJmLvvI4S8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJmLvvI4S8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJmLvvI4S8 .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-uJmLvvI4S8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJmLvvI4S8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJmLvvI4S8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJmLvvI4S8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJmLvvI4S8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJmLvvI4S8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJmLvvI4S8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJmLvvI4S8 .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-uJmLvvI4S8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJmLvvI4S8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJmLvvI4S8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJmLvvI4S8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJmLvvI4S8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJmLvvI4S8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uJmLvvI4S8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uJmLvvI4S8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJmLvvI4S8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJmLvvI4S8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJmLvvI4S8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uJmLvvI4S8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJmLvvI4S8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJmLvvI4S8 .dropdown-item.active,
.cid-uJmLvvI4S8 .dropdown-item:active {
  background-color: transparent;
}
.cid-uJmLvvI4S8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJmLvvI4S8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJmLvvI4S8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJmLvvI4S8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uJmLvvI4S8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJmLvvI4S8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJmLvvI4S8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJmLvvI4S8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJmLvvI4S8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJmLvvI4S8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uJmLvvI4S8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJmLvvI4S8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJmLvvI4S8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJmLvvI4S8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJmLvvI4S8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJmLvvI4S8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJmLvvI4S8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJmLvvI4S8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJmLvvI4S8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJmLvvI4S8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uJmLvvI4S8 .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-uJmLvvI4S8 .navbar {
    height: 70px;
  }
  .cid-uJmLvvI4S8 .navbar.opened {
    height: auto;
  }
  .cid-uJmLvvI4S8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uShmTTwQ5T {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uShmTTwQ5T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uShmTTwQ5T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uShmTTwQ5T .content-wrapper .mbr-label {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uShmTTwQ5T .content-wrapper .mbr-label {
    margin-bottom: 15px;
  }
}
.cid-uShmTTwQ5T .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 70%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uShmTTwQ5T .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uShmTTwQ5T .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uShmTTwQ5T .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 15px;
  }
}
.cid-uShmTTwQ5T .mbr-label {
  color: #000000;
}
.cid-uShmTTwQ5T .mbr-section-title {
  color: #000000;
}
.cid-uShmTTwQ5T .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uSDtKbtbCD {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uSDtKbtbCD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSDtKbtbCD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uSDtKbtbCD .container {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .cid-uSDtKbtbCD .container {
    padding: 0 4px;
  }
}
.cid-uSDtKbtbCD .row {
  margin: 0;
}
.cid-uSDtKbtbCD .row .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uSDtKbtbCD .row .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uSDtKbtbCD .row .panel-group .card {
  border-bottom: 1px solid #838383;
  border-radius: 0 !important;
}
.cid-uSDtKbtbCD .row .panel-group .card:first-child {
  border-top: 1px solid #838383;
}
.cid-uSDtKbtbCD .row .panel-group .card .card-header {
  padding: 32px 0;
  border-bottom: none;
  background-color: transparent;
}
.cid-uSDtKbtbCD .row .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-uSDtKbtbCD .row .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-uSDtKbtbCD .row .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uSDtKbtbCD .row .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  transition: all 0.3s ease-out;
}
.cid-uSDtKbtbCD .row .panel-group .card .panel-collapse .panel-body {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uSDtKbtbCD .row .panel-group .card .panel-collapse .panel-body {
    margin-bottom: 32px;
  }
}
.cid-uSDtKbtbCD .row .panel-group .card .panel-collapse .panel-body .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uSDtKbtbCD .row .panel-group .card .panel-collapse .panel-body .mbr-text {
    margin-bottom: 32px;
  }
}
.cid-uSDtKbtbCD .mbr-section-title {
  color: #28282c;
  text-align: left;
}
.cid-uSDtKbtbCD .panel-title-edit,
.cid-uSDtKbtbCD .mbr-iconfont {
  color: #877f75;
}
.cid-uSDtKbtbCD .mbr-text {
  color: #28282c;
}
.cid-uSDuYJxSBK {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uSDuYJxSBK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSDuYJxSBK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uSDuYJxSBK .container {
    padding: 0 30px;
  }
}
.cid-uSDuYJxSBK .card {
  justify-content: center;
}
.cid-uSDuYJxSBK .content-wrapper {
  padding: 0 120px;
}
@media (max-width: 1440px) {
  .cid-uSDuYJxSBK .content-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-uSDuYJxSBK .content-wrapper {
    padding: 0;
  }
}
.cid-uSDuYJxSBK .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  position: relative;
  align-items: center;
  margin-bottom: 60px;
  padding-left: 120px;
}
@media (max-width: 992px) {
  .cid-uSDuYJxSBK .content-wrapper .desc-wrapper .mbr-desc {
    margin-bottom: 40px;
    padding-left: 60px;
  }
}
.cid-uSDuYJxSBK .content-wrapper .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  left: 0;
  width: 90px;
  height: 1px;
  background-color: #8b8c8d;
}
@media (max-width: 992px) {
  .cid-uSDuYJxSBK .content-wrapper .desc-wrapper .mbr-desc::before {
    width: 40px;
  }
}
.cid-uSDuYJxSBK .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uSDuYJxSBK .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-uSDuYJxSBK .mbr-desc {
  color: #254b45;
}
.cid-uSDuYJxSBK .mbr-section-title {
  color: #254b45;
}
.cid-uSDuYJxSBK .mbr-text {
  color: #8b8c8d;
}
.cid-uSDuYJxSBK .mbr-section-title,
.cid-uSDuYJxSBK .mbr-section-btn {
  color: #7eb7bf;
}
.cid-uSDuYJxSBK .mbr-desc,
.cid-uSDuYJxSBK .desc-wrapper {
  color: #8b8c8d;
}
.cid-uJpn2Mlofg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbeb7;
}
.cid-uJpn2Mlofg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJpn2Mlofg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJpn2Mlofg .row {
  justify-content: space-between;
}
.cid-uJpn2Mlofg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uJpn2Mlofg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uJpn2Mlofg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uJpn2Mlofg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uJpn2Mlofg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uJpn2Mlofg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uJpn2Mlofg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uJpn2Mlofg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uJpn2Mlofg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uJpn2Mlofg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uJpn2Mlofg .list-wrapper .list .item-wrap:hover,
.cid-uJpn2Mlofg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uJpn2Mlofg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uJpn2Mlofg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uJpn2Mlofg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uJpn2Mlofg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uJpn2Mlofg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uJpn2Mlofg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uJpn2Mlofg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uJpn2Mlofg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uJpn2Mlofg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uJpn2Mlofg .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uJpn2Mlofg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uJpn2Mlofg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uJpn2Mlofg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uJpn2Mlofg .mbr-section-title {
  color: #000000;
}
.cid-uJpn2Mlofg .mbr-text {
  color: #000000;
}
.cid-uJpn2Mlofg .list {
  color: #000000;
}
.cid-uJpn2Mlofg .mbr-desc {
  color: #000000;
}
.cid-uJpn2Mlofg .mbr-copy {
  color: #000000;
}
.cid-uJpn2Mlofg .mbr-desc,
.cid-uJpn2Mlofg .social-wrapper {
  text-align: center;
}
.cid-uJpn2Mlofg .mbr-copy,
.cid-uJpn2Mlofg .mbr-section-btn-main {
  text-align: center;
}
.cid-uJmLvvI4S8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uJmLvvI4S8 nav.navbar {
  position: fixed;
}
.cid-uJmLvvI4S8 .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-uJmLvvI4S8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uJmLvvI4S8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uJmLvvI4S8 .dropdown-item:hover,
.cid-uJmLvvI4S8 .dropdown-item:focus {
  background: #8b8c8d !important;
  color: white !important;
}
.cid-uJmLvvI4S8 .dropdown-item:hover span {
  color: white;
}
.cid-uJmLvvI4S8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJmLvvI4S8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJmLvvI4S8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uJmLvvI4S8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJmLvvI4S8 .nav-link {
  position: relative;
}
.cid-uJmLvvI4S8 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uJmLvvI4S8 .container {
    flex-wrap: wrap;
  }
}
.cid-uJmLvvI4S8 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uJmLvvI4S8 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uJmLvvI4S8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uJmLvvI4S8 .dropdown-menu,
.cid-uJmLvvI4S8 .navbar.opened {
  background: #ffffff !important;
}
.cid-uJmLvvI4S8 .nav-item:focus,
.cid-uJmLvvI4S8 .nav-link:focus {
  outline: none;
}
.cid-uJmLvvI4S8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJmLvvI4S8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJmLvvI4S8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJmLvvI4S8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJmLvvI4S8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJmLvvI4S8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJmLvvI4S8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uJmLvvI4S8 .navbar.opened {
  transition: all 0.3s;
}
.cid-uJmLvvI4S8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJmLvvI4S8 .navbar .navbar-logo img {
  width: auto;
}
.cid-uJmLvvI4S8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJmLvvI4S8 .navbar.collapsed {
  justify-content: center;
}
.cid-uJmLvvI4S8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJmLvvI4S8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJmLvvI4S8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uJmLvvI4S8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJmLvvI4S8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJmLvvI4S8 .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-uJmLvvI4S8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJmLvvI4S8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJmLvvI4S8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJmLvvI4S8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJmLvvI4S8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJmLvvI4S8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJmLvvI4S8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJmLvvI4S8 .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-uJmLvvI4S8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJmLvvI4S8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJmLvvI4S8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJmLvvI4S8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJmLvvI4S8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJmLvvI4S8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uJmLvvI4S8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uJmLvvI4S8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJmLvvI4S8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJmLvvI4S8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJmLvvI4S8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uJmLvvI4S8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJmLvvI4S8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJmLvvI4S8 .dropdown-item.active,
.cid-uJmLvvI4S8 .dropdown-item:active {
  background-color: transparent;
}
.cid-uJmLvvI4S8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJmLvvI4S8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJmLvvI4S8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJmLvvI4S8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uJmLvvI4S8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJmLvvI4S8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJmLvvI4S8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJmLvvI4S8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJmLvvI4S8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJmLvvI4S8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uJmLvvI4S8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJmLvvI4S8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJmLvvI4S8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJmLvvI4S8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJmLvvI4S8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJmLvvI4S8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJmLvvI4S8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJmLvvI4S8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJmLvvI4S8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJmLvvI4S8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uJmLvvI4S8 .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-uJmLvvI4S8 .navbar {
    height: 70px;
  }
  .cid-uJmLvvI4S8 .navbar.opened {
    height: auto;
  }
  .cid-uJmLvvI4S8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uShHqUwfl0 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uShHqUwfl0 h2,
.cid-uShHqUwfl0 h4,
.cid-uShHqUwfl0 p {
  margin: 0;
}
.cid-uShHqUwfl0 .text-elements {
  padding-bottom: 38px;
}
.cid-uShHqUwfl0 .mbr-section-title {
  color: #000000;
}
.cid-uShHqUwfl0 .mbr-section-subtitle {
  margin-bottom: 6px;
}
.cid-uShHqUwfl0 .mbr-text {
  margin-top: 10px;
}
.cid-uShHqUwfl0 .map-wrap {
  width: 100%;
  height: 25rem;
}
.cid-uShHqUwfl0 .google-map {
  height: 100%;
  position: relative;
}
.cid-uShHqUwfl0 .google-map iframe {
  height: 100%;
  width: 100%;
  filter: grayscale(1);
}
.cid-uShHqUwfl0 .google-map [data-state-details] {
  color: #4756a2;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uShHqUwfl0 .google-map[data-state] {
  background: #6b6b6b;
}
.cid-uShHqUwfl0 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uShKiXxeCX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uShKiXxeCX .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uShKiXxeCX form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uShKiXxeCX form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uShKiXxeCX form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uShHNxK5Et {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uShHNxK5Et .link-text {
  max-width: 350px;
}
.cid-uShHNxK5Et .link-wrapper {
  min-height: 100px;
  display: flex;
}
.cid-uShHNxK5Et .link-wrapper:hover .mbr-iconfont {
  height: 70px;
  border-radius: 40px;
}
.cid-uShHNxK5Et .link-wrapper .mbr-iconfont {
  transition: all 0.3s;
  overflow: visible;
  font-size: 1.5rem;
  color: white;
  margin-top: 6px;
  min-width: 50px;
  display: flex;
  margin-right: 1rem;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-radius: 50%;
  background: #8b8c8d;
}
.cid-uShHNxK5Et .icons-wrapper {
  display: flex;
  margin-bottom: 4rem;
  width: fit-content;
}
.cid-uShHNxK5Et .icons-wrapper .mbr-iconfont {
  color: #000000;
  font-size: 1.1rem;
}
.cid-uShHNxK5Et .icons-wrapper .icon-wrapper {
  position: relative;
  width: 50px;
  cursor: pointer;
  margin: 0 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}
.cid-uShHNxK5Et .icons-wrapper .icon-wrapper:before {
  position: absolute;
  pointer-events: none;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  transition: all 0.3s;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #000000;
}
.cid-uShHNxK5Et .icons-wrapper .icon-wrapper:hover:before {
  width: 90%;
  height: 90%;
  opacity: 0;
}
.cid-uShHNxK5Et .card-title {
  color: #e1e1e1;
}
@media (max-width: 767px) {
  .cid-uShHNxK5Et .align-left {
    text-align: center;
  }
  .cid-uShHNxK5Et .icons-wrapper {
    margin: auto;
    margin-bottom: 3rem;
  }
}
.cid-uShHNxK5Et .mbr-fallback-image.disabled {
  display: none;
}
.cid-uShHNxK5Et .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJpn2Mlofg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbeb7;
}
.cid-uJpn2Mlofg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJpn2Mlofg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJpn2Mlofg .row {
  justify-content: space-between;
}
.cid-uJpn2Mlofg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uJpn2Mlofg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uJpn2Mlofg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uJpn2Mlofg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uJpn2Mlofg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uJpn2Mlofg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uJpn2Mlofg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uJpn2Mlofg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uJpn2Mlofg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uJpn2Mlofg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uJpn2Mlofg .list-wrapper .list .item-wrap:hover,
.cid-uJpn2Mlofg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uJpn2Mlofg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uJpn2Mlofg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uJpn2Mlofg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uJpn2Mlofg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uJpn2Mlofg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uJpn2Mlofg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uJpn2Mlofg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uJpn2Mlofg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uJpn2Mlofg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uJpn2Mlofg .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uJpn2Mlofg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uJpn2Mlofg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uJpn2Mlofg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uJpn2Mlofg .mbr-section-title {
  color: #000000;
}
.cid-uJpn2Mlofg .mbr-text {
  color: #000000;
}
.cid-uJpn2Mlofg .list {
  color: #000000;
}
.cid-uJpn2Mlofg .mbr-desc {
  color: #000000;
}
.cid-uJpn2Mlofg .mbr-copy {
  color: #000000;
}
.cid-uJpn2Mlofg .mbr-desc,
.cid-uJpn2Mlofg .social-wrapper {
  text-align: center;
}
.cid-uJpn2Mlofg .mbr-copy,
.cid-uJpn2Mlofg .mbr-section-btn-main {
  text-align: center;
}
.cid-v1v0rV46uz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v1v0rV46uz nav.navbar {
  position: fixed;
}
.cid-v1v0rV46uz .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-v1v0rV46uz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v1v0rV46uz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v1v0rV46uz .dropdown-item:hover,
.cid-v1v0rV46uz .dropdown-item:focus {
  background: #8b8c8d !important;
  color: white !important;
}
.cid-v1v0rV46uz .dropdown-item:hover span {
  color: white;
}
.cid-v1v0rV46uz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v1v0rV46uz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v1v0rV46uz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v1v0rV46uz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v1v0rV46uz .nav-link {
  position: relative;
}
.cid-v1v0rV46uz .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v1v0rV46uz .container {
    flex-wrap: wrap;
  }
}
.cid-v1v0rV46uz .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v1v0rV46uz .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v1v0rV46uz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v1v0rV46uz .dropdown-menu,
.cid-v1v0rV46uz .navbar.opened {
  background: #ffffff !important;
}
.cid-v1v0rV46uz .nav-item:focus,
.cid-v1v0rV46uz .nav-link:focus {
  outline: none;
}
.cid-v1v0rV46uz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v1v0rV46uz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v1v0rV46uz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v1v0rV46uz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v1v0rV46uz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v1v0rV46uz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v1v0rV46uz .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v1v0rV46uz .navbar.opened {
  transition: all 0.3s;
}
.cid-v1v0rV46uz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v1v0rV46uz .navbar .navbar-logo img {
  width: auto;
}
.cid-v1v0rV46uz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v1v0rV46uz .navbar.collapsed {
  justify-content: center;
}
.cid-v1v0rV46uz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v1v0rV46uz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v1v0rV46uz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-v1v0rV46uz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v1v0rV46uz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v1v0rV46uz .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-v1v0rV46uz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v1v0rV46uz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v1v0rV46uz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v1v0rV46uz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v1v0rV46uz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v1v0rV46uz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v1v0rV46uz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v1v0rV46uz .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-v1v0rV46uz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v1v0rV46uz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v1v0rV46uz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v1v0rV46uz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v1v0rV46uz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v1v0rV46uz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v1v0rV46uz .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v1v0rV46uz .navbar.navbar-short {
  min-height: 60px;
}
.cid-v1v0rV46uz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v1v0rV46uz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v1v0rV46uz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v1v0rV46uz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v1v0rV46uz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v1v0rV46uz .dropdown-item.active,
.cid-v1v0rV46uz .dropdown-item:active {
  background-color: transparent;
}
.cid-v1v0rV46uz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v1v0rV46uz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v1v0rV46uz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v1v0rV46uz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v1v0rV46uz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v1v0rV46uz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v1v0rV46uz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v1v0rV46uz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v1v0rV46uz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v1v0rV46uz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v1v0rV46uz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v1v0rV46uz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1v0rV46uz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1v0rV46uz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v1v0rV46uz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1v0rV46uz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v1v0rV46uz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v1v0rV46uz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1v0rV46uz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v1v0rV46uz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v1v0rV46uz .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-v1v0rV46uz .navbar {
    height: 70px;
  }
  .cid-v1v0rV46uz .navbar.opened {
    height: auto;
  }
  .cid-v1v0rV46uz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v1v0rVmin3 {
  display: flex;
  background-image: url("../../../assets/images/asc-testing-laboratory-012-1920x1280.jpg");
}
.cid-v1v0rVmin3 .mbr-overlay {
  background-color: #000000;
  opacity: 0.2;
}
.cid-v1v0rVmin3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1v0rVmin3 .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-v1v0rVmin3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1v0rVmin3 p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-v1v0rVmin3 {
    align-items: center;
  }
  .cid-v1v0rVmin3 .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1v0rVmin3 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-v1v0rVmin3 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-v1v0rVmin3 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-v1v0rVmin3 .content-wrap {
    width: 100%;
  }
}
.cid-v1v0rVmin3 .mbr-section-subtitle,
.cid-v1v0rVmin3 .line {
  color: #ffffff;
}
.cid-v1v0rVmin3 .mbr-text,
.cid-v1v0rVmin3 .mbr-section-btn {
  text-align: right;
}
.cid-v1v0rVzMW5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-v1v0rVzMW5 .row {
  align-items: center;
  justify-content: center;
}
.cid-v1v0rVzMW5 .col-text {
  text-align: center;
  padding: 0;
}
.cid-v1v0rVzMW5 .lists-container {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-v1v0rVzMW5 .lists-container {
    flex-wrap: wrap;
  }
}
.cid-v1v0rVzMW5 .card-wrapper {
  padding: 30px;
}
@media (max-width: 767px) {
  .cid-v1v0rVzMW5 .card-wrapper {
    padding: 30px 12px;
  }
}
.cid-v1v0rVzMW5 .card-box {
  display: flex;
  flex-direction: column;
}
.cid-v1v0rVzMW5 .card-number {
  color: #877f75;
  width: 100%;
}
.cid-v1v0rVzMW5 .card-title {
  color: #222222;
  width: 100%;
  margin-bottom: 1rem;
}
.cid-v1v0rVzMW5 .card-text {
  color: #555555;
  width: 100%;
}
.cid-v1v0rVzMW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1v0rVzMW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1v0rVOtBY {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v1v0rVOtBY blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-v1v0rVOtBY .quote {
  color: #e43f3f;
}
.cid-v1v0rVOtBY .quote,
.cid-v1v0rVOtBY blockquote {
  color: #353535;
}
.cid-v1v0rVXjbQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v1v0rVXjbQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1v0rVXjbQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1v0rVXjbQ .mbr-section-head {
  margin-bottom: 32px;
}
.cid-v1v0rVXjbQ .mbr-section-title {
  color: #24262b;
}
.cid-v1v0rVXjbQ .mbr-section-subtitle {
  color: #24262b;
}
.cid-v1v0rVXjbQ .items-row {
  row-gap: 32px;
}
.cid-v1v0rVXjbQ .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-v1v0rVXjbQ .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-v1v0rVXjbQ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #ffffff;
  transition: 0.3s;
}
.cid-v1v0rVXjbQ .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-v1v0rVXjbQ .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-v1v0rVXjbQ .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-v1v0rVXjbQ .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-v1v0rVXjbQ .mbr-item-subtitle {
  color: #24262b;
}
.cid-v1v0rVXjbQ .carousel-control,
.cid-v1v0rVXjbQ .close {
  background: #1b1b1b;
}
.cid-v1v0rVXjbQ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v1v0rVXjbQ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v1v0rVXjbQ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v1v0rVXjbQ .carousel-control-next span {
  margin-left: 5px;
}
.cid-v1v0rVXjbQ .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v1v0rVXjbQ .close::before {
  content: '\e91a';
}
.cid-v1v0rVXjbQ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v1v0rVXjbQ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v1v0rVXjbQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1v0rVXjbQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1v0rVXjbQ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1v0rVXjbQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v1v0rVXjbQ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v1v0rVXjbQ .carousel-indicators li.active,
.cid-v1v0rVXjbQ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1v0rVXjbQ .carousel-indicators li::after,
.cid-v1v0rVXjbQ .carousel-indicators li::before {
  content: none;
}
.cid-v1v0rVXjbQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1v0rVXjbQ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v1v0rVXjbQ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v1v0rVXjbQ .carousel-indicators {
    display: none;
  }
}
.cid-v1v0rVXjbQ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1v0rVXjbQ .carousel-inner > .active {
  display: block;
}
.cid-v1v0rVXjbQ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1v0rVXjbQ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v1v0rVXjbQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v1v0rVXjbQ .carousel-control,
  .cid-v1v0rVXjbQ .carousel-indicators,
  .cid-v1v0rVXjbQ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v1v0rVXjbQ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v1v0rVXjbQ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v1v0rVXjbQ .carousel-indicators .active,
.cid-v1v0rVXjbQ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v1v0rVXjbQ .carousel-indicators .active {
  background: #fff;
}
.cid-v1v0rVXjbQ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v1v0rVXjbQ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v1v0rVXjbQ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v1v0rVXjbQ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v1v0rVXjbQ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v1v0rVXjbQ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v1v0rVXjbQ .carousel {
  width: 100%;
}
.cid-v1v0rVXjbQ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v1v0rVXjbQ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v1v0rVXjbQ .modal.fade .modal-dialog,
.cid-v1v0rVXjbQ .modal.in .modal-dialog {
  transform: none;
}
.cid-v1v0rVXjbQ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v1v0rVXjbQ H6 {
  text-align: center;
}
.cid-v1v0rWLxL9 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #fafafa;
}
.cid-v1v0rWLxL9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1v0rWLxL9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1v0rWLxL9 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-v1v0rWLxL9 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-v1v0rWLxL9 .embla__slide .slide-content {
  width: 100%;
}
.cid-v1v0rWLxL9 .embla__slide .slide-content .item-wrapper .item-content .item-text {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v1v0rWLxL9 .embla__slide .slide-content .item-wrapper .item-content .item-text {
    margin-bottom: 20px;
  }
}
.cid-v1v0rWLxL9 .embla__slide .slide-content .item-wrapper .item-content .name-wrapper .item-name {
  display: inline-flex;
  margin-bottom: 10px;
  padding-bottom: 2px;
  border-bottom: 1px solid #232323;
}
.cid-v1v0rWLxL9 .embla__slide .slide-content .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-v1v0rWLxL9 .embla__button--next,
.cid-v1v0rWLxL9 .embla__button--prev {
  display: flex;
}
.cid-v1v0rWLxL9 .embla__button {
  top: 50px;
  width: 60px;
  height: 60px;
  font-size: 18px;
  background-color: #ffffff !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 992px) {
  .cid-v1v0rWLxL9 .embla__button {
    top: 0;
  }
}
.cid-v1v0rWLxL9 .embla__button:hover {
  background-color: #e4ed64 !important;
  color: #000000 !important;
}
.cid-v1v0rWLxL9 .embla__button.embla__button--prev {
  left: 0;
}
.cid-v1v0rWLxL9 .embla__button.embla__button--next {
  right: 0;
}
.cid-v1v0rWLxL9 .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-v1v0rWLxL9 .embla__viewport {
  overflow: hidden;
  width: 70%;
  margin-right: 1rem;
}
@media (max-width: 992px) {
  .cid-v1v0rWLxL9 .embla__viewport {
    width: 100%;
  }
}
.cid-v1v0rWLxL9 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v1v0rWLxL9 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v1v0rWLxL9 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v1v0rWLxL9 .item-text {
  color: #000000;
  text-align: center;
}
.cid-v1v0rWLxL9 .item-name,
.cid-v1v0rWLxL9 .name-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v1v0rWLxL9 .item-role {
  color: #8a8a8a;
  text-align: center;
}
.cid-v1v0rXbI9c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbeb7;
}
.cid-v1v0rXbI9c .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1v0rXbI9c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1v0rXbI9c .row {
  justify-content: space-between;
}
.cid-v1v0rXbI9c .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v1v0rXbI9c .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v1v0rXbI9c .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v1v0rXbI9c .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v1v0rXbI9c .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v1v0rXbI9c .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v1v0rXbI9c .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v1v0rXbI9c .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v1v0rXbI9c .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v1v0rXbI9c .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v1v0rXbI9c .list-wrapper .list .item-wrap:hover,
.cid-v1v0rXbI9c .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v1v0rXbI9c .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v1v0rXbI9c .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v1v0rXbI9c .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v1v0rXbI9c .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v1v0rXbI9c .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v1v0rXbI9c .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v1v0rXbI9c .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v1v0rXbI9c .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v1v0rXbI9c .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v1v0rXbI9c .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v1v0rXbI9c .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v1v0rXbI9c .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v1v0rXbI9c .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v1v0rXbI9c .mbr-section-title {
  color: #000000;
}
.cid-v1v0rXbI9c .mbr-text {
  color: #000000;
}
.cid-v1v0rXbI9c .list {
  color: #000000;
}
.cid-v1v0rXbI9c .mbr-desc {
  color: #000000;
}
.cid-v1v0rXbI9c .mbr-copy {
  color: #000000;
}
.cid-v1v0rXbI9c .mbr-desc,
.cid-v1v0rXbI9c .social-wrapper {
  text-align: center;
}
.cid-v1v0rXbI9c .mbr-copy,
.cid-v1v0rXbI9c .mbr-section-btn-main {
  text-align: center;
}
.cid-uJmLvvI4S8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uJmLvvI4S8 nav.navbar {
  position: fixed;
}
.cid-uJmLvvI4S8 .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-uJmLvvI4S8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uJmLvvI4S8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uJmLvvI4S8 .dropdown-item:hover,
.cid-uJmLvvI4S8 .dropdown-item:focus {
  background: #8b8c8d !important;
  color: white !important;
}
.cid-uJmLvvI4S8 .dropdown-item:hover span {
  color: white;
}
.cid-uJmLvvI4S8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uJmLvvI4S8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uJmLvvI4S8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uJmLvvI4S8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uJmLvvI4S8 .nav-link {
  position: relative;
}
.cid-uJmLvvI4S8 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uJmLvvI4S8 .container {
    flex-wrap: wrap;
  }
}
.cid-uJmLvvI4S8 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uJmLvvI4S8 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uJmLvvI4S8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uJmLvvI4S8 .dropdown-menu,
.cid-uJmLvvI4S8 .navbar.opened {
  background: #ffffff !important;
}
.cid-uJmLvvI4S8 .nav-item:focus,
.cid-uJmLvvI4S8 .nav-link:focus {
  outline: none;
}
.cid-uJmLvvI4S8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJmLvvI4S8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJmLvvI4S8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJmLvvI4S8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJmLvvI4S8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJmLvvI4S8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJmLvvI4S8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uJmLvvI4S8 .navbar.opened {
  transition: all 0.3s;
}
.cid-uJmLvvI4S8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uJmLvvI4S8 .navbar .navbar-logo img {
  width: auto;
}
.cid-uJmLvvI4S8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uJmLvvI4S8 .navbar.collapsed {
  justify-content: center;
}
.cid-uJmLvvI4S8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJmLvvI4S8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uJmLvvI4S8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uJmLvvI4S8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJmLvvI4S8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJmLvvI4S8 .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-uJmLvvI4S8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJmLvvI4S8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uJmLvvI4S8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uJmLvvI4S8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJmLvvI4S8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJmLvvI4S8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJmLvvI4S8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uJmLvvI4S8 .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-uJmLvvI4S8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJmLvvI4S8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uJmLvvI4S8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uJmLvvI4S8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uJmLvvI4S8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJmLvvI4S8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uJmLvvI4S8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uJmLvvI4S8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJmLvvI4S8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJmLvvI4S8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJmLvvI4S8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uJmLvvI4S8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uJmLvvI4S8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJmLvvI4S8 .dropdown-item.active,
.cid-uJmLvvI4S8 .dropdown-item:active {
  background-color: transparent;
}
.cid-uJmLvvI4S8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJmLvvI4S8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJmLvvI4S8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJmLvvI4S8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uJmLvvI4S8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJmLvvI4S8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJmLvvI4S8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uJmLvvI4S8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJmLvvI4S8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uJmLvvI4S8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uJmLvvI4S8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJmLvvI4S8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJmLvvI4S8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJmLvvI4S8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJmLvvI4S8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJmLvvI4S8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJmLvvI4S8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJmLvvI4S8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJmLvvI4S8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uJmLvvI4S8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uJmLvvI4S8 .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-uJmLvvI4S8 .navbar {
    height: 70px;
  }
  .cid-uJmLvvI4S8 .navbar.opened {
    height: auto;
  }
  .cid-uJmLvvI4S8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uShNRyz2Km {
  display: flex;
  background-image: url("../../../assets/images/asc-website-projects-taiba-001.jpg-1920x1280.jpg");
}
.cid-uShNRyz2Km .mbr-overlay {
  background-color: #000000;
  opacity: 0.2;
}
.cid-uShNRyz2Km .mbr-fallback-image.disabled {
  display: none;
}
.cid-uShNRyz2Km .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uShNRyz2Km .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uShNRyz2Km p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uShNRyz2Km {
    align-items: center;
  }
  .cid-uShNRyz2Km .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uShNRyz2Km .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uShNRyz2Km {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uShNRyz2Km .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uShNRyz2Km .content-wrap {
    width: 100%;
  }
}
.cid-uShNRyz2Km .mbr-section-subtitle,
.cid-uShNRyz2Km .line {
  color: #ffffff;
}
.cid-uShNRyz2Km .mbr-text,
.cid-uShNRyz2Km .mbr-section-btn {
  text-align: right;
}
.cid-uSDoFksFrt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-uSDoFksFrt .row {
  align-items: center;
  justify-content: center;
}
.cid-uSDoFksFrt .col-text {
  text-align: center;
  padding: 0;
}
.cid-uSDoFksFrt .lists-container {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uSDoFksFrt .lists-container {
    flex-wrap: wrap;
  }
}
.cid-uSDoFksFrt .card-wrapper {
  padding: 30px;
}
@media (max-width: 767px) {
  .cid-uSDoFksFrt .card-wrapper {
    padding: 30px 12px;
  }
}
.cid-uSDoFksFrt .card-box {
  display: flex;
  flex-direction: column;
}
.cid-uSDoFksFrt .card-number {
  color: #877f75;
  width: 100%;
}
.cid-uSDoFksFrt .card-title {
  color: #222222;
  width: 100%;
  margin-bottom: 1rem;
}
.cid-uSDoFksFrt .card-text {
  color: #555555;
  width: 100%;
}
.cid-uSDoFksFrt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSDoFksFrt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uShN3QDXrZ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uShN3QDXrZ blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-uShN3QDXrZ .quote {
  color: #e43f3f;
}
.cid-uShN3QDXrZ .quote,
.cid-uShN3QDXrZ blockquote {
  color: #353535;
}
.cid-uShyxvzXWn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uShyxvzXWn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uShyxvzXWn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uShyxvzXWn .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uShyxvzXWn .mbr-section-title {
  color: #24262b;
}
.cid-uShyxvzXWn .mbr-section-subtitle {
  color: #24262b;
}
.cid-uShyxvzXWn .items-row {
  row-gap: 32px;
}
.cid-uShyxvzXWn .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uShyxvzXWn .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uShyxvzXWn .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #ffffff;
  transition: 0.3s;
}
.cid-uShyxvzXWn .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uShyxvzXWn .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uShyxvzXWn .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uShyxvzXWn .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uShyxvzXWn .mbr-item-subtitle {
  color: #24262b;
}
.cid-uShyxvzXWn .carousel-control,
.cid-uShyxvzXWn .close {
  background: #1b1b1b;
}
.cid-uShyxvzXWn .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uShyxvzXWn .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uShyxvzXWn .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uShyxvzXWn .carousel-control-next span {
  margin-left: 5px;
}
.cid-uShyxvzXWn .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uShyxvzXWn .close::before {
  content: '\e91a';
}
.cid-uShyxvzXWn .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uShyxvzXWn .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uShyxvzXWn .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uShyxvzXWn .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uShyxvzXWn .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uShyxvzXWn .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uShyxvzXWn .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uShyxvzXWn .carousel-indicators li.active,
.cid-uShyxvzXWn .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uShyxvzXWn .carousel-indicators li::after,
.cid-uShyxvzXWn .carousel-indicators li::before {
  content: none;
}
.cid-uShyxvzXWn .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uShyxvzXWn .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uShyxvzXWn .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uShyxvzXWn .carousel-indicators {
    display: none;
  }
}
.cid-uShyxvzXWn .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uShyxvzXWn .carousel-inner > .active {
  display: block;
}
.cid-uShyxvzXWn .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uShyxvzXWn .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uShyxvzXWn .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uShyxvzXWn .carousel-control,
  .cid-uShyxvzXWn .carousel-indicators,
  .cid-uShyxvzXWn .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uShyxvzXWn .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uShyxvzXWn .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uShyxvzXWn .carousel-indicators .active,
.cid-uShyxvzXWn .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uShyxvzXWn .carousel-indicators .active {
  background: #fff;
}
.cid-uShyxvzXWn .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uShyxvzXWn .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uShyxvzXWn .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uShyxvzXWn .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uShyxvzXWn .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uShyxvzXWn .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uShyxvzXWn .carousel {
  width: 100%;
}
.cid-uShyxvzXWn .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uShyxvzXWn .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uShyxvzXWn .modal.fade .modal-dialog,
.cid-uShyxvzXWn .modal.in .modal-dialog {
  transform: none;
}
.cid-uShyxvzXWn .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uShyxvzXWn H6 {
  text-align: center;
}
.cid-uShxEYHf9U {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #fafafa;
}
.cid-uShxEYHf9U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uShxEYHf9U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uShxEYHf9U .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-uShxEYHf9U .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uShxEYHf9U .embla__slide .slide-content {
  width: 100%;
}
.cid-uShxEYHf9U .embla__slide .slide-content .item-wrapper .item-content .item-text {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uShxEYHf9U .embla__slide .slide-content .item-wrapper .item-content .item-text {
    margin-bottom: 20px;
  }
}
.cid-uShxEYHf9U .embla__slide .slide-content .item-wrapper .item-content .name-wrapper .item-name {
  display: inline-flex;
  margin-bottom: 10px;
  padding-bottom: 2px;
  border-bottom: 1px solid #232323;
}
.cid-uShxEYHf9U .embla__slide .slide-content .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-uShxEYHf9U .embla__button--next,
.cid-uShxEYHf9U .embla__button--prev {
  display: flex;
}
.cid-uShxEYHf9U .embla__button {
  top: 50px;
  width: 60px;
  height: 60px;
  font-size: 18px;
  background-color: #ffffff !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 992px) {
  .cid-uShxEYHf9U .embla__button {
    top: 0;
  }
}
.cid-uShxEYHf9U .embla__button:hover {
  background-color: #e4ed64 !important;
  color: #000000 !important;
}
.cid-uShxEYHf9U .embla__button.embla__button--prev {
  left: 0;
}
.cid-uShxEYHf9U .embla__button.embla__button--next {
  right: 0;
}
.cid-uShxEYHf9U .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-uShxEYHf9U .embla__viewport {
  overflow: hidden;
  width: 70%;
  margin-right: 1rem;
}
@media (max-width: 992px) {
  .cid-uShxEYHf9U .embla__viewport {
    width: 100%;
  }
}
.cid-uShxEYHf9U .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uShxEYHf9U .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uShxEYHf9U .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uShxEYHf9U .item-text {
  color: #000000;
  text-align: center;
}
.cid-uShxEYHf9U .item-name,
.cid-uShxEYHf9U .name-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uShxEYHf9U .item-role {
  color: #8a8a8a;
  text-align: center;
}
.cid-uJpn2Mlofg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbeb7;
}
.cid-uJpn2Mlofg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJpn2Mlofg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJpn2Mlofg .row {
  justify-content: space-between;
}
.cid-uJpn2Mlofg .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uJpn2Mlofg .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uJpn2Mlofg .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uJpn2Mlofg .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uJpn2Mlofg .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-uJpn2Mlofg .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uJpn2Mlofg .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uJpn2Mlofg .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-uJpn2Mlofg .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uJpn2Mlofg .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-uJpn2Mlofg .list-wrapper .list .item-wrap:hover,
.cid-uJpn2Mlofg .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uJpn2Mlofg .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uJpn2Mlofg .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uJpn2Mlofg .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uJpn2Mlofg .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-uJpn2Mlofg .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-uJpn2Mlofg .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-uJpn2Mlofg .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uJpn2Mlofg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uJpn2Mlofg .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uJpn2Mlofg .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uJpn2Mlofg .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uJpn2Mlofg .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-uJpn2Mlofg .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-uJpn2Mlofg .mbr-section-title {
  color: #000000;
}
.cid-uJpn2Mlofg .mbr-text {
  color: #000000;
}
.cid-uJpn2Mlofg .list {
  color: #000000;
}
.cid-uJpn2Mlofg .mbr-desc {
  color: #000000;
}
.cid-uJpn2Mlofg .mbr-copy {
  color: #000000;
}
.cid-uJpn2Mlofg .mbr-desc,
.cid-uJpn2Mlofg .social-wrapper {
  text-align: center;
}
.cid-uJpn2Mlofg .mbr-copy,
.cid-uJpn2Mlofg .mbr-section-btn-main {
  text-align: center;
}
.cid-v1v8XxvHI1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v1v8XxvHI1 nav.navbar {
  position: fixed;
}
.cid-v1v8XxvHI1 .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-v1v8XxvHI1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v1v8XxvHI1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v1v8XxvHI1 .dropdown-item:hover,
.cid-v1v8XxvHI1 .dropdown-item:focus {
  background: #8b8c8d !important;
  color: white !important;
}
.cid-v1v8XxvHI1 .dropdown-item:hover span {
  color: white;
}
.cid-v1v8XxvHI1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v1v8XxvHI1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v1v8XxvHI1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v1v8XxvHI1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v1v8XxvHI1 .nav-link {
  position: relative;
}
.cid-v1v8XxvHI1 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v1v8XxvHI1 .container {
    flex-wrap: wrap;
  }
}
.cid-v1v8XxvHI1 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v1v8XxvHI1 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v1v8XxvHI1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v1v8XxvHI1 .dropdown-menu,
.cid-v1v8XxvHI1 .navbar.opened {
  background: #ffffff !important;
}
.cid-v1v8XxvHI1 .nav-item:focus,
.cid-v1v8XxvHI1 .nav-link:focus {
  outline: none;
}
.cid-v1v8XxvHI1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v1v8XxvHI1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v1v8XxvHI1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v1v8XxvHI1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v1v8XxvHI1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v1v8XxvHI1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v1v8XxvHI1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v1v8XxvHI1 .navbar.opened {
  transition: all 0.3s;
}
.cid-v1v8XxvHI1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v1v8XxvHI1 .navbar .navbar-logo img {
  width: auto;
}
.cid-v1v8XxvHI1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v1v8XxvHI1 .navbar.collapsed {
  justify-content: center;
}
.cid-v1v8XxvHI1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v1v8XxvHI1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v1v8XxvHI1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-v1v8XxvHI1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v1v8XxvHI1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v1v8XxvHI1 .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-v1v8XxvHI1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v1v8XxvHI1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v1v8XxvHI1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v1v8XxvHI1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v1v8XxvHI1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v1v8XxvHI1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v1v8XxvHI1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v1v8XxvHI1 .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-v1v8XxvHI1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v1v8XxvHI1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v1v8XxvHI1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v1v8XxvHI1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v1v8XxvHI1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v1v8XxvHI1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v1v8XxvHI1 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v1v8XxvHI1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v1v8XxvHI1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v1v8XxvHI1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v1v8XxvHI1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v1v8XxvHI1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v1v8XxvHI1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v1v8XxvHI1 .dropdown-item.active,
.cid-v1v8XxvHI1 .dropdown-item:active {
  background-color: transparent;
}
.cid-v1v8XxvHI1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v1v8XxvHI1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v1v8XxvHI1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v1v8XxvHI1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v1v8XxvHI1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v1v8XxvHI1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v1v8XxvHI1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v1v8XxvHI1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v1v8XxvHI1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v1v8XxvHI1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v1v8XxvHI1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v1v8XxvHI1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1v8XxvHI1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1v8XxvHI1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v1v8XxvHI1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1v8XxvHI1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v1v8XxvHI1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v1v8XxvHI1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1v8XxvHI1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v1v8XxvHI1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v1v8XxvHI1 .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-v1v8XxvHI1 .navbar {
    height: 70px;
  }
  .cid-v1v8XxvHI1 .navbar.opened {
    height: auto;
  }
  .cid-v1v8XxvHI1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v1v8XxNCpa {
  display: flex;
  background-image: url("../../../assets/images/asc-chocoville-001-1920x1280.jpg");
}
.cid-v1v8XxNCpa .mbr-overlay {
  background-color: #000000;
  opacity: 0.2;
}
.cid-v1v8XxNCpa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1v8XxNCpa .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-v1v8XxNCpa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1v8XxNCpa p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-v1v8XxNCpa {
    align-items: center;
  }
  .cid-v1v8XxNCpa .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1v8XxNCpa .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-v1v8XxNCpa {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-v1v8XxNCpa .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-v1v8XxNCpa .content-wrap {
    width: 100%;
  }
}
.cid-v1v8XxNCpa .mbr-section-subtitle,
.cid-v1v8XxNCpa .line {
  color: #ffffff;
}
.cid-v1v8XxNCpa .mbr-text,
.cid-v1v8XxNCpa .mbr-section-btn {
  text-align: right;
}
.cid-v1v8Xy09F9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-v1v8Xy09F9 .row {
  align-items: center;
  justify-content: center;
}
.cid-v1v8Xy09F9 .col-text {
  text-align: center;
  padding: 0;
}
.cid-v1v8Xy09F9 .lists-container {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-v1v8Xy09F9 .lists-container {
    flex-wrap: wrap;
  }
}
.cid-v1v8Xy09F9 .card-wrapper {
  padding: 30px;
}
@media (max-width: 767px) {
  .cid-v1v8Xy09F9 .card-wrapper {
    padding: 30px 12px;
  }
}
.cid-v1v8Xy09F9 .card-box {
  display: flex;
  flex-direction: column;
}
.cid-v1v8Xy09F9 .card-number {
  color: #877f75;
  width: 100%;
}
.cid-v1v8Xy09F9 .card-title {
  color: #222222;
  width: 100%;
  margin-bottom: 1rem;
}
.cid-v1v8Xy09F9 .card-text {
  color: #555555;
  width: 100%;
}
.cid-v1v8Xy09F9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1v8Xy09F9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1v8XydUlR {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v1v8XydUlR blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-v1v8XydUlR .quote {
  color: #e43f3f;
}
.cid-v1v8XydUlR .quote,
.cid-v1v8XydUlR blockquote {
  color: #353535;
}
.cid-v1v8XylTIv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v1v8XylTIv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1v8XylTIv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1v8XylTIv .mbr-section-head {
  margin-bottom: 32px;
}
.cid-v1v8XylTIv .mbr-section-title {
  color: #24262b;
}
.cid-v1v8XylTIv .mbr-section-subtitle {
  color: #24262b;
}
.cid-v1v8XylTIv .items-row {
  row-gap: 32px;
}
.cid-v1v8XylTIv .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-v1v8XylTIv .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-v1v8XylTIv .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #ffffff;
  transition: 0.3s;
}
.cid-v1v8XylTIv .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-v1v8XylTIv .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-v1v8XylTIv .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-v1v8XylTIv .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-v1v8XylTIv .mbr-item-subtitle {
  color: #24262b;
}
.cid-v1v8XylTIv .carousel-control,
.cid-v1v8XylTIv .close {
  background: #1b1b1b;
}
.cid-v1v8XylTIv .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v1v8XylTIv .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v1v8XylTIv .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v1v8XylTIv .carousel-control-next span {
  margin-left: 5px;
}
.cid-v1v8XylTIv .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v1v8XylTIv .close::before {
  content: '\e91a';
}
.cid-v1v8XylTIv .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v1v8XylTIv .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v1v8XylTIv .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1v8XylTIv .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1v8XylTIv .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1v8XylTIv .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v1v8XylTIv .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v1v8XylTIv .carousel-indicators li.active,
.cid-v1v8XylTIv .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1v8XylTIv .carousel-indicators li::after,
.cid-v1v8XylTIv .carousel-indicators li::before {
  content: none;
}
.cid-v1v8XylTIv .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1v8XylTIv .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v1v8XylTIv .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v1v8XylTIv .carousel-indicators {
    display: none;
  }
}
.cid-v1v8XylTIv .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1v8XylTIv .carousel-inner > .active {
  display: block;
}
.cid-v1v8XylTIv .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1v8XylTIv .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v1v8XylTIv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v1v8XylTIv .carousel-control,
  .cid-v1v8XylTIv .carousel-indicators,
  .cid-v1v8XylTIv .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v1v8XylTIv .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v1v8XylTIv .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v1v8XylTIv .carousel-indicators .active,
.cid-v1v8XylTIv .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v1v8XylTIv .carousel-indicators .active {
  background: #fff;
}
.cid-v1v8XylTIv .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v1v8XylTIv .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v1v8XylTIv .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v1v8XylTIv .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v1v8XylTIv .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v1v8XylTIv .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v1v8XylTIv .carousel {
  width: 100%;
}
.cid-v1v8XylTIv .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v1v8XylTIv .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v1v8XylTIv .modal.fade .modal-dialog,
.cid-v1v8XylTIv .modal.in .modal-dialog {
  transform: none;
}
.cid-v1v8XylTIv .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v1v8XylTIv H6 {
  text-align: center;
}
.cid-v1v8Xz69UQ {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #fafafa;
}
.cid-v1v8Xz69UQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1v8Xz69UQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1v8Xz69UQ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-v1v8Xz69UQ .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-v1v8Xz69UQ .embla__slide .slide-content {
  width: 100%;
}
.cid-v1v8Xz69UQ .embla__slide .slide-content .item-wrapper .item-content .item-text {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v1v8Xz69UQ .embla__slide .slide-content .item-wrapper .item-content .item-text {
    margin-bottom: 20px;
  }
}
.cid-v1v8Xz69UQ .embla__slide .slide-content .item-wrapper .item-content .name-wrapper .item-name {
  display: inline-flex;
  margin-bottom: 10px;
  padding-bottom: 2px;
  border-bottom: 1px solid #232323;
}
.cid-v1v8Xz69UQ .embla__slide .slide-content .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-v1v8Xz69UQ .embla__button--next,
.cid-v1v8Xz69UQ .embla__button--prev {
  display: flex;
}
.cid-v1v8Xz69UQ .embla__button {
  top: 50px;
  width: 60px;
  height: 60px;
  font-size: 18px;
  background-color: #ffffff !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 992px) {
  .cid-v1v8Xz69UQ .embla__button {
    top: 0;
  }
}
.cid-v1v8Xz69UQ .embla__button:hover {
  background-color: #e4ed64 !important;
  color: #000000 !important;
}
.cid-v1v8Xz69UQ .embla__button.embla__button--prev {
  left: 0;
}
.cid-v1v8Xz69UQ .embla__button.embla__button--next {
  right: 0;
}
.cid-v1v8Xz69UQ .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-v1v8Xz69UQ .embla__viewport {
  overflow: hidden;
  width: 70%;
  margin-right: 1rem;
}
@media (max-width: 992px) {
  .cid-v1v8Xz69UQ .embla__viewport {
    width: 100%;
  }
}
.cid-v1v8Xz69UQ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v1v8Xz69UQ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v1v8Xz69UQ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v1v8Xz69UQ .item-text {
  color: #000000;
  text-align: center;
}
.cid-v1v8Xz69UQ .item-name,
.cid-v1v8Xz69UQ .name-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v1v8Xz69UQ .item-role {
  color: #8a8a8a;
  text-align: center;
}
.cid-v1v8XzxwpC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbeb7;
}
.cid-v1v8XzxwpC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1v8XzxwpC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1v8XzxwpC .row {
  justify-content: space-between;
}
.cid-v1v8XzxwpC .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v1v8XzxwpC .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v1v8XzxwpC .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v1v8XzxwpC .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v1v8XzxwpC .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v1v8XzxwpC .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v1v8XzxwpC .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v1v8XzxwpC .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v1v8XzxwpC .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v1v8XzxwpC .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v1v8XzxwpC .list-wrapper .list .item-wrap:hover,
.cid-v1v8XzxwpC .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v1v8XzxwpC .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v1v8XzxwpC .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v1v8XzxwpC .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v1v8XzxwpC .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v1v8XzxwpC .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v1v8XzxwpC .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v1v8XzxwpC .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v1v8XzxwpC .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v1v8XzxwpC .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v1v8XzxwpC .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v1v8XzxwpC .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v1v8XzxwpC .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v1v8XzxwpC .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v1v8XzxwpC .mbr-section-title {
  color: #000000;
}
.cid-v1v8XzxwpC .mbr-text {
  color: #000000;
}
.cid-v1v8XzxwpC .list {
  color: #000000;
}
.cid-v1v8XzxwpC .mbr-desc {
  color: #000000;
}
.cid-v1v8XzxwpC .mbr-copy {
  color: #000000;
}
.cid-v1v8XzxwpC .mbr-desc,
.cid-v1v8XzxwpC .social-wrapper {
  text-align: center;
}
.cid-v1v8XzxwpC .mbr-copy,
.cid-v1v8XzxwpC .mbr-section-btn-main {
  text-align: center;
}
.cid-v1vbJbZU4a {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v1vbJbZU4a nav.navbar {
  position: fixed;
}
.cid-v1vbJbZU4a .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-v1vbJbZU4a .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v1vbJbZU4a .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v1vbJbZU4a .dropdown-item:hover,
.cid-v1vbJbZU4a .dropdown-item:focus {
  background: #8b8c8d !important;
  color: white !important;
}
.cid-v1vbJbZU4a .dropdown-item:hover span {
  color: white;
}
.cid-v1vbJbZU4a .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v1vbJbZU4a .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v1vbJbZU4a .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v1vbJbZU4a .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v1vbJbZU4a .nav-link {
  position: relative;
}
.cid-v1vbJbZU4a .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v1vbJbZU4a .container {
    flex-wrap: wrap;
  }
}
.cid-v1vbJbZU4a .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v1vbJbZU4a .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v1vbJbZU4a .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v1vbJbZU4a .dropdown-menu,
.cid-v1vbJbZU4a .navbar.opened {
  background: #ffffff !important;
}
.cid-v1vbJbZU4a .nav-item:focus,
.cid-v1vbJbZU4a .nav-link:focus {
  outline: none;
}
.cid-v1vbJbZU4a .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v1vbJbZU4a .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v1vbJbZU4a .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v1vbJbZU4a .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v1vbJbZU4a .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v1vbJbZU4a .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v1vbJbZU4a .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v1vbJbZU4a .navbar.opened {
  transition: all 0.3s;
}
.cid-v1vbJbZU4a .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v1vbJbZU4a .navbar .navbar-logo img {
  width: auto;
}
.cid-v1vbJbZU4a .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v1vbJbZU4a .navbar.collapsed {
  justify-content: center;
}
.cid-v1vbJbZU4a .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v1vbJbZU4a .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v1vbJbZU4a .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-v1vbJbZU4a .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v1vbJbZU4a .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v1vbJbZU4a .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-v1vbJbZU4a .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v1vbJbZU4a .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v1vbJbZU4a .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v1vbJbZU4a .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v1vbJbZU4a .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v1vbJbZU4a .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v1vbJbZU4a .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v1vbJbZU4a .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-v1vbJbZU4a .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v1vbJbZU4a .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v1vbJbZU4a .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v1vbJbZU4a .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v1vbJbZU4a .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v1vbJbZU4a .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v1vbJbZU4a .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v1vbJbZU4a .navbar.navbar-short {
  min-height: 60px;
}
.cid-v1vbJbZU4a .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v1vbJbZU4a .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v1vbJbZU4a .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v1vbJbZU4a .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v1vbJbZU4a .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v1vbJbZU4a .dropdown-item.active,
.cid-v1vbJbZU4a .dropdown-item:active {
  background-color: transparent;
}
.cid-v1vbJbZU4a .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v1vbJbZU4a .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v1vbJbZU4a .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v1vbJbZU4a .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v1vbJbZU4a .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v1vbJbZU4a .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v1vbJbZU4a ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v1vbJbZU4a .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v1vbJbZU4a button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v1vbJbZU4a button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v1vbJbZU4a button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v1vbJbZU4a button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1vbJbZU4a button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1vbJbZU4a button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v1vbJbZU4a nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1vbJbZU4a nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v1vbJbZU4a nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v1vbJbZU4a nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1vbJbZU4a .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v1vbJbZU4a a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v1vbJbZU4a .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-v1vbJbZU4a .navbar {
    height: 70px;
  }
  .cid-v1vbJbZU4a .navbar.opened {
    height: auto;
  }
  .cid-v1vbJbZU4a .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v1vbJcgI39 {
  display: flex;
  background-image: url("../../../assets/images/asc-olena-001-1920x1280.jpg");
}
.cid-v1vbJcgI39 .mbr-overlay {
  background-color: #000000;
  opacity: 0.2;
}
.cid-v1vbJcgI39 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1vbJcgI39 .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-v1vbJcgI39 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1vbJcgI39 p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-v1vbJcgI39 {
    align-items: center;
  }
  .cid-v1vbJcgI39 .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1vbJcgI39 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-v1vbJcgI39 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-v1vbJcgI39 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-v1vbJcgI39 .content-wrap {
    width: 100%;
  }
}
.cid-v1vbJcgI39 .mbr-section-subtitle,
.cid-v1vbJcgI39 .line {
  color: #ffffff;
}
.cid-v1vbJcgI39 .mbr-text,
.cid-v1vbJcgI39 .mbr-section-btn {
  text-align: right;
}
.cid-v1vbJcr1ps {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-v1vbJcr1ps .row {
  align-items: center;
  justify-content: center;
}
.cid-v1vbJcr1ps .col-text {
  text-align: center;
  padding: 0;
}
.cid-v1vbJcr1ps .lists-container {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-v1vbJcr1ps .lists-container {
    flex-wrap: wrap;
  }
}
.cid-v1vbJcr1ps .card-wrapper {
  padding: 30px;
}
@media (max-width: 767px) {
  .cid-v1vbJcr1ps .card-wrapper {
    padding: 30px 12px;
  }
}
.cid-v1vbJcr1ps .card-box {
  display: flex;
  flex-direction: column;
}
.cid-v1vbJcr1ps .card-number {
  color: #877f75;
  width: 100%;
}
.cid-v1vbJcr1ps .card-title {
  color: #222222;
  width: 100%;
  margin-bottom: 1rem;
}
.cid-v1vbJcr1ps .card-text {
  color: #555555;
  width: 100%;
}
.cid-v1vbJcr1ps .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1vbJcr1ps .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1vbJcFYNh {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v1vbJcFYNh blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-v1vbJcFYNh .quote {
  color: #e43f3f;
}
.cid-v1vbJcFYNh .quote,
.cid-v1vbJcFYNh blockquote {
  color: #353535;
}
.cid-v1vbJcOToo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v1vbJcOToo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1vbJcOToo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1vbJcOToo .mbr-section-head {
  margin-bottom: 32px;
}
.cid-v1vbJcOToo .mbr-section-title {
  color: #24262b;
}
.cid-v1vbJcOToo .mbr-section-subtitle {
  color: #24262b;
}
.cid-v1vbJcOToo .items-row {
  row-gap: 32px;
}
.cid-v1vbJcOToo .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-v1vbJcOToo .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-v1vbJcOToo .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #ffffff;
  transition: 0.3s;
}
.cid-v1vbJcOToo .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-v1vbJcOToo .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-v1vbJcOToo .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-v1vbJcOToo .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-v1vbJcOToo .mbr-item-subtitle {
  color: #24262b;
}
.cid-v1vbJcOToo .carousel-control,
.cid-v1vbJcOToo .close {
  background: #1b1b1b;
}
.cid-v1vbJcOToo .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v1vbJcOToo .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v1vbJcOToo .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v1vbJcOToo .carousel-control-next span {
  margin-left: 5px;
}
.cid-v1vbJcOToo .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v1vbJcOToo .close::before {
  content: '\e91a';
}
.cid-v1vbJcOToo .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v1vbJcOToo .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v1vbJcOToo .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1vbJcOToo .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1vbJcOToo .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1vbJcOToo .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v1vbJcOToo .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v1vbJcOToo .carousel-indicators li.active,
.cid-v1vbJcOToo .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1vbJcOToo .carousel-indicators li::after,
.cid-v1vbJcOToo .carousel-indicators li::before {
  content: none;
}
.cid-v1vbJcOToo .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1vbJcOToo .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v1vbJcOToo .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v1vbJcOToo .carousel-indicators {
    display: none;
  }
}
.cid-v1vbJcOToo .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1vbJcOToo .carousel-inner > .active {
  display: block;
}
.cid-v1vbJcOToo .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1vbJcOToo .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v1vbJcOToo .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v1vbJcOToo .carousel-control,
  .cid-v1vbJcOToo .carousel-indicators,
  .cid-v1vbJcOToo .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v1vbJcOToo .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v1vbJcOToo .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v1vbJcOToo .carousel-indicators .active,
.cid-v1vbJcOToo .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v1vbJcOToo .carousel-indicators .active {
  background: #fff;
}
.cid-v1vbJcOToo .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v1vbJcOToo .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v1vbJcOToo .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v1vbJcOToo .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v1vbJcOToo .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v1vbJcOToo .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v1vbJcOToo .carousel {
  width: 100%;
}
.cid-v1vbJcOToo .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v1vbJcOToo .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v1vbJcOToo .modal.fade .modal-dialog,
.cid-v1vbJcOToo .modal.in .modal-dialog {
  transform: none;
}
.cid-v1vbJcOToo .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v1vbJcOToo H6 {
  text-align: center;
}
.cid-v1vbJdwcm9 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #fafafa;
}
.cid-v1vbJdwcm9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1vbJdwcm9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1vbJdwcm9 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-v1vbJdwcm9 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-v1vbJdwcm9 .embla__slide .slide-content {
  width: 100%;
}
.cid-v1vbJdwcm9 .embla__slide .slide-content .item-wrapper .item-content .item-text {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v1vbJdwcm9 .embla__slide .slide-content .item-wrapper .item-content .item-text {
    margin-bottom: 20px;
  }
}
.cid-v1vbJdwcm9 .embla__slide .slide-content .item-wrapper .item-content .name-wrapper .item-name {
  display: inline-flex;
  margin-bottom: 10px;
  padding-bottom: 2px;
  border-bottom: 1px solid #232323;
}
.cid-v1vbJdwcm9 .embla__slide .slide-content .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-v1vbJdwcm9 .embla__button--next,
.cid-v1vbJdwcm9 .embla__button--prev {
  display: flex;
}
.cid-v1vbJdwcm9 .embla__button {
  top: 50px;
  width: 60px;
  height: 60px;
  font-size: 18px;
  background-color: #ffffff !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 992px) {
  .cid-v1vbJdwcm9 .embla__button {
    top: 0;
  }
}
.cid-v1vbJdwcm9 .embla__button:hover {
  background-color: #e4ed64 !important;
  color: #000000 !important;
}
.cid-v1vbJdwcm9 .embla__button.embla__button--prev {
  left: 0;
}
.cid-v1vbJdwcm9 .embla__button.embla__button--next {
  right: 0;
}
.cid-v1vbJdwcm9 .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-v1vbJdwcm9 .embla__viewport {
  overflow: hidden;
  width: 70%;
  margin-right: 1rem;
}
@media (max-width: 992px) {
  .cid-v1vbJdwcm9 .embla__viewport {
    width: 100%;
  }
}
.cid-v1vbJdwcm9 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v1vbJdwcm9 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v1vbJdwcm9 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v1vbJdwcm9 .item-text {
  color: #000000;
  text-align: center;
}
.cid-v1vbJdwcm9 .item-name,
.cid-v1vbJdwcm9 .name-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v1vbJdwcm9 .item-role {
  color: #8a8a8a;
  text-align: center;
}
.cid-v1vbJdTyzR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbeb7;
}
.cid-v1vbJdTyzR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1vbJdTyzR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1vbJdTyzR .row {
  justify-content: space-between;
}
.cid-v1vbJdTyzR .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v1vbJdTyzR .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v1vbJdTyzR .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v1vbJdTyzR .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v1vbJdTyzR .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v1vbJdTyzR .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v1vbJdTyzR .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v1vbJdTyzR .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v1vbJdTyzR .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v1vbJdTyzR .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v1vbJdTyzR .list-wrapper .list .item-wrap:hover,
.cid-v1vbJdTyzR .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v1vbJdTyzR .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v1vbJdTyzR .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v1vbJdTyzR .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v1vbJdTyzR .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v1vbJdTyzR .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v1vbJdTyzR .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v1vbJdTyzR .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v1vbJdTyzR .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v1vbJdTyzR .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v1vbJdTyzR .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v1vbJdTyzR .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v1vbJdTyzR .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v1vbJdTyzR .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v1vbJdTyzR .mbr-section-title {
  color: #000000;
}
.cid-v1vbJdTyzR .mbr-text {
  color: #000000;
}
.cid-v1vbJdTyzR .list {
  color: #000000;
}
.cid-v1vbJdTyzR .mbr-desc {
  color: #000000;
}
.cid-v1vbJdTyzR .mbr-copy {
  color: #000000;
}
.cid-v1vbJdTyzR .mbr-desc,
.cid-v1vbJdTyzR .social-wrapper {
  text-align: center;
}
.cid-v1vbJdTyzR .mbr-copy,
.cid-v1vbJdTyzR .mbr-section-btn-main {
  text-align: center;
}
.cid-v1vfaU0LrE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v1vfaU0LrE nav.navbar {
  position: fixed;
}
.cid-v1vfaU0LrE .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-v1vfaU0LrE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v1vfaU0LrE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v1vfaU0LrE .dropdown-item:hover,
.cid-v1vfaU0LrE .dropdown-item:focus {
  background: #8b8c8d !important;
  color: white !important;
}
.cid-v1vfaU0LrE .dropdown-item:hover span {
  color: white;
}
.cid-v1vfaU0LrE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v1vfaU0LrE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v1vfaU0LrE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v1vfaU0LrE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v1vfaU0LrE .nav-link {
  position: relative;
}
.cid-v1vfaU0LrE .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v1vfaU0LrE .container {
    flex-wrap: wrap;
  }
}
.cid-v1vfaU0LrE .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v1vfaU0LrE .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v1vfaU0LrE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v1vfaU0LrE .dropdown-menu,
.cid-v1vfaU0LrE .navbar.opened {
  background: #ffffff !important;
}
.cid-v1vfaU0LrE .nav-item:focus,
.cid-v1vfaU0LrE .nav-link:focus {
  outline: none;
}
.cid-v1vfaU0LrE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v1vfaU0LrE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v1vfaU0LrE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v1vfaU0LrE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v1vfaU0LrE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v1vfaU0LrE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v1vfaU0LrE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v1vfaU0LrE .navbar.opened {
  transition: all 0.3s;
}
.cid-v1vfaU0LrE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v1vfaU0LrE .navbar .navbar-logo img {
  width: auto;
}
.cid-v1vfaU0LrE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v1vfaU0LrE .navbar.collapsed {
  justify-content: center;
}
.cid-v1vfaU0LrE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v1vfaU0LrE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v1vfaU0LrE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-v1vfaU0LrE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v1vfaU0LrE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v1vfaU0LrE .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-v1vfaU0LrE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v1vfaU0LrE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v1vfaU0LrE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v1vfaU0LrE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v1vfaU0LrE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v1vfaU0LrE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v1vfaU0LrE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v1vfaU0LrE .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-v1vfaU0LrE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v1vfaU0LrE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v1vfaU0LrE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v1vfaU0LrE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v1vfaU0LrE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v1vfaU0LrE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v1vfaU0LrE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v1vfaU0LrE .navbar.navbar-short {
  min-height: 60px;
}
.cid-v1vfaU0LrE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v1vfaU0LrE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v1vfaU0LrE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v1vfaU0LrE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v1vfaU0LrE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v1vfaU0LrE .dropdown-item.active,
.cid-v1vfaU0LrE .dropdown-item:active {
  background-color: transparent;
}
.cid-v1vfaU0LrE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v1vfaU0LrE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v1vfaU0LrE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v1vfaU0LrE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v1vfaU0LrE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v1vfaU0LrE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v1vfaU0LrE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v1vfaU0LrE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v1vfaU0LrE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v1vfaU0LrE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v1vfaU0LrE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v1vfaU0LrE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1vfaU0LrE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1vfaU0LrE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v1vfaU0LrE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1vfaU0LrE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v1vfaU0LrE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v1vfaU0LrE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1vfaU0LrE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v1vfaU0LrE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v1vfaU0LrE .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-v1vfaU0LrE .navbar {
    height: 70px;
  }
  .cid-v1vfaU0LrE .navbar.opened {
    height: auto;
  }
  .cid-v1vfaU0LrE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v1vfaUhCd4 {
  display: flex;
  background-image: url("../../../assets/images/asc-promedic-main-office-001-1920x1280.jpg");
}
.cid-v1vfaUhCd4 .mbr-overlay {
  background-color: #000000;
  opacity: 0.2;
}
.cid-v1vfaUhCd4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1vfaUhCd4 .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-v1vfaUhCd4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1vfaUhCd4 p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-v1vfaUhCd4 {
    align-items: center;
  }
  .cid-v1vfaUhCd4 .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v1vfaUhCd4 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-v1vfaUhCd4 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-v1vfaUhCd4 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-v1vfaUhCd4 .content-wrap {
    width: 100%;
  }
}
.cid-v1vfaUhCd4 .mbr-section-subtitle,
.cid-v1vfaUhCd4 .line {
  color: #ffffff;
}
.cid-v1vfaUhCd4 .mbr-text,
.cid-v1vfaUhCd4 .mbr-section-btn {
  text-align: right;
}
.cid-v1vfaUtRTc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-v1vfaUtRTc .row {
  align-items: center;
  justify-content: center;
}
.cid-v1vfaUtRTc .col-text {
  text-align: center;
  padding: 0;
}
.cid-v1vfaUtRTc .lists-container {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-v1vfaUtRTc .lists-container {
    flex-wrap: wrap;
  }
}
.cid-v1vfaUtRTc .card-wrapper {
  padding: 30px;
}
@media (max-width: 767px) {
  .cid-v1vfaUtRTc .card-wrapper {
    padding: 30px 12px;
  }
}
.cid-v1vfaUtRTc .card-box {
  display: flex;
  flex-direction: column;
}
.cid-v1vfaUtRTc .card-number {
  color: #877f75;
  width: 100%;
}
.cid-v1vfaUtRTc .card-title {
  color: #222222;
  width: 100%;
  margin-bottom: 1rem;
}
.cid-v1vfaUtRTc .card-text {
  color: #555555;
  width: 100%;
}
.cid-v1vfaUtRTc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1vfaUtRTc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1vfaUIPKV {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v1vfaUIPKV blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-v1vfaUIPKV .quote {
  color: #e43f3f;
}
.cid-v1vfaUIPKV .quote,
.cid-v1vfaUIPKV blockquote {
  color: #353535;
}
.cid-v1vfaURBZT {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v1vfaURBZT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1vfaURBZT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1vfaURBZT .mbr-section-head {
  margin-bottom: 32px;
}
.cid-v1vfaURBZT .mbr-section-title {
  color: #24262b;
}
.cid-v1vfaURBZT .mbr-section-subtitle {
  color: #24262b;
}
.cid-v1vfaURBZT .items-row {
  row-gap: 32px;
}
.cid-v1vfaURBZT .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-v1vfaURBZT .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-v1vfaURBZT .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #ffffff;
  transition: 0.3s;
}
.cid-v1vfaURBZT .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-v1vfaURBZT .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-v1vfaURBZT .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-v1vfaURBZT .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-v1vfaURBZT .mbr-item-subtitle {
  color: #24262b;
}
.cid-v1vfaURBZT .carousel-control,
.cid-v1vfaURBZT .close {
  background: #1b1b1b;
}
.cid-v1vfaURBZT .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v1vfaURBZT .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v1vfaURBZT .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v1vfaURBZT .carousel-control-next span {
  margin-left: 5px;
}
.cid-v1vfaURBZT .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v1vfaURBZT .close::before {
  content: '\e91a';
}
.cid-v1vfaURBZT .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v1vfaURBZT .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v1vfaURBZT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1vfaURBZT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v1vfaURBZT .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v1vfaURBZT .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v1vfaURBZT .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v1vfaURBZT .carousel-indicators li.active,
.cid-v1vfaURBZT .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v1vfaURBZT .carousel-indicators li::after,
.cid-v1vfaURBZT .carousel-indicators li::before {
  content: none;
}
.cid-v1vfaURBZT .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v1vfaURBZT .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v1vfaURBZT .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v1vfaURBZT .carousel-indicators {
    display: none;
  }
}
.cid-v1vfaURBZT .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v1vfaURBZT .carousel-inner > .active {
  display: block;
}
.cid-v1vfaURBZT .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v1vfaURBZT .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v1vfaURBZT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v1vfaURBZT .carousel-control,
  .cid-v1vfaURBZT .carousel-indicators,
  .cid-v1vfaURBZT .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v1vfaURBZT .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v1vfaURBZT .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v1vfaURBZT .carousel-indicators .active,
.cid-v1vfaURBZT .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v1vfaURBZT .carousel-indicators .active {
  background: #fff;
}
.cid-v1vfaURBZT .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v1vfaURBZT .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v1vfaURBZT .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v1vfaURBZT .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v1vfaURBZT .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v1vfaURBZT .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v1vfaURBZT .carousel {
  width: 100%;
}
.cid-v1vfaURBZT .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v1vfaURBZT .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v1vfaURBZT .modal.fade .modal-dialog,
.cid-v1vfaURBZT .modal.in .modal-dialog {
  transform: none;
}
.cid-v1vfaURBZT .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v1vfaURBZT H6 {
  text-align: center;
}
.cid-v1vfaVzjKd {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #fafafa;
}
.cid-v1vfaVzjKd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1vfaVzjKd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1vfaVzjKd .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-v1vfaVzjKd .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-v1vfaVzjKd .embla__slide .slide-content {
  width: 100%;
}
.cid-v1vfaVzjKd .embla__slide .slide-content .item-wrapper .item-content .item-text {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v1vfaVzjKd .embla__slide .slide-content .item-wrapper .item-content .item-text {
    margin-bottom: 20px;
  }
}
.cid-v1vfaVzjKd .embla__slide .slide-content .item-wrapper .item-content .name-wrapper .item-name {
  display: inline-flex;
  margin-bottom: 10px;
  padding-bottom: 2px;
  border-bottom: 1px solid #232323;
}
.cid-v1vfaVzjKd .embla__slide .slide-content .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-v1vfaVzjKd .embla__button--next,
.cid-v1vfaVzjKd .embla__button--prev {
  display: flex;
}
.cid-v1vfaVzjKd .embla__button {
  top: 50px;
  width: 60px;
  height: 60px;
  font-size: 18px;
  background-color: #ffffff !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 992px) {
  .cid-v1vfaVzjKd .embla__button {
    top: 0;
  }
}
.cid-v1vfaVzjKd .embla__button:hover {
  background-color: #e4ed64 !important;
  color: #000000 !important;
}
.cid-v1vfaVzjKd .embla__button.embla__button--prev {
  left: 0;
}
.cid-v1vfaVzjKd .embla__button.embla__button--next {
  right: 0;
}
.cid-v1vfaVzjKd .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-v1vfaVzjKd .embla__viewport {
  overflow: hidden;
  width: 70%;
  margin-right: 1rem;
}
@media (max-width: 992px) {
  .cid-v1vfaVzjKd .embla__viewport {
    width: 100%;
  }
}
.cid-v1vfaVzjKd .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v1vfaVzjKd .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v1vfaVzjKd .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v1vfaVzjKd .item-text {
  color: #000000;
  text-align: center;
}
.cid-v1vfaVzjKd .item-name,
.cid-v1vfaVzjKd .name-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v1vfaVzjKd .item-role {
  color: #8a8a8a;
  text-align: center;
}
.cid-v1vfaVZgyj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbeb7;
}
.cid-v1vfaVZgyj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1vfaVZgyj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1vfaVZgyj .row {
  justify-content: space-between;
}
.cid-v1vfaVZgyj .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v1vfaVZgyj .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v1vfaVZgyj .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v1vfaVZgyj .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v1vfaVZgyj .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v1vfaVZgyj .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v1vfaVZgyj .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v1vfaVZgyj .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v1vfaVZgyj .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v1vfaVZgyj .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v1vfaVZgyj .list-wrapper .list .item-wrap:hover,
.cid-v1vfaVZgyj .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v1vfaVZgyj .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v1vfaVZgyj .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v1vfaVZgyj .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v1vfaVZgyj .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v1vfaVZgyj .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v1vfaVZgyj .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v1vfaVZgyj .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v1vfaVZgyj .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v1vfaVZgyj .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v1vfaVZgyj .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v1vfaVZgyj .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v1vfaVZgyj .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v1vfaVZgyj .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v1vfaVZgyj .mbr-section-title {
  color: #000000;
}
.cid-v1vfaVZgyj .mbr-text {
  color: #000000;
}
.cid-v1vfaVZgyj .list {
  color: #000000;
}
.cid-v1vfaVZgyj .mbr-desc {
  color: #000000;
}
.cid-v1vfaVZgyj .mbr-copy {
  color: #000000;
}
.cid-v1vfaVZgyj .mbr-desc,
.cid-v1vfaVZgyj .social-wrapper {
  text-align: center;
}
.cid-v1vfaVZgyj .mbr-copy,
.cid-v1vfaVZgyj .mbr-section-btn-main {
  text-align: center;
}
.cid-v1v0rV46uz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v1v0rV46uz nav.navbar {
  position: fixed;
}
.cid-v1v0rV46uz .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-v1v0rV46uz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v1v0rV46uz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v1v0rV46uz .dropdown-item:hover,
.cid-v1v0rV46uz .dropdown-item:focus {
  background: #8b8c8d !important;
  color: white !important;
}
.cid-v1v0rV46uz .dropdown-item:hover span {
  color: white;
}
.cid-v1v0rV46uz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v1v0rV46uz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v1v0rV46uz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v1v0rV46uz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v1v0rV46uz .nav-link {
  position: relative;
}
.cid-v1v0rV46uz .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v1v0rV46uz .container {
    flex-wrap: wrap;
  }
}
.cid-v1v0rV46uz .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v1v0rV46uz .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v1v0rV46uz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v1v0rV46uz .dropdown-menu,
.cid-v1v0rV46uz .navbar.opened {
  background: #ffffff !important;
}
.cid-v1v0rV46uz .nav-item:focus,
.cid-v1v0rV46uz .nav-link:focus {
  outline: none;
}
.cid-v1v0rV46uz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v1v0rV46uz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v1v0rV46uz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v1v0rV46uz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v1v0rV46uz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v1v0rV46uz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v1v0rV46uz .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v1v0rV46uz .navbar.opened {
  transition: all 0.3s;
}
.cid-v1v0rV46uz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v1v0rV46uz .navbar .navbar-logo img {
  width: auto;
}
.cid-v1v0rV46uz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v1v0rV46uz .navbar.collapsed {
  justify-content: center;
}
.cid-v1v0rV46uz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v1v0rV46uz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v1v0rV46uz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-v1v0rV46uz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v1v0rV46uz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v1v0rV46uz .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-v1v0rV46uz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v1v0rV46uz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v1v0rV46uz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v1v0rV46uz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v1v0rV46uz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v1v0rV46uz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v1v0rV46uz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v1v0rV46uz .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-v1v0rV46uz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v1v0rV46uz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v1v0rV46uz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v1v0rV46uz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v1v0rV46uz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v1v0rV46uz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v1v0rV46uz .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v1v0rV46uz .navbar.navbar-short {
  min-height: 60px;
}
.cid-v1v0rV46uz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v1v0rV46uz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v1v0rV46uz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v1v0rV46uz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v1v0rV46uz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v1v0rV46uz .dropdown-item.active,
.cid-v1v0rV46uz .dropdown-item:active {
  background-color: transparent;
}
.cid-v1v0rV46uz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v1v0rV46uz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v1v0rV46uz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v1v0rV46uz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v1v0rV46uz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v1v0rV46uz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v1v0rV46uz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v1v0rV46uz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v1v0rV46uz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v1v0rV46uz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v1v0rV46uz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v1v0rV46uz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1v0rV46uz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1v0rV46uz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v1v0rV46uz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1v0rV46uz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v1v0rV46uz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v1v0rV46uz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1v0rV46uz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v1v0rV46uz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v1v0rV46uz .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-v1v0rV46uz .navbar {
    height: 70px;
  }
  .cid-v1v0rV46uz .navbar.opened {
    height: auto;
  }
  .cid-v1v0rV46uz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v93Q6hPMmR {
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-v93Q6hPMmR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v93Q6hPMmR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v93Q6hPMmR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v93Q6hPMmR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v93Q6hPMmR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #877f75;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v93Q6hPMmR .icon-focus,
.cid-v93Q6hPMmR .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-v93Q6hPMmR .icon-focus:before,
.cid-v93Q6hPMmR .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v93Q6hPMmR .icon-video {
  font-size: 1.5rem !important;
}
.cid-v93Q6hPMmR .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  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-v93Q6hPMmR ul {
  font-size: 0;
}
.cid-v93Q6hPMmR .mbr-gallery-filter ul {
  text-align: left;
}
.cid-v93Q6hPMmR .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-v93Q6hPMmR .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem !important;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #808080 !important;
}
.cid-v93Q6hPMmR .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-v93Q6hPMmR .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-v93Q6hPMmR .mbr-gallery-filter ul li.active .btn:after {
  border-color: #808080;
}
.cid-v93Q6hPMmR .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-v93Q6hPMmR .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-v93Q6hPMmR .mbr-gallery-filter ul li:first-child,
.cid-v93Q6hPMmR .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-v93Q6hPMmR .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-v93Q6hPMmR .mbr-gallery-item > div:hover:before {
  opacity: 0.5 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-v93Q6hPMmR .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-v93Q6hPMmR .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-v93Q6hPMmR .mbr-section-title b:last-child,
.cid-v93Q6hPMmR .mbr-section-title strong:last-child {
  color: #28282c;
}
.cid-v93Q6hPMmR .mbr-gallery-filter {
  padding-left: 0;
  padding-right: 0;
}
.cid-v93Q6hPMmR .mbr-gallery-filter ul li .btn:after {
  transform: none !important;
}
.cid-v93Q6hPMmR .mbr-section-title,
.cid-v93Q6hPMmR .mbr-gallery-filter ul {
  color: #808080;
}
.cid-v93Q6hPMmR .mbr-gallery-item {
  cursor: pointer;
}
.cid-v93Q6hPMmR .mbr-gallery-item a,
.cid-v93Q6hPMmR .mbr-gallery-item img {
  pointer-events: none;
}
.cid-v93Q6hPMmR section.gallery1 .icon-focus,
.cid-v93Q6hPMmR section.gallery1 .icon-video {
  display: none !important;
}
.cid-v1v0rXbI9c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbeb7;
}
.cid-v1v0rXbI9c .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1v0rXbI9c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1v0rXbI9c .row {
  justify-content: space-between;
}
.cid-v1v0rXbI9c .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v1v0rXbI9c .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v1v0rXbI9c .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v1v0rXbI9c .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v1v0rXbI9c .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v1v0rXbI9c .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v1v0rXbI9c .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v1v0rXbI9c .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v1v0rXbI9c .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v1v0rXbI9c .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v1v0rXbI9c .list-wrapper .list .item-wrap:hover,
.cid-v1v0rXbI9c .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v1v0rXbI9c .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v1v0rXbI9c .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v1v0rXbI9c .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v1v0rXbI9c .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v1v0rXbI9c .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v1v0rXbI9c .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v1v0rXbI9c .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v1v0rXbI9c .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v1v0rXbI9c .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v1v0rXbI9c .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v1v0rXbI9c .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v1v0rXbI9c .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v1v0rXbI9c .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v1v0rXbI9c .mbr-section-title {
  color: #000000;
}
.cid-v1v0rXbI9c .mbr-text {
  color: #000000;
}
.cid-v1v0rXbI9c .list {
  color: #000000;
}
.cid-v1v0rXbI9c .mbr-desc {
  color: #000000;
}
.cid-v1v0rXbI9c .mbr-copy {
  color: #000000;
}
.cid-v1v0rXbI9c .mbr-desc,
.cid-v1v0rXbI9c .social-wrapper {
  text-align: center;
}
.cid-v1v0rXbI9c .mbr-copy,
.cid-v1v0rXbI9c .mbr-section-btn-main {
  text-align: center;
}
.cid-v5ySpe1Tti {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v5ySpe1Tti nav.navbar {
  position: fixed;
}
.cid-v5ySpe1Tti .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-v5ySpe1Tti .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v5ySpe1Tti .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v5ySpe1Tti .dropdown-item:hover,
.cid-v5ySpe1Tti .dropdown-item:focus {
  background: #8b8c8d !important;
  color: white !important;
}
.cid-v5ySpe1Tti .dropdown-item:hover span {
  color: white;
}
.cid-v5ySpe1Tti .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v5ySpe1Tti .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v5ySpe1Tti .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v5ySpe1Tti .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v5ySpe1Tti .nav-link {
  position: relative;
}
.cid-v5ySpe1Tti .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v5ySpe1Tti .container {
    flex-wrap: wrap;
  }
}
.cid-v5ySpe1Tti .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v5ySpe1Tti .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v5ySpe1Tti .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v5ySpe1Tti .dropdown-menu,
.cid-v5ySpe1Tti .navbar.opened {
  background: #ffffff !important;
}
.cid-v5ySpe1Tti .nav-item:focus,
.cid-v5ySpe1Tti .nav-link:focus {
  outline: none;
}
.cid-v5ySpe1Tti .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v5ySpe1Tti .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v5ySpe1Tti .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v5ySpe1Tti .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v5ySpe1Tti .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v5ySpe1Tti .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v5ySpe1Tti .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v5ySpe1Tti .navbar.opened {
  transition: all 0.3s;
}
.cid-v5ySpe1Tti .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v5ySpe1Tti .navbar .navbar-logo img {
  width: auto;
}
.cid-v5ySpe1Tti .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v5ySpe1Tti .navbar.collapsed {
  justify-content: center;
}
.cid-v5ySpe1Tti .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v5ySpe1Tti .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v5ySpe1Tti .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-v5ySpe1Tti .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v5ySpe1Tti .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v5ySpe1Tti .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-v5ySpe1Tti .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v5ySpe1Tti .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v5ySpe1Tti .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v5ySpe1Tti .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v5ySpe1Tti .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v5ySpe1Tti .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v5ySpe1Tti .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v5ySpe1Tti .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-v5ySpe1Tti .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v5ySpe1Tti .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v5ySpe1Tti .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v5ySpe1Tti .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v5ySpe1Tti .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v5ySpe1Tti .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v5ySpe1Tti .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v5ySpe1Tti .navbar.navbar-short {
  min-height: 60px;
}
.cid-v5ySpe1Tti .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v5ySpe1Tti .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v5ySpe1Tti .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v5ySpe1Tti .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v5ySpe1Tti .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v5ySpe1Tti .dropdown-item.active,
.cid-v5ySpe1Tti .dropdown-item:active {
  background-color: transparent;
}
.cid-v5ySpe1Tti .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v5ySpe1Tti .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v5ySpe1Tti .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v5ySpe1Tti .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v5ySpe1Tti .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v5ySpe1Tti .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v5ySpe1Tti ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v5ySpe1Tti .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v5ySpe1Tti button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v5ySpe1Tti button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v5ySpe1Tti button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v5ySpe1Tti button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v5ySpe1Tti button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v5ySpe1Tti button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v5ySpe1Tti nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v5ySpe1Tti nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v5ySpe1Tti nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v5ySpe1Tti nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v5ySpe1Tti .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v5ySpe1Tti a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v5ySpe1Tti .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-v5ySpe1Tti .navbar {
    height: 70px;
  }
  .cid-v5ySpe1Tti .navbar.opened {
    height: auto;
  }
  .cid-v5ySpe1Tti .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v5ySpfehp7 {
  display: flex;
  background-image: url("../../../assets/images/asc-olena-001-1920x1280.jpg");
}
.cid-v5ySpfehp7 .mbr-overlay {
  background-color: #000000;
  opacity: 0.2;
}
.cid-v5ySpfehp7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5ySpfehp7 .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-v5ySpfehp7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5ySpfehp7 p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-v5ySpfehp7 {
    align-items: center;
  }
  .cid-v5ySpfehp7 .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v5ySpfehp7 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-v5ySpfehp7 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-v5ySpfehp7 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-v5ySpfehp7 .content-wrap {
    width: 100%;
  }
}
.cid-v5ySpfehp7 .mbr-section-subtitle,
.cid-v5ySpfehp7 .line {
  color: #ffffff;
}
.cid-v5ySpfehp7 .mbr-text,
.cid-v5ySpfehp7 .mbr-section-btn {
  text-align: right;
}
.cid-v5ySpfGrXg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-v5ySpfGrXg .row {
  align-items: center;
  justify-content: center;
}
.cid-v5ySpfGrXg .col-text {
  text-align: center;
  padding: 0;
}
.cid-v5ySpfGrXg .lists-container {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-v5ySpfGrXg .lists-container {
    flex-wrap: wrap;
  }
}
.cid-v5ySpfGrXg .card-wrapper {
  padding: 30px;
}
@media (max-width: 767px) {
  .cid-v5ySpfGrXg .card-wrapper {
    padding: 30px 12px;
  }
}
.cid-v5ySpfGrXg .card-box {
  display: flex;
  flex-direction: column;
}
.cid-v5ySpfGrXg .card-number {
  color: #877f75;
  width: 100%;
}
.cid-v5ySpfGrXg .card-title {
  color: #222222;
  width: 100%;
  margin-bottom: 1rem;
}
.cid-v5ySpfGrXg .card-text {
  color: #555555;
  width: 100%;
}
.cid-v5ySpfGrXg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5ySpfGrXg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5ySpgab4N {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v5ySpgab4N blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-v5ySpgab4N .quote {
  color: #e43f3f;
}
.cid-v5ySpgab4N .quote,
.cid-v5ySpgab4N blockquote {
  color: #353535;
}
.cid-v5ySpgBPeF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v5ySpgBPeF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5ySpgBPeF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5ySpgBPeF .mbr-section-head {
  margin-bottom: 32px;
}
.cid-v5ySpgBPeF .mbr-section-title {
  color: #24262b;
}
.cid-v5ySpgBPeF .mbr-section-subtitle {
  color: #24262b;
}
.cid-v5ySpgBPeF .items-row {
  row-gap: 32px;
}
.cid-v5ySpgBPeF .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-v5ySpgBPeF .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-v5ySpgBPeF .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #ffffff;
  transition: 0.3s;
}
.cid-v5ySpgBPeF .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-v5ySpgBPeF .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-v5ySpgBPeF .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-v5ySpgBPeF .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-v5ySpgBPeF .mbr-item-subtitle {
  color: #24262b;
}
.cid-v5ySpgBPeF .carousel-control,
.cid-v5ySpgBPeF .close {
  background: #1b1b1b;
}
.cid-v5ySpgBPeF .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v5ySpgBPeF .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v5ySpgBPeF .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v5ySpgBPeF .carousel-control-next span {
  margin-left: 5px;
}
.cid-v5ySpgBPeF .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v5ySpgBPeF .close::before {
  content: '\e91a';
}
.cid-v5ySpgBPeF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v5ySpgBPeF .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v5ySpgBPeF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v5ySpgBPeF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v5ySpgBPeF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v5ySpgBPeF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v5ySpgBPeF .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v5ySpgBPeF .carousel-indicators li.active,
.cid-v5ySpgBPeF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v5ySpgBPeF .carousel-indicators li::after,
.cid-v5ySpgBPeF .carousel-indicators li::before {
  content: none;
}
.cid-v5ySpgBPeF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v5ySpgBPeF .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v5ySpgBPeF .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v5ySpgBPeF .carousel-indicators {
    display: none;
  }
}
.cid-v5ySpgBPeF .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v5ySpgBPeF .carousel-inner > .active {
  display: block;
}
.cid-v5ySpgBPeF .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v5ySpgBPeF .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v5ySpgBPeF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v5ySpgBPeF .carousel-control,
  .cid-v5ySpgBPeF .carousel-indicators,
  .cid-v5ySpgBPeF .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v5ySpgBPeF .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v5ySpgBPeF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v5ySpgBPeF .carousel-indicators .active,
.cid-v5ySpgBPeF .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v5ySpgBPeF .carousel-indicators .active {
  background: #fff;
}
.cid-v5ySpgBPeF .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v5ySpgBPeF .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v5ySpgBPeF .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v5ySpgBPeF .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v5ySpgBPeF .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v5ySpgBPeF .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v5ySpgBPeF .carousel {
  width: 100%;
}
.cid-v5ySpgBPeF .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v5ySpgBPeF .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v5ySpgBPeF .modal.fade .modal-dialog,
.cid-v5ySpgBPeF .modal.in .modal-dialog {
  transform: none;
}
.cid-v5ySpgBPeF .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v5ySpgBPeF H6 {
  text-align: center;
}
.cid-v5ySphARk0 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #fafafa;
}
.cid-v5ySphARk0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5ySphARk0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5ySphARk0 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-v5ySphARk0 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-v5ySphARk0 .embla__slide .slide-content {
  width: 100%;
}
.cid-v5ySphARk0 .embla__slide .slide-content .item-wrapper .item-content .item-text {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v5ySphARk0 .embla__slide .slide-content .item-wrapper .item-content .item-text {
    margin-bottom: 20px;
  }
}
.cid-v5ySphARk0 .embla__slide .slide-content .item-wrapper .item-content .name-wrapper .item-name {
  display: inline-flex;
  margin-bottom: 10px;
  padding-bottom: 2px;
  border-bottom: 1px solid #232323;
}
.cid-v5ySphARk0 .embla__slide .slide-content .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-v5ySphARk0 .embla__button--next,
.cid-v5ySphARk0 .embla__button--prev {
  display: flex;
}
.cid-v5ySphARk0 .embla__button {
  top: 50px;
  width: 60px;
  height: 60px;
  font-size: 18px;
  background-color: #ffffff !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 992px) {
  .cid-v5ySphARk0 .embla__button {
    top: 0;
  }
}
.cid-v5ySphARk0 .embla__button:hover {
  background-color: #e4ed64 !important;
  color: #000000 !important;
}
.cid-v5ySphARk0 .embla__button.embla__button--prev {
  left: 0;
}
.cid-v5ySphARk0 .embla__button.embla__button--next {
  right: 0;
}
.cid-v5ySphARk0 .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-v5ySphARk0 .embla__viewport {
  overflow: hidden;
  width: 70%;
  margin-right: 1rem;
}
@media (max-width: 992px) {
  .cid-v5ySphARk0 .embla__viewport {
    width: 100%;
  }
}
.cid-v5ySphARk0 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v5ySphARk0 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v5ySphARk0 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v5ySphARk0 .item-text {
  color: #000000;
  text-align: center;
}
.cid-v5ySphARk0 .item-name,
.cid-v5ySphARk0 .name-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v5ySphARk0 .item-role {
  color: #8a8a8a;
  text-align: center;
}
.cid-v5ySpiiTAV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbeb7;
}
.cid-v5ySpiiTAV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5ySpiiTAV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5ySpiiTAV .row {
  justify-content: space-between;
}
.cid-v5ySpiiTAV .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v5ySpiiTAV .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v5ySpiiTAV .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v5ySpiiTAV .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v5ySpiiTAV .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v5ySpiiTAV .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v5ySpiiTAV .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v5ySpiiTAV .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v5ySpiiTAV .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v5ySpiiTAV .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v5ySpiiTAV .list-wrapper .list .item-wrap:hover,
.cid-v5ySpiiTAV .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v5ySpiiTAV .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v5ySpiiTAV .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v5ySpiiTAV .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v5ySpiiTAV .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v5ySpiiTAV .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v5ySpiiTAV .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v5ySpiiTAV .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v5ySpiiTAV .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v5ySpiiTAV .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v5ySpiiTAV .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v5ySpiiTAV .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v5ySpiiTAV .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v5ySpiiTAV .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v5ySpiiTAV .mbr-section-title {
  color: #000000;
}
.cid-v5ySpiiTAV .mbr-text {
  color: #000000;
}
.cid-v5ySpiiTAV .list {
  color: #000000;
}
.cid-v5ySpiiTAV .mbr-desc {
  color: #000000;
}
.cid-v5ySpiiTAV .mbr-copy {
  color: #000000;
}
.cid-v5ySpiiTAV .mbr-desc,
.cid-v5ySpiiTAV .social-wrapper {
  text-align: center;
}
.cid-v5ySpiiTAV .mbr-copy,
.cid-v5ySpiiTAV .mbr-section-btn-main {
  text-align: center;
}
.cid-v5ySK7T9L4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v5ySK7T9L4 nav.navbar {
  position: fixed;
}
.cid-v5ySK7T9L4 .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-v5ySK7T9L4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v5ySK7T9L4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v5ySK7T9L4 .dropdown-item:hover,
.cid-v5ySK7T9L4 .dropdown-item:focus {
  background: #8b8c8d !important;
  color: white !important;
}
.cid-v5ySK7T9L4 .dropdown-item:hover span {
  color: white;
}
.cid-v5ySK7T9L4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v5ySK7T9L4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v5ySK7T9L4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v5ySK7T9L4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v5ySK7T9L4 .nav-link {
  position: relative;
}
.cid-v5ySK7T9L4 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v5ySK7T9L4 .container {
    flex-wrap: wrap;
  }
}
.cid-v5ySK7T9L4 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v5ySK7T9L4 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v5ySK7T9L4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v5ySK7T9L4 .dropdown-menu,
.cid-v5ySK7T9L4 .navbar.opened {
  background: #ffffff !important;
}
.cid-v5ySK7T9L4 .nav-item:focus,
.cid-v5ySK7T9L4 .nav-link:focus {
  outline: none;
}
.cid-v5ySK7T9L4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v5ySK7T9L4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v5ySK7T9L4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v5ySK7T9L4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v5ySK7T9L4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v5ySK7T9L4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v5ySK7T9L4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v5ySK7T9L4 .navbar.opened {
  transition: all 0.3s;
}
.cid-v5ySK7T9L4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v5ySK7T9L4 .navbar .navbar-logo img {
  width: auto;
}
.cid-v5ySK7T9L4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v5ySK7T9L4 .navbar.collapsed {
  justify-content: center;
}
.cid-v5ySK7T9L4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v5ySK7T9L4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v5ySK7T9L4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-v5ySK7T9L4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v5ySK7T9L4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v5ySK7T9L4 .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-v5ySK7T9L4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v5ySK7T9L4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v5ySK7T9L4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v5ySK7T9L4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v5ySK7T9L4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v5ySK7T9L4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v5ySK7T9L4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v5ySK7T9L4 .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-v5ySK7T9L4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v5ySK7T9L4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v5ySK7T9L4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v5ySK7T9L4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v5ySK7T9L4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v5ySK7T9L4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v5ySK7T9L4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v5ySK7T9L4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v5ySK7T9L4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v5ySK7T9L4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v5ySK7T9L4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v5ySK7T9L4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v5ySK7T9L4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v5ySK7T9L4 .dropdown-item.active,
.cid-v5ySK7T9L4 .dropdown-item:active {
  background-color: transparent;
}
.cid-v5ySK7T9L4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v5ySK7T9L4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v5ySK7T9L4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v5ySK7T9L4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v5ySK7T9L4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v5ySK7T9L4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v5ySK7T9L4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v5ySK7T9L4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v5ySK7T9L4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v5ySK7T9L4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v5ySK7T9L4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v5ySK7T9L4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v5ySK7T9L4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v5ySK7T9L4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v5ySK7T9L4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v5ySK7T9L4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v5ySK7T9L4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v5ySK7T9L4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v5ySK7T9L4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v5ySK7T9L4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v5ySK7T9L4 .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-v5ySK7T9L4 .navbar {
    height: 70px;
  }
  .cid-v5ySK7T9L4 .navbar.opened {
    height: auto;
  }
  .cid-v5ySK7T9L4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v5ySK8z8mx {
  display: flex;
  background-image: url("../../../assets/images/img-20250626-wa0020-1-1600x900.jpg");
}
.cid-v5ySK8z8mx .mbr-overlay {
  background-color: #000000;
  opacity: 0.2;
}
.cid-v5ySK8z8mx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5ySK8z8mx .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-v5ySK8z8mx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5ySK8z8mx p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-v5ySK8z8mx {
    align-items: center;
  }
  .cid-v5ySK8z8mx .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v5ySK8z8mx .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-v5ySK8z8mx {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-v5ySK8z8mx .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-v5ySK8z8mx .content-wrap {
    width: 100%;
  }
}
.cid-v5ySK8z8mx .mbr-section-subtitle,
.cid-v5ySK8z8mx .line {
  color: #ffffff;
}
.cid-v5ySK8z8mx .mbr-text,
.cid-v5ySK8z8mx .mbr-section-btn {
  text-align: right;
}
.cid-v5ySK96bT3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-v5ySK96bT3 .row {
  align-items: center;
  justify-content: center;
}
.cid-v5ySK96bT3 .col-text {
  text-align: center;
  padding: 0;
}
.cid-v5ySK96bT3 .lists-container {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-v5ySK96bT3 .lists-container {
    flex-wrap: wrap;
  }
}
.cid-v5ySK96bT3 .card-wrapper {
  padding: 30px;
}
@media (max-width: 767px) {
  .cid-v5ySK96bT3 .card-wrapper {
    padding: 30px 12px;
  }
}
.cid-v5ySK96bT3 .card-box {
  display: flex;
  flex-direction: column;
}
.cid-v5ySK96bT3 .card-number {
  color: #877f75;
  width: 100%;
}
.cid-v5ySK96bT3 .card-title {
  color: #222222;
  width: 100%;
  margin-bottom: 1rem;
}
.cid-v5ySK96bT3 .card-text {
  color: #555555;
  width: 100%;
}
.cid-v5ySK96bT3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5ySK96bT3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5ySK9BG2V {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v5ySK9BG2V blockquote {
  border-color: currentColor;
  padding: 0.5rem 1.5rem;
}
.cid-v5ySK9BG2V .quote {
  color: #e43f3f;
}
.cid-v5ySK9BG2V .quote,
.cid-v5ySK9BG2V blockquote {
  color: #353535;
}
.cid-v5ySKa2xiJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v5ySKa2xiJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5ySKa2xiJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5ySKa2xiJ .mbr-section-head {
  margin-bottom: 32px;
}
.cid-v5ySKa2xiJ .mbr-section-title {
  color: #24262b;
}
.cid-v5ySKa2xiJ .mbr-section-subtitle {
  color: #24262b;
}
.cid-v5ySKa2xiJ .items-row {
  row-gap: 32px;
}
.cid-v5ySKa2xiJ .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-v5ySKa2xiJ .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-v5ySKa2xiJ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #ffffff;
  transition: 0.3s;
}
.cid-v5ySKa2xiJ .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-v5ySKa2xiJ .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-v5ySKa2xiJ .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-v5ySKa2xiJ .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-v5ySKa2xiJ .mbr-item-subtitle {
  color: #24262b;
}
.cid-v5ySKa2xiJ .carousel-control,
.cid-v5ySKa2xiJ .close {
  background: #1b1b1b;
}
.cid-v5ySKa2xiJ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v5ySKa2xiJ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v5ySKa2xiJ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v5ySKa2xiJ .carousel-control-next span {
  margin-left: 5px;
}
.cid-v5ySKa2xiJ .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v5ySKa2xiJ .close::before {
  content: '\e91a';
}
.cid-v5ySKa2xiJ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v5ySKa2xiJ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v5ySKa2xiJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v5ySKa2xiJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v5ySKa2xiJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v5ySKa2xiJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v5ySKa2xiJ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v5ySKa2xiJ .carousel-indicators li.active,
.cid-v5ySKa2xiJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v5ySKa2xiJ .carousel-indicators li::after,
.cid-v5ySKa2xiJ .carousel-indicators li::before {
  content: none;
}
.cid-v5ySKa2xiJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v5ySKa2xiJ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v5ySKa2xiJ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v5ySKa2xiJ .carousel-indicators {
    display: none;
  }
}
.cid-v5ySKa2xiJ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v5ySKa2xiJ .carousel-inner > .active {
  display: block;
}
.cid-v5ySKa2xiJ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v5ySKa2xiJ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v5ySKa2xiJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v5ySKa2xiJ .carousel-control,
  .cid-v5ySKa2xiJ .carousel-indicators,
  .cid-v5ySKa2xiJ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v5ySKa2xiJ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v5ySKa2xiJ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v5ySKa2xiJ .carousel-indicators .active,
.cid-v5ySKa2xiJ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v5ySKa2xiJ .carousel-indicators .active {
  background: #fff;
}
.cid-v5ySKa2xiJ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v5ySKa2xiJ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v5ySKa2xiJ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v5ySKa2xiJ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v5ySKa2xiJ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v5ySKa2xiJ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v5ySKa2xiJ .carousel {
  width: 100%;
}
.cid-v5ySKa2xiJ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v5ySKa2xiJ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v5ySKa2xiJ .modal.fade .modal-dialog,
.cid-v5ySKa2xiJ .modal.in .modal-dialog {
  transform: none;
}
.cid-v5ySKa2xiJ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v5ySKa2xiJ H6 {
  text-align: center;
}
.cid-v5ySKb5Fb4 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #fafafa;
}
.cid-v5ySKb5Fb4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5ySKb5Fb4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5ySKb5Fb4 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-v5ySKb5Fb4 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-v5ySKb5Fb4 .embla__slide .slide-content {
  width: 100%;
}
.cid-v5ySKb5Fb4 .embla__slide .slide-content .item-wrapper .item-content .item-text {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v5ySKb5Fb4 .embla__slide .slide-content .item-wrapper .item-content .item-text {
    margin-bottom: 20px;
  }
}
.cid-v5ySKb5Fb4 .embla__slide .slide-content .item-wrapper .item-content .name-wrapper .item-name {
  display: inline-flex;
  margin-bottom: 10px;
  padding-bottom: 2px;
  border-bottom: 1px solid #232323;
}
.cid-v5ySKb5Fb4 .embla__slide .slide-content .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-v5ySKb5Fb4 .embla__button--next,
.cid-v5ySKb5Fb4 .embla__button--prev {
  display: flex;
}
.cid-v5ySKb5Fb4 .embla__button {
  top: 50px;
  width: 60px;
  height: 60px;
  font-size: 18px;
  background-color: #ffffff !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 992px) {
  .cid-v5ySKb5Fb4 .embla__button {
    top: 0;
  }
}
.cid-v5ySKb5Fb4 .embla__button:hover {
  background-color: #e4ed64 !important;
  color: #000000 !important;
}
.cid-v5ySKb5Fb4 .embla__button.embla__button--prev {
  left: 0;
}
.cid-v5ySKb5Fb4 .embla__button.embla__button--next {
  right: 0;
}
.cid-v5ySKb5Fb4 .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-v5ySKb5Fb4 .embla__viewport {
  overflow: hidden;
  width: 70%;
  margin-right: 1rem;
}
@media (max-width: 992px) {
  .cid-v5ySKb5Fb4 .embla__viewport {
    width: 100%;
  }
}
.cid-v5ySKb5Fb4 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v5ySKb5Fb4 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v5ySKb5Fb4 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-v5ySKb5Fb4 .item-text {
  color: #000000;
  text-align: center;
}
.cid-v5ySKb5Fb4 .item-name,
.cid-v5ySKb5Fb4 .name-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v5ySKb5Fb4 .item-role {
  color: #8a8a8a;
  text-align: center;
}
.cid-v5ySKbP37K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bfbeb7;
}
.cid-v5ySKbP37K .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5ySKbP37K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5ySKbP37K .row {
  justify-content: space-between;
}
.cid-v5ySKbP37K .content-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v5ySKbP37K .content-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v5ySKbP37K .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v5ySKbP37K .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-v5ySKbP37K .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-v5ySKbP37K .list-wrapper {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v5ySKbP37K .list-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v5ySKbP37K .list-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v5ySKbP37K .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v5ySKbP37K .list-wrapper .list .item-wrap {
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.cid-v5ySKbP37K .list-wrapper .list .item-wrap:hover,
.cid-v5ySKbP37K .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v5ySKbP37K .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v5ySKbP37K .content-wrap {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-v5ySKbP37K .content-wrap {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-v5ySKbP37K .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-v5ySKbP37K .content-wrap .mbr-desc {
  margin-bottom: 20px;
}
.cid-v5ySKbP37K .content-wrap .social-wrapper .social-wrap {
  display: inline-flex;
}
.cid-v5ySKbP37K .content-wrap .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v5ySKbP37K .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v5ySKbP37K .content-wrap .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-v5ySKbP37K .content-wrap .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #000000;
  font-size: 26px;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-v5ySKbP37K .copy-wrapper .mbr-section-btn-main {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v5ySKbP37K .copy-wrapper .mbr-section-btn-main {
    margin-bottom: 15px;
  }
}
.cid-v5ySKbP37K .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-v5ySKbP37K .mbr-section-title {
  color: #000000;
}
.cid-v5ySKbP37K .mbr-text {
  color: #000000;
}
.cid-v5ySKbP37K .list {
  color: #000000;
}
.cid-v5ySKbP37K .mbr-desc {
  color: #000000;
}
.cid-v5ySKbP37K .mbr-copy {
  color: #000000;
}
.cid-v5ySKbP37K .mbr-desc,
.cid-v5ySKbP37K .social-wrapper {
  text-align: center;
}
.cid-v5ySKbP37K .mbr-copy,
.cid-v5ySKbP37K .mbr-section-btn-main {
  text-align: center;
}
