body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #47abbf !important;
}
.bg-success {
  background-color: #365c9a !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #47abbf !important;
  border-color: #47abbf !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #307b8a !important;
  border-color: #307b8a !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #307b8a !important;
  border-color: #307b8a !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #e96188 !important;
  border-color: #e96188 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #365c9a !important;
  border-color: #365c9a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #223a61 !important;
  border-color: #223a61 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #296a77;
  color: #296a77 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #47abbf;
  border-color: #47abbf;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #47abbf !important;
  border-color: #47abbf !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #c81c4d;
  color: #c81c4d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #e96188;
  border-color: #e96188;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e96188 !important;
  border-color: #e96188 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #1c2f4e;
  color: #1c2f4e !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #365c9a;
  border-color: #365c9a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #365c9a !important;
  border-color: #365c9a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #f5a208;
  color: #f5a208 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #614003 !important;
  background-color: #fac769;
  border-color: #fac769;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #47abbf !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #365c9a !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #296a77 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1c2f4e !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c81c4d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5a208 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cccccc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #365c9a;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-gallery-filter li.active .btn {
  background-color: #47abbf;
  border-color: #47abbf;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #47abbf;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a6d6e0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #7e9ed2;
}
.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: 0.9rem;
}
blockquote {
  border-color: #47abbf;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #47abbf;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #47abbf;
  border-bottom-color: #47abbf;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #47abbf !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ffffff !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2347abbf' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-utZHyVreKy .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-utZHyVreKy .nav-item,
.cid-utZHyVreKy .nav-link,
.cid-utZHyVreKy .navbar-caption {
  font-weight: normal;
}
.cid-utZHyVreKy .nav-item:focus,
.cid-utZHyVreKy .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-utZHyVreKy .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-utZHyVreKy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-utZHyVreKy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-utZHyVreKy .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #323d4e;
  background: none;
}
.cid-utZHyVreKy .navbar.opened {
  transition: all .3s;
  background: #323d4e !important;
}
.cid-utZHyVreKy .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-utZHyVreKy .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-utZHyVreKy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-utZHyVreKy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-utZHyVreKy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4rem);
  }
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-utZHyVreKy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-utZHyVreKy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-utZHyVreKy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-utZHyVreKy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-utZHyVreKy .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-utZHyVreKy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-utZHyVreKy .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-utZHyVreKy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-utZHyVreKy .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-utZHyVreKy .navbar.navbar-short {
  background: #323d4e !important;
  min-height: 60px;
}
.cid-utZHyVreKy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-utZHyVreKy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-utZHyVreKy .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-utZHyVreKy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-utZHyVreKy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-utZHyVreKy .dropdown-item.active,
.cid-utZHyVreKy .dropdown-item:active {
  background-color: transparent;
}
.cid-utZHyVreKy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-utZHyVreKy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-utZHyVreKy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-utZHyVreKy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #323d4e;
}
.cid-utZHyVreKy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-utZHyVreKy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-utZHyVreKy ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-utZHyVreKy .navbar-buttons {
  text-align: center;
}
.cid-utZHyVreKy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-utZHyVreKy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-utZHyVreKy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-utZHyVreKy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-utZHyVreKy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-utZHyVreKy .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-utZHyVreKy a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-utZHyVreKy .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-utZHyVreKy .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-utZHyVreKy .soc-item {
  margin: .5rem .3rem;
}
.cid-utZHyVreKy .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-utZHyVreKy a.nav-link,
.cid-utZHyVreKy a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-utZHyVreKy a.nav-link .mbr-iconfont-btn,
.cid-utZHyVreKy a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-utZHyVreKy a.nav-link:hover .mbr-iconfont-btn,
.cid-utZHyVreKy a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-utZHyVreKy a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-utZHyVreKy .navbar {
    height: 77px;
  }
  .cid-utZHyVreKy .navbar.opened {
    height: auto;
  }
  .cid-utZHyVreKy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4Z691BzWm {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/people-bg-1502x778.png");
}
.cid-v4Z691BzWm .mbr-overlay {
  background: #323d4e;
}
.cid-v4Z691BzWm .mbr-section-title {
  letter-spacing: -1px;
  text-align: center;
}
.cid-v4Z691BzWm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4Z691BzWm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4Z691BzWm .mbr-text,
.cid-v4Z691BzWm .mbr-section-btn {
  text-align: center;
  color: #efefef;
}
.cid-v4ZF7D68h0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v4ZF7D68h0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4ZF7D68h0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4ZF7D68h0 .content-wrapper {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-v4ZF7D68h0 .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v4ZF7D68h0 .content-wrapper .label-wrapper {
  margin-bottom: 32px;
}
.cid-v4ZF7D68h0 .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-top: 2px solid #ffffff;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.cid-v4ZF7D68h0 .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  display: inline-block;
  margin-right: 8px;
}
.cid-v4ZF7D68h0 .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-v4ZF7D68h0 .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #323d4e, #323d4e 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-v4ZF7D68h0 .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-v4ZF7D68h0 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v4ZF7D68h0 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v4ZF7D68h0 .items-wrapper {
  margin: 0 -12px;
  justify-content: center;
}
.cid-v4ZF7D68h0 .items-wrapper .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-v4ZF7D68h0 .items-wrapper .item {
    margin-bottom: 18px;
  }
}
.cid-v4ZF7D68h0 .items-wrapper .item .item-wrapper {
  background-color: #f5f5f5;
  border-top: 3px solid #ffffff;
  box-shadow: 0 8px 15px -8px #47abbf;
  padding: 30px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-v4ZF7D68h0 .items-wrapper .item .item-wrapper {
    padding: 24px;
  }
}
.cid-v4ZF7D68h0 .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 24px;
}
.cid-v4ZF7D68h0 .items-wrapper .item .item-wrapper .item-content .middle-border {
  width: 100%;
  border-bottom: 2px dashed #323d4e;
  margin-bottom: 24px;
}
.cid-v4ZF7D68h0 .items-wrapper .item .item-wrapper .item-content .list {
  padding: 0;
  margin: 24px 0 0 0;
  list-style: none;
}
.cid-v4ZF7D68h0 .items-wrapper .item .item-wrapper .item-content .list .item-wrap {
  margin-bottom: 16px;
  padding-left: 24px;
  position: relative;
}
.cid-v4ZF7D68h0 .items-wrapper .item .item-wrapper .item-content .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v4ZF7D68h0 .items-wrapper .item .item-wrapper .item-content .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  color: #515151;
}
.cid-v4ZF7D68h0 .items-wrapper .item .item-wrapper .item-content .mbr-section-btn {
  width: 100%;
  margin-top: 14px;
}
.cid-v4ZF7D68h0 .items-wrapper .item .item-wrapper .item-content .mbr-section-btn .btn {
  width: 100%;
  margin-bottom: 0;
}
.cid-v4ZF7D68h0 .mbr-label,
.cid-v4ZF7D68h0 .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v4ZF7D68h0 .mbr-section-title,
.cid-v4ZF7D68h0 .title-wrapper {
  color: #323d4e;
  text-align: center;
}
.cid-v4ZF7D68h0 .mbr-text,
.cid-v4ZF7D68h0 .text-wrapper {
  color: #47abbf;
  text-align: center;
}
.cid-v4ZF7D68h0 .item-title {
  color: #000000;
  text-align: center;
}
.cid-v4ZF7D68h0 .list {
  color: #515151;
}
.cid-v4ZF7D68h0 .list,
.cid-v4ZF7D68h0 .item-wrap {
  color: #323d4e;
}
.cid-v4ZF7D68h0 .item-title,
.cid-v4ZF7D68h0 .mbr-section-btn {
  color: #323d4e;
}
.cid-uwyYJ3CjlY {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-uwyYJ3CjlY .mbr-section-subtitle {
  color: #767676;
}
.cid-uwyYJ3CjlY .mbr-section-title {
  color: #323d4e;
  text-align: center;
}
.cid-uwyYJ3CjlY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwyYJ3CjlY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utZHa2nR37 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #323d4e;
}
.cid-utZHa2nR37 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utZHa2nR37 .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-utZHa2nR37 .container {
    padding: 0 16px;
  }
}
.cid-utZHa2nR37 .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-utZHa2nR37 .card {
    margin-bottom: 40px;
  }
}
.cid-utZHa2nR37 .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utZHa2nR37 .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-utZHa2nR37 .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-utZHa2nR37 .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-utZHa2nR37 .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-utZHa2nR37 .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-utZHa2nR37 .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-utZHa2nR37 .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-utZHa2nR37 .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-utZHa2nR37 .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-utZHa2nR37 .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utZHa2nR37 .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-utZHa2nR37 .mbr-section-title {
  color: #ffffff;
}
.cid-utZHa2nR37 .copyright {
  color: #ffffff;
}
.cid-utZHa2nR37 .mbr-card-title {
  color: #47abbf;
}
.cid-utZHa2nR37 .list {
  color: #ffffff;
}
.cid-utZYmR34o2 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-utZYmR34o2 .mbr-section-subtitle {
  color: #767676;
}
.cid-utZYmR34o2 .mbr-section-title {
  color: #323d4e;
}
.cid-utZYmR34o2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utZYmR34o2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utZHyVreKy .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-utZHyVreKy .nav-item,
.cid-utZHyVreKy .nav-link,
.cid-utZHyVreKy .navbar-caption {
  font-weight: normal;
}
.cid-utZHyVreKy .nav-item:focus,
.cid-utZHyVreKy .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-utZHyVreKy .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-utZHyVreKy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-utZHyVreKy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-utZHyVreKy .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #323d4e;
  background: none;
}
.cid-utZHyVreKy .navbar.opened {
  transition: all .3s;
  background: #323d4e !important;
}
.cid-utZHyVreKy .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-utZHyVreKy .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-utZHyVreKy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-utZHyVreKy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-utZHyVreKy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4rem);
  }
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-utZHyVreKy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-utZHyVreKy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-utZHyVreKy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-utZHyVreKy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-utZHyVreKy .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-utZHyVreKy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-utZHyVreKy .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-utZHyVreKy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-utZHyVreKy .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-utZHyVreKy .navbar.navbar-short {
  background: #323d4e !important;
  min-height: 60px;
}
.cid-utZHyVreKy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-utZHyVreKy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-utZHyVreKy .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-utZHyVreKy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-utZHyVreKy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-utZHyVreKy .dropdown-item.active,
.cid-utZHyVreKy .dropdown-item:active {
  background-color: transparent;
}
.cid-utZHyVreKy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-utZHyVreKy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-utZHyVreKy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-utZHyVreKy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #323d4e;
}
.cid-utZHyVreKy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-utZHyVreKy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-utZHyVreKy ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-utZHyVreKy .navbar-buttons {
  text-align: center;
}
.cid-utZHyVreKy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-utZHyVreKy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-utZHyVreKy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-utZHyVreKy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-utZHyVreKy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-utZHyVreKy .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-utZHyVreKy a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-utZHyVreKy .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-utZHyVreKy .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-utZHyVreKy .soc-item {
  margin: .5rem .3rem;
}
.cid-utZHyVreKy .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-utZHyVreKy a.nav-link,
.cid-utZHyVreKy a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-utZHyVreKy a.nav-link .mbr-iconfont-btn,
.cid-utZHyVreKy a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-utZHyVreKy a.nav-link:hover .mbr-iconfont-btn,
.cid-utZHyVreKy a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-utZHyVreKy a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-utZHyVreKy .navbar {
    height: 77px;
  }
  .cid-utZHyVreKy .navbar.opened {
    height: auto;
  }
  .cid-utZHyVreKy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v53KyjPB3f {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/glicata-1536x1024.png");
}
.cid-v53KyjPB3f .mbr-overlay {
  background: #323d4e;
}
.cid-v53KyjPB3f .mbr-section-title {
  letter-spacing: -1px;
  text-align: center;
}
.cid-v53KyjPB3f .mbr-fallback-image.disabled {
  display: none;
}
.cid-v53KyjPB3f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v53KyjPB3f .mbr-text,
.cid-v53KyjPB3f .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-v5CNzWDGit {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-v5CNzWDGit .container-fluid {
  padding: 0 3rem;
}
.cid-v5CNzWDGit .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v5CNzWDGit .container-fluid {
    padding: 0 1rem;
  }
  .cid-v5CNzWDGit .video-block {
    width: 100% !important;
  }
}
.cid-v53RnyPopa {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #fafafa;
}
.cid-v53RnyPopa .card-img span {
  color: #47abbf;
  font-size: 5rem;
}
.cid-v53RnyPopa .mbr-text {
  color: #323d4e;
  text-align: center;
}
.cid-v53RnyPopa p {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-v53RnyPopa .card {
    margin-bottom: 2rem;
  }
}
.cid-v53RnyPopa .card-title,
.cid-v53RnyPopa .card-img {
  color: #323d4e;
  text-align: center;
}
.cid-v53RnyPopa .mbr-section-title {
  text-align: center;
  color: #323d4e;
}
.cid-v53RnyPopa .mbr-section-sub-title {
  text-align: center;
  color: #47abbf;
}
.cid-v53RnyPopa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v53RnyPopa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5b9X5HXXU {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-v5b9X5HXXU .row-element,
.cid-v5b9X5HXXU .image-element {
  padding: 0;
}
.cid-v5b9X5HXXU .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v5b9X5HXXU .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-v5b9X5HXXU .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-v5b9X5HXXU .text-content {
    padding: 2rem 1rem;
  }
  .cid-v5b9X5HXXU .mbr-title,
  .cid-v5b9X5HXXU .mbr-text,
  .cid-v5b9X5HXXU .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-v5b9X5HXXU .mbr-text,
.cid-v5b9X5HXXU .mbr-section-btn {
  color: #323d4e;
}
.cid-v5b9X5HXXU .mbr-title {
  color: #323d4e;
}
.cid-v5b9X5HXXU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5b9X5HXXU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5b9X5HXXU .mbr-section-subtitle {
  color: #47abbf;
}
.cid-v53ZPC5QWk {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #fafafa;
}
.cid-v53ZPC5QWk .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-v53ZPC5QWk .row-element,
.cid-v53ZPC5QWk .image-element {
  padding: 0;
}
.cid-v53ZPC5QWk .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v53ZPC5QWk .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-v53ZPC5QWk .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-v53ZPC5QWk .text-content {
    padding: 2rem 1rem;
  }
  .cid-v53ZPC5QWk .mbr-title,
  .cid-v53ZPC5QWk .mbr-text,
  .cid-v53ZPC5QWk .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-v53ZPC5QWk .mbr-text,
.cid-v53ZPC5QWk .mbr-section-btn {
  color: #323d4e;
  text-align: left;
}
.cid-v53ZPC5QWk .mbr-title {
  color: #323d4e;
  text-align: left;
}
.cid-v53ZPC5QWk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v53ZPC5QWk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v53ZPC5QWk .mbr-section-subtitle {
  color: #47abbf;
  text-align: left;
}
.cid-v5b0WKuUDf {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-v5b0WKuUDf .row-element,
.cid-v5b0WKuUDf .image-element {
  padding: 0;
}
.cid-v5b0WKuUDf .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v5b0WKuUDf .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-v5b0WKuUDf .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-v5b0WKuUDf .text-content {
    padding: 2rem 1rem;
  }
  .cid-v5b0WKuUDf .mbr-title,
  .cid-v5b0WKuUDf .mbr-text,
  .cid-v5b0WKuUDf .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-v5b0WKuUDf .mbr-text,
.cid-v5b0WKuUDf .mbr-section-btn {
  color: #323d4e;
  text-align: left;
}
.cid-v5b0WKuUDf .mbr-title {
  color: #323d4e;
  text-align: left;
}
.cid-v5b0WKuUDf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5b0WKuUDf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5b0WKuUDf .mbr-section-subtitle {
  color: #47abbf;
  text-align: left;
}
.cid-utZOX48ag8 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #fafafa;
}
.cid-utZOX48ag8 .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-utZOX48ag8 .row-element,
.cid-utZOX48ag8 .image-element {
  padding: 0;
}
.cid-utZOX48ag8 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-utZOX48ag8 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-utZOX48ag8 .text-content {
  padding: 3rem;
}
.cid-utZOX48ag8 .mbr-section-subtitle {
  color: #47abbf;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-utZOX48ag8 .text-content {
    padding: 2rem 1rem;
  }
  .cid-utZOX48ag8 .mbr-title,
  .cid-utZOX48ag8 .underline,
  .cid-utZOX48ag8 .mbr-text,
  .cid-utZOX48ag8 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-utZOX48ag8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utZOX48ag8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utZOX48ag8 .mbr-title {
  color: #323d4e;
  text-align: left;
}
.cid-utZOX48ag8 .mbr-text,
.cid-utZOX48ag8 .mbr-section-btn {
  text-align: left;
  color: #323d4e;
}
.cid-v5bhHFHXEc {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-v5bhHFHXEc .row-element,
.cid-v5bhHFHXEc .image-element {
  padding: 0;
}
.cid-v5bhHFHXEc .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v5bhHFHXEc .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-v5bhHFHXEc .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-v5bhHFHXEc .text-content {
    padding: 2rem 1rem;
  }
  .cid-v5bhHFHXEc .mbr-title,
  .cid-v5bhHFHXEc .mbr-text,
  .cid-v5bhHFHXEc .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-v5bhHFHXEc .mbr-text,
.cid-v5bhHFHXEc .mbr-section-btn {
  color: #323d4e;
}
.cid-v5bhHFHXEc .mbr-title {
  color: #323d4e;
}
.cid-v5bhHFHXEc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5bhHFHXEc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5bhHFHXEc .mbr-section-subtitle {
  color: #47abbf;
}
.cid-uPH4WmwWU2 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/img-glicata-2000x1333.jpeg");
}
.cid-uPH4WmwWU2 .title {
  background: #ffffff;
  width: fit-content;
  display: inline-block;
  padding: 1rem 2rem;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.08);
}
.cid-uPH4WmwWU2 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uPH4WmwWU2 p {
  margin: 0;
  padding: 0;
}
.cid-uPH4WmwWU2 .card {
  margin-bottom: 2rem;
}
.cid-uPH4WmwWU2 .card-block {
  letter-spacing: 0.03em;
  border-radius: 0.5rem;
  position: relative;
  background: #ffffff;
  color: #444444;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.08);
  padding: 2rem;
}
.cid-uPH4WmwWU2 .card-block:before {
  content: '';
  position: absolute;
  bottom: -15px;
  right: 0;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-top: 15px solid #ffffff;
  border-right: 15px solid transparent;
}
.cid-uPH4WmwWU2 .mbr-author-img {
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 100%;
  margin-left: 0rem;
  margin-right: 1.5rem;
}
.cid-uPH4WmwWU2 .mbr-author-img img {
  width: 100%;
  border-radius: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-uPH4WmwWU2 .name-wrap {
  display: inline-block;
}
.cid-uPH4WmwWU2 .card-footer {
  margin-top: 1rem;
  display: flex;
  border-top: none;
  background: none;
  padding: 0.75rem 1.25rem 1.25rem 1.25rem;
}
.cid-uPH4WmwWU2 .mbr-author-desc {
  color: #9e9e9e;
}
.cid-uPH4WmwWU2 .card-block P {
  color: #083753;
}
.cid-uPH4WmwWU2 .mbr-author-name {
  color: #ffffff;
  text-align: left;
}
.cid-uPH4WmwWU2 .mbr-section-title,
.cid-uPH4WmwWU2 .title DIV {
  color: #232323;
  text-align: center;
}
.cid-uPH4WmwWU2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPH4WmwWU2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPH4WmwWU2 .mbr-section-title,
.cid-uPH4WmwWU2 .title {
  color: #323d4d;
}
.cid-uPCelL2WSP {
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uPCelL2WSP .title-wrapper .mbr-section-title {
  margin: 55px;
}
@media (max-width: 992px) {
  .cid-uPCelL2WSP .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uPCelL2WSP .container {
    padding: 0 22px;
  }
}
.cid-uPCelL2WSP .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 212px;
  max-width: 212px;
}
@media (max-width: 767px) {
  .cid-uPCelL2WSP .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uPCelL2WSP .embla__slide .slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uPCelL2WSP .embla__slide .slide-content {
    display: block;
  }
}
.cid-uPCelL2WSP .embla__slide .slide-content .item-wrapper .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPCelL2WSP .embla__slide .slide-content .item-wrapper .item-img img {
  height: 180px;
  object-fit: contain;
  border-radius: 0 !important;
}
.cid-uPCelL2WSP .embla__button--next,
.cid-uPCelL2WSP .embla__button--prev {
  display: flex;
}
.cid-uPCelL2WSP .embla__button {
  bottom: 0;
  width: 48px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 32px;
  background-color: transparent !important;
  color: #635d60 !important;
  border: none !important;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-uPCelL2WSP .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uPCelL2WSP .embla__button:hover {
  color: #ff5753 !important;
}
.cid-uPCelL2WSP .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 992px) {
  .cid-uPCelL2WSP .embla__button.embla__button--prev {
    left: auto;
    right: 4rem;
  }
}
.cid-uPCelL2WSP .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 992px) {
  .cid-uPCelL2WSP .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-uPCelL2WSP .embla {
  position: relative;
  width: 100%;
}
.cid-uPCelL2WSP .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uPCelL2WSP .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uPCelL2WSP .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uPCelL2WSP .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uPCelL2WSP .mbr-section-title {
  color: #083753;
  text-align: center;
}
.cid-utO2PyZwuX {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-utO2PyZwuX .mbr-fallback-image.disabled {
  display: none;
}
.cid-utO2PyZwuX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utO2PyZwuX .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-utO2PyZwuX .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-utO2PyZwuX .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #47abbf;
}
.cid-utO2PyZwuX .panel-body,
.cid-utO2PyZwuX .card-header {
  padding: 1rem 0;
}
.cid-utO2PyZwuX .panel-title-edit {
  color: #323d4e;
}
.cid-utO2PyZwuX H3 {
  color: #47abbf;
  text-align: right;
}
.cid-utO2PyZwuX .panel-text {
  color: #323d4e;
}
.cid-utZHa2nR37 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #323d4e;
}
.cid-utZHa2nR37 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utZHa2nR37 .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-utZHa2nR37 .container {
    padding: 0 16px;
  }
}
.cid-utZHa2nR37 .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-utZHa2nR37 .card {
    margin-bottom: 40px;
  }
}
.cid-utZHa2nR37 .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utZHa2nR37 .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-utZHa2nR37 .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-utZHa2nR37 .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-utZHa2nR37 .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-utZHa2nR37 .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-utZHa2nR37 .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-utZHa2nR37 .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-utZHa2nR37 .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-utZHa2nR37 .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-utZHa2nR37 .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utZHa2nR37 .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-utZHa2nR37 .mbr-section-title {
  color: #ffffff;
}
.cid-utZHa2nR37 .copyright {
  color: #ffffff;
}
.cid-utZHa2nR37 .mbr-card-title {
  color: #47abbf;
}
.cid-utZHa2nR37 .list {
  color: #ffffff;
}
.cid-uv8rrRd6uG {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uv8rrRd6uG .mbr-section-subtitle {
  color: #767676;
}
.cid-uv8rrRd6uG .mbr-section-title {
  color: #323d4e;
}
.cid-uv8rrRd6uG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv8rrRd6uG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utZHyVreKy .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-utZHyVreKy .nav-item,
.cid-utZHyVreKy .nav-link,
.cid-utZHyVreKy .navbar-caption {
  font-weight: normal;
}
.cid-utZHyVreKy .nav-item:focus,
.cid-utZHyVreKy .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-utZHyVreKy .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-utZHyVreKy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-utZHyVreKy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-utZHyVreKy .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #323d4e;
  background: none;
}
.cid-utZHyVreKy .navbar.opened {
  transition: all .3s;
  background: #323d4e !important;
}
.cid-utZHyVreKy .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-utZHyVreKy .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-utZHyVreKy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-utZHyVreKy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-utZHyVreKy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4rem);
  }
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-utZHyVreKy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-utZHyVreKy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-utZHyVreKy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-utZHyVreKy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-utZHyVreKy .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-utZHyVreKy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-utZHyVreKy .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-utZHyVreKy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-utZHyVreKy .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-utZHyVreKy .navbar.navbar-short {
  background: #323d4e !important;
  min-height: 60px;
}
.cid-utZHyVreKy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-utZHyVreKy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-utZHyVreKy .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-utZHyVreKy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-utZHyVreKy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-utZHyVreKy .dropdown-item.active,
.cid-utZHyVreKy .dropdown-item:active {
  background-color: transparent;
}
.cid-utZHyVreKy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-utZHyVreKy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-utZHyVreKy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-utZHyVreKy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #323d4e;
}
.cid-utZHyVreKy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-utZHyVreKy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-utZHyVreKy ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-utZHyVreKy .navbar-buttons {
  text-align: center;
}
.cid-utZHyVreKy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-utZHyVreKy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-utZHyVreKy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-utZHyVreKy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-utZHyVreKy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-utZHyVreKy .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-utZHyVreKy a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-utZHyVreKy .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-utZHyVreKy .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-utZHyVreKy .soc-item {
  margin: .5rem .3rem;
}
.cid-utZHyVreKy .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-utZHyVreKy a.nav-link,
.cid-utZHyVreKy a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-utZHyVreKy a.nav-link .mbr-iconfont-btn,
.cid-utZHyVreKy a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-utZHyVreKy a.nav-link:hover .mbr-iconfont-btn,
.cid-utZHyVreKy a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-utZHyVreKy a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-utZHyVreKy .navbar {
    height: 77px;
  }
  .cid-utZHyVreKy .navbar.opened {
    height: auto;
  }
  .cid-utZHyVreKy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v553m1591a {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/ai-800x533.png");
}
.cid-v553m1591a .mbr-overlay {
  background: #323d4e;
}
.cid-v553m1591a .mbr-section-title {
  letter-spacing: -1px;
  text-align: center;
}
.cid-v553m1591a .mbr-fallback-image.disabled {
  display: none;
}
.cid-v553m1591a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v553m1591a .mbr-text,
.cid-v553m1591a .mbr-section-btn {
  text-align: center;
  color: #efefef;
}
.cid-v553XfTTNn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v553XfTTNn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v553XfTTNn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v553XfTTNn .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 24px;
  position: relative;
  background-image: linear-gradient(-180deg, #323d4e, #323d4e 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-v553XfTTNn .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-v553XfTTNn .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 75%;
  margin-bottom: 0;
  background-image: linear-gradient(-165deg, #323d4e, #323d4e 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-v553XfTTNn .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v553XfTTNn .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-v553XfTTNn .mbr-section-title {
  color: #000000;
}
.cid-v553XfTTNn .mbr-text,
.cid-v553XfTTNn .text-wrapper {
  color: #323d4e;
  text-align: center;
}
.cid-v553XfTTNn .mbr-section-title,
.cid-v553XfTTNn .title-wrapper,
.cid-v553XfTTNn .mbr-section-btn {
  text-align: center;
}
.cid-utb6zoSepb {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-utb6zoSepb .item:focus,
.cid-utb6zoSepb span:focus {
  outline: none;
}
.cid-utb6zoSepb .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-utb6zoSepb .item {
    margin-bottom: 1rem;
  }
}
.cid-utb6zoSepb .mbr-card-title {
  background: #47abbf;
  width: fit-content;
  border-radius: 0.5rem;
  padding: 6px 10px;
}
.cid-utb6zoSepb .item-content {
  margin-top: 2rem;
  padding: 0 2rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-utb6zoSepb .item-content {
    padding: 2rem 1.5rem;
    padding-top: 1rem;
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-utb6zoSepb .item-content {
    padding: 1rem 1rem;
    padding-top: 1rem;
    margin-top: 1rem;
  }
}
.cid-utb6zoSepb .item-wrapper {
  position: relative;
  background: #323d4e;
  height: 100%;
  display: flex;
  border-radius: 0.5rem;
  flex-flow: column nowrap;
}
.cid-utb6zoSepb .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-utb6zoSepb .mbr-section-title {
  color: #323d4e;
  text-align: center;
}
.cid-utb6zoSepb .mbr-text,
.cid-utb6zoSepb .item .mbr-section-btn {
  text-align: center;
}
.cid-utb6zoSepb .content-head {
  max-width: 800px;
}
.cid-utb6zoSepb .mbr-number {
  color: #ffffff;
  text-align: center;
}
.cid-utb6zoSepb .mbr-section-subtitle,
.cid-utb6zoSepb .mbr-section-head .mbr-section-btn {
  text-align: center;
}
.cid-utb6zoSepb .mbr-text {
  text-align: left;
}
.cid-utb6zoSepb .mbr-text,
.cid-utb6zoSepb .mbr-card-btn {
  text-align: left;
}
.cid-utb6zoSepb .mbr-text,
.cid-utb6zoSepb .mbr-section-btn {
  text-align: left;
}
.cid-utb6zoSepb .mbr-text,
.cid-utb6zoSepb .item-footer .mbr-section-btn {
  text-align: left;
}
.cid-utb6zoSepb .card-text,
.cid-utb6zoSepb .item .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-utb6zoSepb .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-utgmEi4N6R {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-utgmEi4N6R .title {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-utgmEi4N6R .title .num {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 0;
  width: 100%;
  font-size: 1rem;
}
.cid-utgmEi4N6R .title .card-title {
  z-index: 1;
  width: 100%;
}
.cid-utgmEi4N6R .card-text {
  margin-top: 2rem;
}
.cid-utgmEi4N6R .card-box {
  margin-bottom: 1rem;
}
.cid-utgmEi4N6R .num {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-utgmEi4N6R .num,
  .cid-utgmEi4N6R .card-title,
  .cid-utgmEi4N6R .mbr-text,
  .cid-utgmEi4N6R .mbr-title,
  .cid-utgmEi4N6R .mbr-section-subtitle,
  .cid-utgmEi4N6R .mbr-section-btn {
    text-align: center !important;
  }
  .cid-utgmEi4N6R .content-column {
    margin-bottom: 2rem;
  }
}
.cid-utgmEi4N6R .mbr-fallback-image.disabled {
  display: none;
}
.cid-utgmEi4N6R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utgmEi4N6R .card-title,
.cid-utgmEi4N6R .card-img {
  color: #47abbf;
}
.cid-utgmEi4N6R .mbr-section-subtitle {
  color: #47abbf;
}
.cid-v55auFlGOM {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-v55auFlGOM .card-img span {
  color: #47abbf;
  font-size: 5rem;
}
.cid-v55auFlGOM .mbr-text {
  color: #323d4e;
  text-align: center;
}
.cid-v55auFlGOM p {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-v55auFlGOM .card {
    margin-bottom: 2rem;
  }
}
.cid-v55auFlGOM .card-title,
.cid-v55auFlGOM .card-img {
  color: #323d4e;
  text-align: center;
}
.cid-v55auFlGOM .mbr-section-title {
  text-align: center;
  color: #323d4e;
}
.cid-v55auFlGOM .mbr-section-sub-title {
  text-align: center;
  color: #47abbf;
}
.cid-v55auFlGOM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v55auFlGOM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uu0PC71nzU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uu0PC71nzU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uu0PC71nzU .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-uu0PC71nzU .container {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uu0PC71nzU .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uu0PC71nzU .row {
  justify-content: space-between;
}
.cid-uu0PC71nzU .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media (max-width: 992px) {
  .cid-uu0PC71nzU .items-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.cid-uu0PC71nzU .item .item-wrapper .card-box {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uu0PC71nzU .item .item-wrapper .card-box {
    display: block;
  }
}
.cid-uu0PC71nzU .item .item-wrapper .card-box .icon-wrapper {
  margin-right: 22px;
}
@media (max-width: 992px) {
  .cid-uu0PC71nzU .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 16px;
    margin-right: 0;
  }
}
.cid-uu0PC71nzU .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  width: 35px;
  height: 35px;
  color: #47abbf;
  border: 1px solid #47abbf;
  border-radius: 100%;
}
.cid-uu0PC71nzU .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uu0PC71nzU .mbr-section-title {
  color: #000000;
}
.cid-uu0PC71nzU .card-title {
  color: #323d4e;
  text-align: left;
}
.cid-uu0PC71nzU .mbr-section-title,
.cid-uu0PC71nzU .mbr-section-btn {
  color: #47abbf;
  text-align: right;
}
.cid-uwyZwj8yS5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #323d4e;
}
.cid-uwyZwj8yS5 .mbr-section-subtitle {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-uwyZwj8yS5 .mbr-section-btn,
  .cid-uwyZwj8yS5 .mbr-section-subtitle,
  .cid-uwyZwj8yS5 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uwyZwj8yS5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwyZwj8yS5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utg8viFTLK {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-utg8viFTLK .mbr-fallback-image.disabled {
  display: none;
}
.cid-utg8viFTLK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utg8viFTLK .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-utg8viFTLK .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-utg8viFTLK .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #47abbf;
}
.cid-utg8viFTLK .panel-body,
.cid-utg8viFTLK .card-header {
  padding: 1rem 0;
}
.cid-utg8viFTLK .panel-title-edit {
  color: #323d4e;
}
.cid-utg8viFTLK H3 {
  color: #47abbf;
  text-align: right;
}
.cid-utg8viFTLK .panel-text {
  color: #323d4e;
}
.cid-utZHa2nR37 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #323d4e;
}
.cid-utZHa2nR37 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utZHa2nR37 .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-utZHa2nR37 .container {
    padding: 0 16px;
  }
}
.cid-utZHa2nR37 .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-utZHa2nR37 .card {
    margin-bottom: 40px;
  }
}
.cid-utZHa2nR37 .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utZHa2nR37 .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-utZHa2nR37 .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-utZHa2nR37 .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-utZHa2nR37 .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-utZHa2nR37 .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-utZHa2nR37 .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-utZHa2nR37 .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-utZHa2nR37 .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-utZHa2nR37 .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-utZHa2nR37 .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utZHa2nR37 .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-utZHa2nR37 .mbr-section-title {
  color: #ffffff;
}
.cid-utZHa2nR37 .copyright {
  color: #ffffff;
}
.cid-utZHa2nR37 .mbr-card-title {
  color: #47abbf;
}
.cid-utZHa2nR37 .list {
  color: #ffffff;
}
.cid-uv8qmDGfGR {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uv8qmDGfGR .mbr-section-subtitle {
  color: #767676;
}
.cid-uv8qmDGfGR .mbr-section-title {
  color: #323d4e;
}
.cid-uv8qmDGfGR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv8qmDGfGR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utZHyVreKy .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-utZHyVreKy .nav-item,
.cid-utZHyVreKy .nav-link,
.cid-utZHyVreKy .navbar-caption {
  font-weight: normal;
}
.cid-utZHyVreKy .nav-item:focus,
.cid-utZHyVreKy .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-utZHyVreKy .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-utZHyVreKy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-utZHyVreKy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-utZHyVreKy .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #323d4e;
  background: none;
}
.cid-utZHyVreKy .navbar.opened {
  transition: all .3s;
  background: #323d4e !important;
}
.cid-utZHyVreKy .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-utZHyVreKy .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-utZHyVreKy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-utZHyVreKy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-utZHyVreKy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4rem);
  }
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-utZHyVreKy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-utZHyVreKy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-utZHyVreKy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-utZHyVreKy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-utZHyVreKy .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-utZHyVreKy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-utZHyVreKy .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-utZHyVreKy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-utZHyVreKy .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-utZHyVreKy .navbar.navbar-short {
  background: #323d4e !important;
  min-height: 60px;
}
.cid-utZHyVreKy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-utZHyVreKy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-utZHyVreKy .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-utZHyVreKy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-utZHyVreKy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-utZHyVreKy .dropdown-item.active,
.cid-utZHyVreKy .dropdown-item:active {
  background-color: transparent;
}
.cid-utZHyVreKy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-utZHyVreKy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-utZHyVreKy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-utZHyVreKy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #323d4e;
}
.cid-utZHyVreKy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-utZHyVreKy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-utZHyVreKy ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-utZHyVreKy .navbar-buttons {
  text-align: center;
}
.cid-utZHyVreKy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-utZHyVreKy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-utZHyVreKy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-utZHyVreKy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-utZHyVreKy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-utZHyVreKy .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-utZHyVreKy a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-utZHyVreKy .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-utZHyVreKy .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-utZHyVreKy .soc-item {
  margin: .5rem .3rem;
}
.cid-utZHyVreKy .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-utZHyVreKy a.nav-link,
.cid-utZHyVreKy a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-utZHyVreKy a.nav-link .mbr-iconfont-btn,
.cid-utZHyVreKy a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-utZHyVreKy a.nav-link:hover .mbr-iconfont-btn,
.cid-utZHyVreKy a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-utZHyVreKy a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-utZHyVreKy .navbar {
    height: 77px;
  }
  .cid-utZHyVreKy .navbar.opened {
    height: auto;
  }
  .cid-utZHyVreKy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v54TnK1xqd {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/chatgpt-image-18-dic-2025-15-23-13-1536x1024.png");
}
.cid-v54TnK1xqd .mbr-overlay {
  background: #323d4e;
}
.cid-v54TnK1xqd .mbr-section-title {
  letter-spacing: -1px;
  text-align: center;
}
.cid-v54TnK1xqd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v54TnK1xqd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v54TnK1xqd .mbr-text,
.cid-v54TnK1xqd .mbr-section-btn {
  text-align: center;
  color: #efefef;
}
.cid-v54TR7SGk4 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-v54TR7SGk4 .card-img span {
  color: #47abbf;
  font-size: 5rem;
}
.cid-v54TR7SGk4 .mbr-text {
  color: #323d4e;
  text-align: center;
}
.cid-v54TR7SGk4 p {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-v54TR7SGk4 .card {
    margin-bottom: 2rem;
  }
}
.cid-v54TR7SGk4 .card-title,
.cid-v54TR7SGk4 .card-img {
  color: #323d4e;
  text-align: center;
}
.cid-v54TR7SGk4 .mbr-section-title {
  text-align: center;
  color: #323d4e;
}
.cid-v54TR7SGk4 .mbr-section-sub-title {
  text-align: center;
  color: #47abbf;
}
.cid-v54TR7SGk4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v54TR7SGk4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v54Xh3Vmrw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-v54Xh3Vmrw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v54Xh3Vmrw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v54Xh3Vmrw .content-wrapper {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-v54Xh3Vmrw .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v54Xh3Vmrw .content-wrapper .label-wrapper {
  margin-bottom: 32px;
}
.cid-v54Xh3Vmrw .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-top: 2px solid #ffffff;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.cid-v54Xh3Vmrw .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  display: inline-block;
  margin-right: 8px;
}
.cid-v54Xh3Vmrw .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-v54Xh3Vmrw .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #323d4e, #323d4e 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-v54Xh3Vmrw .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-v54Xh3Vmrw .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v54Xh3Vmrw .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v54Xh3Vmrw .items-wrapper {
  margin: 0 -12px;
  justify-content: center;
}
.cid-v54Xh3Vmrw .items-wrapper .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-v54Xh3Vmrw .items-wrapper .item {
    margin-bottom: 18px;
  }
}
.cid-v54Xh3Vmrw .items-wrapper .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-top: 3px solid #ffffff;
  box-shadow: 0 8px 15px -8px #47abbf;
  padding: 30px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-v54Xh3Vmrw .items-wrapper .item .item-wrapper {
    padding: 24px;
  }
}
.cid-v54Xh3Vmrw .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-v54Xh3Vmrw .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v54Xh3Vmrw .items-wrapper .item .item-wrapper .item-content .icon-wrapper .icon-wrap {
  width: 180px;
  height: 180px;
  display: inline-flex;
  padding: 10px;
  border-top: 3px solid #ffffff;
  box-shadow: 0 10px 12px -8px #47abbf;
  background-color: #ffffff;
}
.cid-v54Xh3Vmrw .items-wrapper .item .item-wrapper .item-content .icon-wrapper .icon-wrap .mbr-iconfont {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 84px;
  border-top: 3px solid #ffffff;
  box-shadow: 0 8px 12px -8px #47abbf;
  background-color: #ffffff;
}
.cid-v54Xh3Vmrw .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.cid-v54Xh3Vmrw .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-v54Xh3Vmrw .items-wrapper .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 10px;
}
.cid-v54Xh3Vmrw .items-wrapper .item .item-wrapper .item-content .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v54Xh3Vmrw .mbr-label,
.cid-v54Xh3Vmrw .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v54Xh3Vmrw .mbr-section-title,
.cid-v54Xh3Vmrw .title-wrapper {
  color: #323d4e;
  text-align: center;
}
.cid-v54Xh3Vmrw .mbr-text,
.cid-v54Xh3Vmrw .text-wrapper {
  color: #515151;
  text-align: center;
}
.cid-v54Xh3Vmrw .item-title {
  color: #000000;
}
.cid-v54Xh3Vmrw .item-text {
  color: #323d4e;
}
.cid-v54Xh3Vmrw .item-title,
.cid-v54Xh3Vmrw .mbr-section-btn {
  color: #47abbf;
}
.cid-v54YFHGe1T {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-v54YFHGe1T .row-element,
.cid-v54YFHGe1T .image-element {
  padding: 0;
}
.cid-v54YFHGe1T .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v54YFHGe1T .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-v54YFHGe1T .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-v54YFHGe1T .text-content {
    padding: 2rem 1rem;
  }
  .cid-v54YFHGe1T .mbr-title,
  .cid-v54YFHGe1T .mbr-text,
  .cid-v54YFHGe1T .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-v54YFHGe1T .mbr-text,
.cid-v54YFHGe1T .mbr-section-btn {
  color: #323d4e;
  text-align: left;
}
.cid-v54YFHGe1T .mbr-title {
  color: #323d4e;
  text-align: left;
}
.cid-v54YFHGe1T .mbr-fallback-image.disabled {
  display: none;
}
.cid-v54YFHGe1T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v54YFHGe1T .mbr-section-subtitle {
  color: #47abbf;
  text-align: left;
}
.cid-utPJYFFVOs {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fafafa;
}
.cid-utPJYFFVOs .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-utPJYFFVOs .row-element,
.cid-utPJYFFVOs .image-element {
  padding: 0;
}
.cid-utPJYFFVOs .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-utPJYFFVOs .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-utPJYFFVOs .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-utPJYFFVOs .text-content {
    padding: 2rem 1rem;
  }
  .cid-utPJYFFVOs .mbr-title,
  .cid-utPJYFFVOs .mbr-text,
  .cid-utPJYFFVOs .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-utPJYFFVOs .mbr-text,
.cid-utPJYFFVOs .mbr-section-btn {
  color: #323d4e;
}
.cid-utPJYFFVOs .mbr-title {
  color: #323d4e;
}
.cid-utPJYFFVOs .mbr-fallback-image.disabled {
  display: none;
}
.cid-utPJYFFVOs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utPJYFFVOs .mbr-section-subtitle {
  color: #47abbf;
}
.cid-utOOaULr27 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-utOOaULr27 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utOOaULr27 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utOOaULr27 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-utOOaULr27 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-utOOaULr27 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #47abbf;
}
.cid-utOOaULr27 .panel-body,
.cid-utOOaULr27 .card-header {
  padding: 1rem 0;
}
.cid-utOOaULr27 .panel-title-edit {
  color: #323d4e;
}
.cid-utOOaULr27 H3 {
  color: #47abbf;
  text-align: right;
}
.cid-utOOaULr27 .panel-text {
  color: #323d4e;
}
.cid-utZHa2nR37 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #323d4e;
}
.cid-utZHa2nR37 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utZHa2nR37 .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-utZHa2nR37 .container {
    padding: 0 16px;
  }
}
.cid-utZHa2nR37 .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-utZHa2nR37 .card {
    margin-bottom: 40px;
  }
}
.cid-utZHa2nR37 .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utZHa2nR37 .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-utZHa2nR37 .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-utZHa2nR37 .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-utZHa2nR37 .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-utZHa2nR37 .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-utZHa2nR37 .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-utZHa2nR37 .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-utZHa2nR37 .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-utZHa2nR37 .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-utZHa2nR37 .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utZHa2nR37 .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-utZHa2nR37 .mbr-section-title {
  color: #ffffff;
}
.cid-utZHa2nR37 .copyright {
  color: #ffffff;
}
.cid-utZHa2nR37 .mbr-card-title {
  color: #47abbf;
}
.cid-utZHa2nR37 .list {
  color: #ffffff;
}
.cid-uv8qv6Pmsy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uv8qv6Pmsy .mbr-section-subtitle {
  color: #767676;
}
.cid-uv8qv6Pmsy .mbr-section-title {
  color: #323d4e;
}
.cid-uv8qv6Pmsy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv8qv6Pmsy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utZHyVreKy .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-utZHyVreKy .nav-item,
.cid-utZHyVreKy .nav-link,
.cid-utZHyVreKy .navbar-caption {
  font-weight: normal;
}
.cid-utZHyVreKy .nav-item:focus,
.cid-utZHyVreKy .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-utZHyVreKy .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-utZHyVreKy .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-utZHyVreKy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-utZHyVreKy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-utZHyVreKy .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #323d4e;
  background: none;
}
.cid-utZHyVreKy .navbar.opened {
  transition: all .3s;
  background: #323d4e !important;
}
.cid-utZHyVreKy .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-utZHyVreKy .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-utZHyVreKy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-utZHyVreKy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-utZHyVreKy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4rem);
  }
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-utZHyVreKy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-utZHyVreKy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-utZHyVreKy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-utZHyVreKy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-utZHyVreKy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-utZHyVreKy .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-utZHyVreKy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-utZHyVreKy .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-utZHyVreKy .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-utZHyVreKy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-utZHyVreKy .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-utZHyVreKy .navbar.navbar-short {
  background: #323d4e !important;
  min-height: 60px;
}
.cid-utZHyVreKy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-utZHyVreKy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-utZHyVreKy .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-utZHyVreKy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-utZHyVreKy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-utZHyVreKy .dropdown-item.active,
.cid-utZHyVreKy .dropdown-item:active {
  background-color: transparent;
}
.cid-utZHyVreKy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-utZHyVreKy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-utZHyVreKy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-utZHyVreKy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #323d4e;
}
.cid-utZHyVreKy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-utZHyVreKy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-utZHyVreKy ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-utZHyVreKy .navbar-buttons {
  text-align: center;
}
.cid-utZHyVreKy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-utZHyVreKy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-utZHyVreKy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-utZHyVreKy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-utZHyVreKy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-utZHyVreKy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-utZHyVreKy .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-utZHyVreKy a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-utZHyVreKy .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-utZHyVreKy .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-utZHyVreKy .soc-item {
  margin: .5rem .3rem;
}
.cid-utZHyVreKy .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-utZHyVreKy a.nav-link,
.cid-utZHyVreKy a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-utZHyVreKy a.nav-link .mbr-iconfont-btn,
.cid-utZHyVreKy a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-utZHyVreKy a.nav-link:hover .mbr-iconfont-btn,
.cid-utZHyVreKy a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-utZHyVreKy a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-utZHyVreKy .navbar {
    height: 77px;
  }
  .cid-utZHyVreKy .navbar.opened {
    height: auto;
  }
  .cid-utZHyVreKy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utsaGw9UxB {
  overflow: hidden !important;
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/eventi-800x533.png");
}
.cid-utsaGw9UxB .container-fluid {
  padding: 0 3rem;
}
.cid-utsaGw9UxB .animated-element {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-utsaGw9UxB .container-fluid {
    padding: 0 1rem;
  }
}
.cid-utsaGw9UxB .mbr-fallback-image.disabled {
  display: none;
}
.cid-utsaGw9UxB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utsaGw9UxB .mbr-section-title {
  text-align: center;
}
.cid-v55bP931i6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-v55bP931i6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v55bP931i6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v55bP931i6 .content-wrapper {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-v55bP931i6 .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v55bP931i6 .content-wrapper .label-wrapper {
  margin-bottom: 32px;
}
.cid-v55bP931i6 .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-top: 2px solid #ffffff;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.cid-v55bP931i6 .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  display: inline-block;
  margin-right: 8px;
}
.cid-v55bP931i6 .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-v55bP931i6 .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #323d4e, #323d4e 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-v55bP931i6 .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-v55bP931i6 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v55bP931i6 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v55bP931i6 .items-wrapper {
  margin: 0 -12px;
  justify-content: center;
}
.cid-v55bP931i6 .items-wrapper .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-v55bP931i6 .items-wrapper .item {
    margin-bottom: 18px;
  }
}
.cid-v55bP931i6 .items-wrapper .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-top: 3px solid #ffffff;
  box-shadow: 0 8px 15px -8px #47abbf;
  padding: 30px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-v55bP931i6 .items-wrapper .item .item-wrapper {
    padding: 24px;
  }
}
.cid-v55bP931i6 .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-v55bP931i6 .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v55bP931i6 .items-wrapper .item .item-wrapper .item-content .icon-wrapper .icon-wrap {
  width: 180px;
  height: 180px;
  display: inline-flex;
  padding: 10px;
  border-top: 3px solid #ffffff;
  box-shadow: 0 10px 12px -8px #47abbf;
  background-color: #ffffff;
}
.cid-v55bP931i6 .items-wrapper .item .item-wrapper .item-content .icon-wrapper .icon-wrap .mbr-iconfont {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 84px;
  border-top: 3px solid #ffffff;
  box-shadow: 0 8px 12px -8px #47abbf;
  background-color: #ffffff;
}
.cid-v55bP931i6 .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.cid-v55bP931i6 .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-v55bP931i6 .items-wrapper .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 10px;
}
.cid-v55bP931i6 .items-wrapper .item .item-wrapper .item-content .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v55bP931i6 .mbr-label,
.cid-v55bP931i6 .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v55bP931i6 .mbr-section-title,
.cid-v55bP931i6 .title-wrapper {
  color: #323d4e;
  text-align: center;
}
.cid-v55bP931i6 .mbr-text,
.cid-v55bP931i6 .text-wrapper {
  color: #515151;
  text-align: center;
}
.cid-v55bP931i6 .item-title {
  color: #000000;
}
.cid-v55bP931i6 .item-text {
  color: #323d4e;
}
.cid-v55bP931i6 .item-title,
.cid-v55bP931i6 .mbr-section-btn {
  color: #47abbf;
  text-align: center;
}
.cid-utyp9uiJvN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-utyp9uiJvN .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-utyp9uiJvN .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-utyp9uiJvN .mbr-section-title {
  color: #323d4d;
  font-weight: 700;
  text-align: right;
}
.cid-utyp9uiJvN .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-utyp9uiJvN .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
  color: #6d7a8c;
}
.cid-utyp9uiJvN .timelines-container {
  margin-top: 60px;
}
.cid-utyp9uiJvN .timelines-container .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
.cid-utyp9uiJvN .timelines-container .timeline-element .timeline-date-panel .time-line-date-content .mbr-figure img {
  border-radius: 4px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.04);
}
.cid-utyp9uiJvN .timelines-container .timeline-element .date .mbr-timeline-date {
  color: #130947;
  font-weight: 700;
}
.cid-utyp9uiJvN .timelines-container .timeline-element .date .display-7 {
  font-size: 20px;
  line-height: 1;
}
.cid-utyp9uiJvN .timelines-container .timeline-element .iconBackground {
  position: absolute;
  left: 41%;
  width: 12px;
  height: 12px;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  background-color: #083753;
  font-size: 30px;
  display: inline-block;
  top: 0px;
  margin-left: -5px;
}
.cid-utyp9uiJvN .timelines-container .timeline-element .timeline-text-content {
  margin-left: 2rem;
  text-align: left;
}
.cid-utyp9uiJvN .timelines-container .timeline-element .timeline-text-content .mbr-timeline-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: #130947;
}
.cid-utyp9uiJvN .timelines-container .timeline-element .timeline-text-content .mbr-timeline-text {
  margin: 0 0 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-utyp9uiJvN .timelines-container .timeline-element .timeline-text-content .display-5 {
  line-height: 1.09;
  font-size: 22px;
  letter-spacing: -0.5px;
}
.cid-utyp9uiJvN .timelines-container .timeline-element .timeline-text-content .display-7 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-utyp9uiJvN .container-fluid {
  padding: 0 2rem;
}
.cid-utyp9uiJvN .separline:before,
.cid-utyp9uiJvN .first-separline:before {
  top: 0rem;
  bottom: 0;
  position: absolute;
  content: '';
  width: 4px;
  background-color: #47abbf;
  left: calc(41% - 1px);
  height: calc(100% + 3rem);
}
.cid-utyp9uiJvN .separline:after {
  top: calc(100% + 3.1rem);
  bottom: 0;
  position: absolute;
  content: '';
  width: 4px;
  background-color: #47abbf;
  left: calc(41% - 1px);
  height: 100%;
}
@media (max-width: 768px) {
  .cid-utyp9uiJvN .container-fluid {
    padding: 0 1rem;
  }
  .cid-utyp9uiJvN .iconBackground {
    left: -9px !important;
    top: 33px;
  }
  .cid-utyp9uiJvN .separline:before,
  .cid-utyp9uiJvN .first-separline:before {
    left: -10px !important;
  }
  .cid-utyp9uiJvN .separline:after {
    left: -10px !important;
    top: calc(102.4%);
  }
  .cid-utyp9uiJvN .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-utyp9uiJvN .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-utyp9uiJvN .time-line-date-content p {
    float: left !important;
  }
  .cid-utyp9uiJvN .mbr-timeline-date {
    padding-bottom: 0 !important;
  }
  .cid-utyp9uiJvN .timelines-container .timeline-element .date .mbr-timeline-date {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.cid-utyp9uiJvN .reverseTimeline {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}
.cid-utyp9uiJvN .mbr-fallback-image.disabled {
  display: none;
}
.cid-utyp9uiJvN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utyp9uiJvN .timelines-container .timeline-element .timeline-text-content .mbr-timeline-text {
  color: #323d4e;
}
.cid-utyp9uiJvN .timelines-container .timeline-element .timeline-text-content .mbr-timeline-title {
  color: #47abbf;
}
.cid-utyp9uiJvN .timelines-container .timeline-element .date .mbr-timeline-date {
  text-align: center;
}
.cid-utykw0AQXc {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-utykw0AQXc .row {
  flex-direction: row-reverse;
}
.cid-utykw0AQXc .mbr-section-title {
  color: #47abbf;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-utykw0AQXc .mbr-section-title {
    margin-bottom: 24px !important;
  }
}
.cid-utykw0AQXc .mbr-text {
  color: #FFFFFF;
}
.cid-utykw0AQXc .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cid-utykw0AQXc .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-utykw0AQXc .mbr-text,
.cid-utykw0AQXc .mbr-section-btn {
  text-align: left;
  color: #323d4e;
}
.cid-utZHa2nR37 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #323d4e;
}
.cid-utZHa2nR37 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utZHa2nR37 .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-utZHa2nR37 .container {
    padding: 0 16px;
  }
}
.cid-utZHa2nR37 .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-utZHa2nR37 .card {
    margin-bottom: 40px;
  }
}
.cid-utZHa2nR37 .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utZHa2nR37 .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-utZHa2nR37 .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-utZHa2nR37 .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-utZHa2nR37 .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-utZHa2nR37 .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-utZHa2nR37 .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-utZHa2nR37 .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-utZHa2nR37 .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-utZHa2nR37 .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-utZHa2nR37 .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utZHa2nR37 .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-utZHa2nR37 .mbr-section-title {
  color: #ffffff;
}
.cid-utZHa2nR37 .copyright {
  color: #ffffff;
}
.cid-utZHa2nR37 .mbr-card-title {
  color: #47abbf;
}
.cid-utZHa2nR37 .list {
  color: #ffffff;
}
.cid-uv8qysYRs0 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uv8qysYRs0 .mbr-section-subtitle {
  color: #767676;
}
.cid-uv8qysYRs0 .mbr-section-title {
  color: #323d4e;
}
.cid-uv8qysYRs0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv8qysYRs0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utZWiumlCA .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-utZWiumlCA .nav-item,
.cid-utZWiumlCA .nav-link,
.cid-utZWiumlCA .navbar-caption {
  font-weight: normal;
}
.cid-utZWiumlCA .nav-item:focus,
.cid-utZWiumlCA .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-utZWiumlCA .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-utZWiumlCA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-utZWiumlCA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-utZWiumlCA .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-utZWiumlCA .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-utZWiumlCA .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-utZWiumlCA .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-utZWiumlCA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-utZWiumlCA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-utZWiumlCA .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #323d4e;
  background: none;
}
.cid-utZWiumlCA .navbar.opened {
  transition: all .3s;
  background: #323d4e !important;
}
.cid-utZWiumlCA .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-utZWiumlCA .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-utZWiumlCA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-utZWiumlCA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-utZWiumlCA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4rem);
  }
}
.cid-utZWiumlCA .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-utZWiumlCA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-utZWiumlCA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-utZWiumlCA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-utZWiumlCA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-utZWiumlCA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-utZWiumlCA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-utZWiumlCA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-utZWiumlCA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-utZWiumlCA .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-utZWiumlCA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-utZWiumlCA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-utZWiumlCA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-utZWiumlCA .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-utZWiumlCA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-utZWiumlCA .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-utZWiumlCA .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-utZWiumlCA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-utZWiumlCA .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-utZWiumlCA .navbar.navbar-short {
  background: #323d4e !important;
  min-height: 60px;
}
.cid-utZWiumlCA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-utZWiumlCA .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-utZWiumlCA .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-utZWiumlCA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-utZWiumlCA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-utZWiumlCA .dropdown-item.active,
.cid-utZWiumlCA .dropdown-item:active {
  background-color: transparent;
}
.cid-utZWiumlCA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-utZWiumlCA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-utZWiumlCA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-utZWiumlCA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #323d4e;
}
.cid-utZWiumlCA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-utZWiumlCA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-utZWiumlCA ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-utZWiumlCA .navbar-buttons {
  text-align: center;
}
.cid-utZWiumlCA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-utZWiumlCA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-utZWiumlCA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-utZWiumlCA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-utZWiumlCA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-utZWiumlCA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-utZWiumlCA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-utZWiumlCA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-utZWiumlCA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-utZWiumlCA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-utZWiumlCA .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-utZWiumlCA a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-utZWiumlCA .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-utZWiumlCA .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-utZWiumlCA .soc-item {
  margin: .5rem .3rem;
}
.cid-utZWiumlCA .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-utZWiumlCA a.nav-link,
.cid-utZWiumlCA a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-utZWiumlCA a.nav-link .mbr-iconfont-btn,
.cid-utZWiumlCA a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-utZWiumlCA a.nav-link:hover .mbr-iconfont-btn,
.cid-utZWiumlCA a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-utZWiumlCA a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-utZWiumlCA .navbar {
    height: 77px;
  }
  .cid-utZWiumlCA .navbar.opened {
    height: auto;
  }
  .cid-utZWiumlCA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utZXrv3d1K {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-utZXrv3d1K .mbr-text {
  color: #323d4e;
  text-align: left;
}
.cid-utZWitVFq6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #323d4e;
}
.cid-utZWitVFq6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utZWitVFq6 .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-utZWitVFq6 .container {
    padding: 0 16px;
  }
}
.cid-utZWitVFq6 .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-utZWitVFq6 .card {
    margin-bottom: 40px;
  }
}
.cid-utZWitVFq6 .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utZWitVFq6 .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-utZWitVFq6 .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-utZWitVFq6 .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-utZWitVFq6 .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-utZWitVFq6 .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-utZWitVFq6 .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-utZWitVFq6 .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-utZWitVFq6 .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-utZWitVFq6 .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-utZWitVFq6 .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utZWitVFq6 .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-utZWitVFq6 .mbr-section-title {
  color: #ffffff;
}
.cid-utZWitVFq6 .copyright {
  color: #ffffff;
}
.cid-utZWitVFq6 .mbr-card-title {
  color: #47abbf;
}
.cid-utZWitVFq6 .list {
  color: #ffffff;
}
.cid-uv8qCb5kYX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uv8qCb5kYX .mbr-section-subtitle {
  color: #767676;
}
.cid-uv8qCb5kYX .mbr-section-title {
  color: #323d4e;
}
.cid-uv8qCb5kYX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv8qCb5kYX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utZWl3ewyJ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-utZWl3ewyJ .nav-item,
.cid-utZWl3ewyJ .nav-link,
.cid-utZWl3ewyJ .navbar-caption {
  font-weight: normal;
}
.cid-utZWl3ewyJ .nav-item:focus,
.cid-utZWl3ewyJ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-utZWl3ewyJ .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-utZWl3ewyJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-utZWl3ewyJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-utZWl3ewyJ .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-utZWl3ewyJ .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-utZWl3ewyJ .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-utZWl3ewyJ .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-utZWl3ewyJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-utZWl3ewyJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-utZWl3ewyJ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #323d4e;
  background: none;
}
.cid-utZWl3ewyJ .navbar.opened {
  transition: all .3s;
  background: #323d4e !important;
}
.cid-utZWl3ewyJ .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-utZWl3ewyJ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-utZWl3ewyJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-utZWl3ewyJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-utZWl3ewyJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4rem);
  }
}
.cid-utZWl3ewyJ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-utZWl3ewyJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-utZWl3ewyJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-utZWl3ewyJ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-utZWl3ewyJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-utZWl3ewyJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-utZWl3ewyJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-utZWl3ewyJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-utZWl3ewyJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-utZWl3ewyJ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-utZWl3ewyJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-utZWl3ewyJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-utZWl3ewyJ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-utZWl3ewyJ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-utZWl3ewyJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-utZWl3ewyJ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-utZWl3ewyJ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-utZWl3ewyJ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-utZWl3ewyJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-utZWl3ewyJ .navbar.navbar-short {
  background: #323d4e !important;
  min-height: 60px;
}
.cid-utZWl3ewyJ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-utZWl3ewyJ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-utZWl3ewyJ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-utZWl3ewyJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-utZWl3ewyJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-utZWl3ewyJ .dropdown-item.active,
.cid-utZWl3ewyJ .dropdown-item:active {
  background-color: transparent;
}
.cid-utZWl3ewyJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-utZWl3ewyJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-utZWl3ewyJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-utZWl3ewyJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #323d4e;
}
.cid-utZWl3ewyJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-utZWl3ewyJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-utZWl3ewyJ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-utZWl3ewyJ .navbar-buttons {
  text-align: center;
}
.cid-utZWl3ewyJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-utZWl3ewyJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-utZWl3ewyJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-utZWl3ewyJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-utZWl3ewyJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-utZWl3ewyJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-utZWl3ewyJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-utZWl3ewyJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-utZWl3ewyJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-utZWl3ewyJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-utZWl3ewyJ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-utZWl3ewyJ a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-utZWl3ewyJ .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-utZWl3ewyJ .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-utZWl3ewyJ .soc-item {
  margin: .5rem .3rem;
}
.cid-utZWl3ewyJ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-utZWl3ewyJ a.nav-link,
.cid-utZWl3ewyJ a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-utZWl3ewyJ a.nav-link .mbr-iconfont-btn,
.cid-utZWl3ewyJ a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-utZWl3ewyJ a.nav-link:hover .mbr-iconfont-btn,
.cid-utZWl3ewyJ a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-utZWl3ewyJ a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-utZWl3ewyJ .navbar {
    height: 77px;
  }
  .cid-utZWl3ewyJ .navbar.opened {
    height: auto;
  }
  .cid-utZWl3ewyJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utZXxlySBh {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-utZXxlySBh .mbr-text {
  color: #323d4e;
  text-align: left;
}
.cid-utZWl2Jmfx {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #323d4e;
}
.cid-utZWl2Jmfx .mbr-fallback-image.disabled {
  display: none;
}
.cid-utZWl2Jmfx .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-utZWl2Jmfx .container {
    padding: 0 16px;
  }
}
.cid-utZWl2Jmfx .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-utZWl2Jmfx .card {
    margin-bottom: 40px;
  }
}
.cid-utZWl2Jmfx .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utZWl2Jmfx .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-utZWl2Jmfx .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-utZWl2Jmfx .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-utZWl2Jmfx .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-utZWl2Jmfx .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-utZWl2Jmfx .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-utZWl2Jmfx .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-utZWl2Jmfx .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-utZWl2Jmfx .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-utZWl2Jmfx .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utZWl2Jmfx .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-utZWl2Jmfx .mbr-section-title {
  color: #ffffff;
}
.cid-utZWl2Jmfx .copyright {
  color: #ffffff;
}
.cid-utZWl2Jmfx .mbr-card-title {
  color: #47abbf;
}
.cid-utZWl2Jmfx .list {
  color: #ffffff;
}
.cid-uv8qG4HRiR {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uv8qG4HRiR .mbr-section-subtitle {
  color: #767676;
}
.cid-uv8qG4HRiR .mbr-section-title {
  color: #323d4e;
}
.cid-uv8qG4HRiR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv8qG4HRiR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGteJs0gd9 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uGteJs0gd9 .nav-item,
.cid-uGteJs0gd9 .nav-link,
.cid-uGteJs0gd9 .navbar-caption {
  font-weight: normal;
}
.cid-uGteJs0gd9 .nav-item:focus,
.cid-uGteJs0gd9 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uGteJs0gd9 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-uGteJs0gd9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-uGteJs0gd9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGteJs0gd9 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uGteJs0gd9 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uGteJs0gd9 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uGteJs0gd9 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uGteJs0gd9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGteJs0gd9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGteJs0gd9 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #323d4e;
  background: none;
}
.cid-uGteJs0gd9 .navbar.opened {
  transition: all .3s;
  background: #323d4e !important;
}
.cid-uGteJs0gd9 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uGteJs0gd9 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGteJs0gd9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGteJs0gd9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGteJs0gd9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4rem);
  }
}
.cid-uGteJs0gd9 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uGteJs0gd9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGteJs0gd9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGteJs0gd9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uGteJs0gd9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGteJs0gd9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uGteJs0gd9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uGteJs0gd9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGteJs0gd9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGteJs0gd9 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uGteJs0gd9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGteJs0gd9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGteJs0gd9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uGteJs0gd9 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uGteJs0gd9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGteJs0gd9 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGteJs0gd9 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uGteJs0gd9 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uGteJs0gd9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uGteJs0gd9 .navbar.navbar-short {
  background: #323d4e !important;
  min-height: 60px;
}
.cid-uGteJs0gd9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uGteJs0gd9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uGteJs0gd9 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGteJs0gd9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGteJs0gd9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGteJs0gd9 .dropdown-item.active,
.cid-uGteJs0gd9 .dropdown-item:active {
  background-color: transparent;
}
.cid-uGteJs0gd9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGteJs0gd9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGteJs0gd9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGteJs0gd9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #323d4e;
}
.cid-uGteJs0gd9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGteJs0gd9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGteJs0gd9 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uGteJs0gd9 .navbar-buttons {
  text-align: center;
}
.cid-uGteJs0gd9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uGteJs0gd9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uGteJs0gd9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uGteJs0gd9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uGteJs0gd9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uGteJs0gd9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uGteJs0gd9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uGteJs0gd9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uGteJs0gd9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uGteJs0gd9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uGteJs0gd9 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uGteJs0gd9 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uGteJs0gd9 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uGteJs0gd9 .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uGteJs0gd9 .soc-item {
  margin: .5rem .3rem;
}
.cid-uGteJs0gd9 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uGteJs0gd9 a.nav-link,
.cid-uGteJs0gd9 a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-uGteJs0gd9 a.nav-link .mbr-iconfont-btn,
.cid-uGteJs0gd9 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-uGteJs0gd9 a.nav-link:hover .mbr-iconfont-btn,
.cid-uGteJs0gd9 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-uGteJs0gd9 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGteJs0gd9 .navbar {
    height: 77px;
  }
  .cid-uGteJs0gd9 .navbar.opened {
    height: auto;
  }
  .cid-uGteJs0gd9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGteJshuXA {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uGteJshuXA .mbr-text {
  color: #323d4e;
  text-align: left;
}
.cid-uGteJsqhLN {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #323d4e;
}
.cid-uGteJsqhLN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGteJsqhLN .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-uGteJsqhLN .container {
    padding: 0 16px;
  }
}
.cid-uGteJsqhLN .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uGteJsqhLN .card {
    margin-bottom: 40px;
  }
}
.cid-uGteJsqhLN .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uGteJsqhLN .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-uGteJsqhLN .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-uGteJsqhLN .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uGteJsqhLN .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uGteJsqhLN .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-uGteJsqhLN .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uGteJsqhLN .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-uGteJsqhLN .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uGteJsqhLN .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uGteJsqhLN .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uGteJsqhLN .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-uGteJsqhLN .mbr-section-title {
  color: #ffffff;
}
.cid-uGteJsqhLN .copyright {
  color: #ffffff;
}
.cid-uGteJsqhLN .mbr-card-title {
  color: #47abbf;
}
.cid-uGteJsqhLN .list {
  color: #ffffff;
}
.cid-uGteJsEitj {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uGteJsEitj .mbr-section-subtitle {
  color: #767676;
}
.cid-uGteJsEitj .mbr-section-title {
  color: #323d4e;
}
.cid-uGteJsEitj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGteJsEitj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5yoVFxkQz .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v5yoVFxkQz .nav-item,
.cid-v5yoVFxkQz .nav-link,
.cid-v5yoVFxkQz .navbar-caption {
  font-weight: normal;
}
.cid-v5yoVFxkQz .nav-item:focus,
.cid-v5yoVFxkQz .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-v5yoVFxkQz .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-v5yoVFxkQz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-v5yoVFxkQz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v5yoVFxkQz .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-v5yoVFxkQz .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-v5yoVFxkQz .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v5yoVFxkQz .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v5yoVFxkQz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v5yoVFxkQz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v5yoVFxkQz .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #323d4e;
  background: none;
}
.cid-v5yoVFxkQz .navbar.opened {
  transition: all .3s;
  background: #323d4e !important;
}
.cid-v5yoVFxkQz .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-v5yoVFxkQz .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-v5yoVFxkQz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v5yoVFxkQz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v5yoVFxkQz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4rem);
  }
}
.cid-v5yoVFxkQz .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-v5yoVFxkQz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v5yoVFxkQz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v5yoVFxkQz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-v5yoVFxkQz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v5yoVFxkQz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-v5yoVFxkQz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-v5yoVFxkQz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v5yoVFxkQz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v5yoVFxkQz .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-v5yoVFxkQz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v5yoVFxkQz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v5yoVFxkQz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-v5yoVFxkQz .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-v5yoVFxkQz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v5yoVFxkQz .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v5yoVFxkQz .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-v5yoVFxkQz .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-v5yoVFxkQz .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-v5yoVFxkQz .navbar.navbar-short {
  background: #323d4e !important;
  min-height: 60px;
}
.cid-v5yoVFxkQz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-v5yoVFxkQz .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-v5yoVFxkQz .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v5yoVFxkQz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v5yoVFxkQz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v5yoVFxkQz .dropdown-item.active,
.cid-v5yoVFxkQz .dropdown-item:active {
  background-color: transparent;
}
.cid-v5yoVFxkQz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v5yoVFxkQz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v5yoVFxkQz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v5yoVFxkQz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #323d4e;
}
.cid-v5yoVFxkQz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v5yoVFxkQz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v5yoVFxkQz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v5yoVFxkQz .navbar-buttons {
  text-align: center;
}
.cid-v5yoVFxkQz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v5yoVFxkQz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v5yoVFxkQz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v5yoVFxkQz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v5yoVFxkQz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v5yoVFxkQz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v5yoVFxkQz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v5yoVFxkQz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v5yoVFxkQz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v5yoVFxkQz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v5yoVFxkQz .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-v5yoVFxkQz a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v5yoVFxkQz .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-v5yoVFxkQz .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-v5yoVFxkQz .soc-item {
  margin: .5rem .3rem;
}
.cid-v5yoVFxkQz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v5yoVFxkQz a.nav-link,
.cid-v5yoVFxkQz a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-v5yoVFxkQz a.nav-link .mbr-iconfont-btn,
.cid-v5yoVFxkQz a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-v5yoVFxkQz a.nav-link:hover .mbr-iconfont-btn,
.cid-v5yoVFxkQz a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-v5yoVFxkQz a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v5yoVFxkQz .navbar {
    height: 77px;
  }
  .cid-v5yoVFxkQz .navbar.opened {
    height: auto;
  }
  .cid-v5yoVFxkQz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v5yoVGjssW {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/patologia-bg-2000x1125.jpg");
}
.cid-v5yoVGjssW .mbr-overlay {
  background: #323d4e;
}
.cid-v5yoVGjssW .mbr-section-title {
  letter-spacing: -1px;
  text-align: center;
}
.cid-v5yoVGjssW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5yoVGjssW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5yoVGjssW .mbr-text,
.cid-v5yoVGjssW .mbr-section-btn {
  text-align: center;
  color: #efefef;
}
.cid-v5yoVGB2z2 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-v5yoVGB2z2 .card-img span {
  color: #47abbf;
  font-size: 5rem;
}
.cid-v5yoVGB2z2 .mbr-text {
  color: #323d4e;
  text-align: center;
}
.cid-v5yoVGB2z2 p {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-v5yoVGB2z2 .card {
    margin-bottom: 2rem;
  }
}
.cid-v5yoVGB2z2 .card-title,
.cid-v5yoVGB2z2 .card-img {
  color: #323d4e;
  text-align: center;
}
.cid-v5yoVGB2z2 .mbr-section-title {
  text-align: center;
  color: #323d4e;
}
.cid-v5yoVGB2z2 .mbr-section-sub-title {
  text-align: center;
  color: #47abbf;
}
.cid-v5yoVGB2z2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5yoVGB2z2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5yoVGPyyP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-v5yoVGPyyP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5yoVGPyyP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5yoVGPyyP .content-wrapper {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-v5yoVGPyyP .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v5yoVGPyyP .content-wrapper .label-wrapper {
  margin-bottom: 32px;
}
.cid-v5yoVGPyyP .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-top: 2px solid #ffffff;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.cid-v5yoVGPyyP .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  display: inline-block;
  margin-right: 8px;
}
.cid-v5yoVGPyyP .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-v5yoVGPyyP .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #323d4e, #323d4e 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-v5yoVGPyyP .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-v5yoVGPyyP .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v5yoVGPyyP .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v5yoVGPyyP .items-wrapper {
  margin: 0 -12px;
  justify-content: center;
}
.cid-v5yoVGPyyP .items-wrapper .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-v5yoVGPyyP .items-wrapper .item {
    margin-bottom: 18px;
  }
}
.cid-v5yoVGPyyP .items-wrapper .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  border-top: 3px solid #ffffff;
  box-shadow: 0 8px 15px -8px #47abbf;
  padding: 30px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-v5yoVGPyyP .items-wrapper .item .item-wrapper {
    padding: 24px;
  }
}
.cid-v5yoVGPyyP .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-v5yoVGPyyP .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v5yoVGPyyP .items-wrapper .item .item-wrapper .item-content .icon-wrapper .icon-wrap {
  width: 180px;
  height: 180px;
  display: inline-flex;
  padding: 10px;
  border-top: 3px solid #ffffff;
  box-shadow: 0 10px 12px -8px #47abbf;
  background-color: #ffffff;
}
.cid-v5yoVGPyyP .items-wrapper .item .item-wrapper .item-content .icon-wrapper .icon-wrap .mbr-iconfont {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 84px;
  border-top: 3px solid #ffffff;
  box-shadow: 0 8px 12px -8px #47abbf;
  background-color: #ffffff;
}
.cid-v5yoVGPyyP .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.cid-v5yoVGPyyP .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-v5yoVGPyyP .items-wrapper .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 10px;
}
.cid-v5yoVGPyyP .items-wrapper .item .item-wrapper .item-content .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v5yoVGPyyP .mbr-label,
.cid-v5yoVGPyyP .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v5yoVGPyyP .mbr-section-title,
.cid-v5yoVGPyyP .title-wrapper {
  color: #323d4e;
  text-align: center;
}
.cid-v5yoVGPyyP .mbr-text,
.cid-v5yoVGPyyP .text-wrapper {
  color: #515151;
  text-align: center;
}
.cid-v5yoVGPyyP .item-title {
  color: #000000;
}
.cid-v5yoVGPyyP .item-text {
  color: #323d4e;
}
.cid-v5yoVGPyyP .item-title,
.cid-v5yoVGPyyP .mbr-section-btn {
  color: #47abbf;
}
.cid-v5yoVGZWxv {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-v5yoVGZWxv .row-element,
.cid-v5yoVGZWxv .image-element {
  padding: 0;
}
.cid-v5yoVGZWxv .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v5yoVGZWxv .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-v5yoVGZWxv .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-v5yoVGZWxv .text-content {
    padding: 2rem 1rem;
  }
  .cid-v5yoVGZWxv .mbr-title,
  .cid-v5yoVGZWxv .mbr-text,
  .cid-v5yoVGZWxv .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-v5yoVGZWxv .mbr-text,
.cid-v5yoVGZWxv .mbr-section-btn {
  color: #323d4e;
  text-align: left;
}
.cid-v5yoVGZWxv .mbr-title {
  color: #323d4e;
  text-align: left;
}
.cid-v5yoVGZWxv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5yoVGZWxv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5yoVGZWxv .mbr-section-subtitle {
  color: #47abbf;
  text-align: left;
}
.cid-v5yoVH6wYw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fafafa;
}
.cid-v5yoVH6wYw .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-v5yoVH6wYw .row-element,
.cid-v5yoVH6wYw .image-element {
  padding: 0;
}
.cid-v5yoVH6wYw .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v5yoVH6wYw .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-v5yoVH6wYw .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-v5yoVH6wYw .text-content {
    padding: 2rem 1rem;
  }
  .cid-v5yoVH6wYw .mbr-title,
  .cid-v5yoVH6wYw .mbr-text,
  .cid-v5yoVH6wYw .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-v5yoVH6wYw .mbr-text,
.cid-v5yoVH6wYw .mbr-section-btn {
  color: #323d4e;
}
.cid-v5yoVH6wYw .mbr-title {
  color: #323d4e;
}
.cid-v5yoVH6wYw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5yoVH6wYw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5yoVH6wYw .mbr-section-subtitle {
  color: #47abbf;
}
.cid-v5yoVHqAbU {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v5yoVHqAbU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5yoVHqAbU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5yoVHqAbU .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v5yoVHqAbU .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v5yoVHqAbU .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #47abbf;
}
.cid-v5yoVHqAbU .panel-body,
.cid-v5yoVHqAbU .card-header {
  padding: 1rem 0;
}
.cid-v5yoVHqAbU .panel-title-edit {
  color: #323d4e;
}
.cid-v5yoVHqAbU H3 {
  color: #47abbf;
  text-align: right;
}
.cid-v5yoVHqAbU .panel-text {
  color: #323d4e;
}
.cid-v5yoVHCWoK {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #323d4e;
}
.cid-v5yoVHCWoK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5yoVHCWoK .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-v5yoVHCWoK .container {
    padding: 0 16px;
  }
}
.cid-v5yoVHCWoK .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v5yoVHCWoK .card {
    margin-bottom: 40px;
  }
}
.cid-v5yoVHCWoK .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v5yoVHCWoK .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-v5yoVHCWoK .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-v5yoVHCWoK .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v5yoVHCWoK .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v5yoVHCWoK .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-v5yoVHCWoK .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v5yoVHCWoK .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-v5yoVHCWoK .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-v5yoVHCWoK .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-v5yoVHCWoK .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v5yoVHCWoK .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-v5yoVHCWoK .mbr-section-title {
  color: #ffffff;
}
.cid-v5yoVHCWoK .copyright {
  color: #ffffff;
}
.cid-v5yoVHCWoK .mbr-card-title {
  color: #47abbf;
}
.cid-v5yoVHCWoK .list {
  color: #ffffff;
}
.cid-v5yoVHSZwm {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-v5yoVHSZwm .mbr-section-subtitle {
  color: #767676;
}
.cid-v5yoVHSZwm .mbr-section-title {
  color: #323d4e;
}
.cid-v5yoVHSZwm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5yoVHSZwm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5ystfR6Cw .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e909';
  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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v5ystfR6Cw .nav-item,
.cid-v5ystfR6Cw .nav-link,
.cid-v5ystfR6Cw .navbar-caption {
  font-weight: normal;
}
.cid-v5ystfR6Cw .nav-item:focus,
.cid-v5ystfR6Cw .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-v5ystfR6Cw .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-v5ystfR6Cw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-v5ystfR6Cw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v5ystfR6Cw .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-v5ystfR6Cw .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-v5ystfR6Cw .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v5ystfR6Cw .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v5ystfR6Cw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v5ystfR6Cw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v5ystfR6Cw .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #323d4e;
  background: none;
}
.cid-v5ystfR6Cw .navbar.opened {
  transition: all .3s;
  background: #323d4e !important;
}
.cid-v5ystfR6Cw .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-v5ystfR6Cw .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-v5ystfR6Cw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v5ystfR6Cw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v5ystfR6Cw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 4rem);
  }
}
.cid-v5ystfR6Cw .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-v5ystfR6Cw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v5ystfR6Cw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v5ystfR6Cw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-v5ystfR6Cw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v5ystfR6Cw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-v5ystfR6Cw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-v5ystfR6Cw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v5ystfR6Cw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v5ystfR6Cw .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-v5ystfR6Cw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v5ystfR6Cw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v5ystfR6Cw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-v5ystfR6Cw .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-v5ystfR6Cw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v5ystfR6Cw .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v5ystfR6Cw .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-v5ystfR6Cw .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-v5ystfR6Cw .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-v5ystfR6Cw .navbar.navbar-short {
  background: #323d4e !important;
  min-height: 60px;
}
.cid-v5ystfR6Cw .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-v5ystfR6Cw .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-v5ystfR6Cw .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v5ystfR6Cw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v5ystfR6Cw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v5ystfR6Cw .dropdown-item.active,
.cid-v5ystfR6Cw .dropdown-item:active {
  background-color: transparent;
}
.cid-v5ystfR6Cw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v5ystfR6Cw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v5ystfR6Cw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v5ystfR6Cw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #323d4e;
}
.cid-v5ystfR6Cw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v5ystfR6Cw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v5ystfR6Cw ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v5ystfR6Cw .navbar-buttons {
  text-align: center;
}
.cid-v5ystfR6Cw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v5ystfR6Cw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v5ystfR6Cw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v5ystfR6Cw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v5ystfR6Cw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v5ystfR6Cw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v5ystfR6Cw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v5ystfR6Cw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v5ystfR6Cw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v5ystfR6Cw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v5ystfR6Cw .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-v5ystfR6Cw a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v5ystfR6Cw .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-v5ystfR6Cw .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-v5ystfR6Cw .soc-item {
  margin: .5rem .3rem;
}
.cid-v5ystfR6Cw .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v5ystfR6Cw a.nav-link,
.cid-v5ystfR6Cw a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-v5ystfR6Cw a.nav-link .mbr-iconfont-btn,
.cid-v5ystfR6Cw a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-v5ystfR6Cw a.nav-link:hover .mbr-iconfont-btn,
.cid-v5ystfR6Cw a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-v5ystfR6Cw a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v5ystfR6Cw .navbar {
    height: 77px;
  }
  .cid-v5ystfR6Cw .navbar.opened {
    height: auto;
  }
  .cid-v5ystfR6Cw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v5ystgb6u4 {
  overflow: hidden !important;
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #323d4e;
}
.cid-v5ystgb6u4 .container-fluid {
  padding: 0 3rem;
}
.cid-v5ystgb6u4 .animated-element {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-v5ystgb6u4 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-v5ystgb6u4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5ystgb6u4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5ystgb6u4 .mbr-section-title {
  text-align: center;
}
.cid-v5ysth57TR {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #323d4e;
}
.cid-v5ysth57TR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5ysth57TR .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-v5ysth57TR .container {
    padding: 0 16px;
  }
}
.cid-v5ysth57TR .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v5ysth57TR .card {
    margin-bottom: 40px;
  }
}
.cid-v5ysth57TR .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v5ysth57TR .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-v5ysth57TR .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-v5ysth57TR .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v5ysth57TR .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v5ysth57TR .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-v5ysth57TR .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v5ysth57TR .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-v5ysth57TR .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-v5ysth57TR .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-v5ysth57TR .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v5ysth57TR .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-v5ysth57TR .mbr-section-title {
  color: #ffffff;
}
.cid-v5ysth57TR .copyright {
  color: #ffffff;
}
.cid-v5ysth57TR .mbr-card-title {
  color: #47abbf;
}
.cid-v5ysth57TR .list {
  color: #ffffff;
}
.cid-v5ysthjaIw {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-v5ysthjaIw .mbr-section-subtitle {
  color: #767676;
}
.cid-v5ysthjaIw .mbr-section-title {
  color: #323d4e;
}
.cid-v5ysthjaIw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5ysthjaIw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
