body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'dm_sans_regular';
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.48rem;
}
.display-2 {
  font-family: 'dm_sans_regular';
  font-size: 2.5rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'dm_sans_regular';
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.76rem;
}
.display-5 {
  font-family: 'dm_sans_regular';
  font-size: 2rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-7 {
  font-family: 'dm_sans_regular';
  font-size: 1.2rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.24rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.96rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 8px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 8px;
}
.bg-primary {
  background-color: #00488c !important;
}
.bg-success {
  background-color: #97c76b !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #808080 !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary {
  border: 0px!important;
}
.btn-primary,
.btn-primary:active {
  background-color: #00488c !important;
  border-color: #00488c !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #002140 !important;
  border-color: #002140 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #002140 !important;
  border-color: #002140 !important;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #00498d !important;
  box-shadow: none!important;
}
.btn-secondary {
  border: 0px!important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #00498d !important;
  border-color: #00498d !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #002141 !important;
  border-color: #002141 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #002141 !important;
  border-color: #002141 !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #00498d !important;
  box-shadow: none!important;
}
.btn-info {
  border: 0px!important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info:hover,
.btn-info:focus {
  background-color: #00498d !important;
  box-shadow: none!important;
}
.btn-success {
  border: 0px!important;
}
.btn-success,
.btn-success:active {
  background-color: #97c76b !important;
  border-color: #97c76b !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #71a63f !important;
  border-color: #71a63f !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #71a63f !important;
  border-color: #71a63f !important;
}
.btn-success:hover,
.btn-success:focus {
  background-color: #00498d !important;
  box-shadow: none!important;
}
.btn-warning {
  border: 0px!important;
}
.btn-warning,
.btn-warning:active {
  background-color: #808080 !important;
  border-color: #808080 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #5a5a5a !important;
  border-color: #5a5a5a !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #5a5a5a !important;
  border-color: #5a5a5a !important;
}
.btn-warning:hover,
.btn-warning:focus {
  background-color: #00498d !important;
  box-shadow: none!important;
}
.btn-danger {
  border: 0px!important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger:hover,
.btn-danger:focus {
  background-color: #00498d !important;
  box-shadow: none!important;
}
.btn-white {
  border: 0px!important;
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  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:hover,
.btn-white:focus {
  background-color: #00498d !important;
  box-shadow: none!important;
}
.btn-black {
  border: 0px!important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  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-black:hover,
.btn-black:focus {
  background-color: #00498d !important;
  box-shadow: none!important;
}
.btn-primary-outline {
  border: 0px!important;
  background-color: white!important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #00488c;
  color: #00488c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #00488c;
  border-color: #00488c;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #00488c !important;
  border-color: #00488c !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus {
  background-color: white!important;
  color: #00488c !important;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.2);
}
.btn-secondary-outline {
  border: 0px!important;
  background-color: white!important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #00498d;
  color: #00498d;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #00498d;
  border-color: #00498d;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #00498d !important;
  border-color: #00498d !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  background-color: white!important;
  color: #00488c !important;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.2);
}
.btn-info-outline {
  border: 0px!important;
  background-color: white!important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #82786e;
  color: #82786e;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus {
  background-color: white!important;
  color: #00488c !important;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.2);
}
.btn-success-outline {
  border: 0px!important;
  background-color: white!important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #97c76b;
  color: #97c76b;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #97c76b;
  border-color: #97c76b;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #97c76b !important;
  border-color: #97c76b !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus {
  background-color: white!important;
  color: #00488c !important;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.2);
}
.btn-warning-outline {
  border: 0px!important;
  background-color: white!important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #808080;
  color: #808080;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #808080;
  border-color: #808080;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #808080 !important;
  border-color: #808080 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus {
  background-color: white!important;
  color: #00488c !important;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.2);
}
.btn-danger-outline {
  border: 0px!important;
  background-color: white!important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #b1a374;
  color: #b1a374;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus {
  background-color: white!important;
  color: #00488c !important;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.2);
}
.btn-black-outline {
  border: 0px!important;
  background-color: white!important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  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-black-outline:hover,
.btn-black-outline:focus {
  background-color: white!important;
  color: #00488c !important;
  box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.2);
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #00488c !important;
}
.text-secondary {
  color: #00498d !important;
}
.text-success {
  color: #97c76b !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #808080 !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #007cf2 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #007ef3 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #cbe3b5 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #b2aba4 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #b3b3b3 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #d6ceb5 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #808080;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-gallery-filter li.active .btn {
  background-color: #00488c;
  border-color: #00488c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #00488c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #0d89ff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #d8eac8;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #c0c0c0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'dm_sans_regular';
  font-size: 1.2rem;
  line-height: 1.4;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #00488c;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #00488c;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #00488c;
  border-bottom-color: #00488c;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #00488c !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #00498d !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2300488c' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sJQBsOzjs2 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-sJQBsOzjs2 .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-sJQBsOzjs2 .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-sJQBsOzjs2 .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-sJQBsOzjs2 .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-sJQBsOzjs2 .navbar.opened {
  transition: all 0.3s;
}
.cid-sJQBsOzjs2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sJQBsOzjs2 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sJQBsOzjs2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sJQBsOzjs2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sJQBsOzjs2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-sJQBsOzjs2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sJQBsOzjs2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sJQBsOzjs2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sJQBsOzjs2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sJQBsOzjs2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sJQBsOzjs2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sJQBsOzjs2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sJQBsOzjs2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sJQBsOzjs2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sJQBsOzjs2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sJQBsOzjs2 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sJQBsOzjs2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sJQBsOzjs2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sJQBsOzjs2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sJQBsOzjs2 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sJQBsOzjs2 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sJQBsOzjs2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sJQBsOzjs2 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sJQBsOzjs2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sJQBsOzjs2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sJQBsOzjs2 .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-sJQBsOzjs2 .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-sJQBsOzjs2 .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-sJQBsOzjs2 .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-sJQBsOzjs2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-sJQBsOzjs2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sJQBsOzjs2 .mbr-iconfont {
  color: #97c76b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sJQBsOzjs2 .navbar-caption {
  padding-right: 4rem;
}
.cid-sJQBsOzjs2 .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-sJQBsOzjs2 .dropdown-menu,
.cid-sJQBsOzjs2 .navbar.opened {
  background: #ffffff !important;
}
.cid-sJQBsOzjs2 .nav-item:focus,
.cid-sJQBsOzjs2 .nav-link:focus {
  outline: none;
}
.cid-sJQBsOzjs2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sJQBsOzjs2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sJQBsOzjs2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sJQBsOzjs2 .dropdown .dropdown-menu .dropdown-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-sJQBsOzjs2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sJQBsOzjs2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sJQBsOzjs2 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sJQBsOzjs2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sJQBsOzjs2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sJQBsOzjs2 .dropdown-item.active,
.cid-sJQBsOzjs2 .dropdown-item:active {
  background-color: transparent;
}
.cid-sJQBsOzjs2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sJQBsOzjs2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sJQBsOzjs2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sJQBsOzjs2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sJQBsOzjs2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sJQBsOzjs2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sJQBsOzjs2 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sJQBsOzjs2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sJQBsOzjs2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sJQBsOzjs2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00498d;
}
.cid-sJQBsOzjs2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sJQBsOzjs2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sJQBsOzjs2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sJQBsOzjs2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sJQBsOzjs2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sJQBsOzjs2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sJQBsOzjs2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sJQBsOzjs2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sJQBsOzjs2 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sJQBsOzjs2 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sJQBsOzjs2 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sJQBsOzjs2 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sJQBsOzjs2 .navbar {
    height: 77px;
  }
  .cid-sJQBsOzjs2 .navbar.opened {
    height: auto;
  }
  .cid-sJQBsOzjs2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsOaAfYBC1 {
  background-color: #ffffff;
  display: block;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-tsOaAfYBC1 .carousel {
  width: 100%;
}
.cid-tsOaAfYBC1 .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-tsOaAfYBC1 .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-tsOaAfYBC1 .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tsOaAfYBC1 .carousel-caption {
    right: 5%;
    left: 5%;
  }
}
.cid-tsOaAfYBC1 .mbr-section-title {
  letter-spacing: 0px;
  margin-bottom: 25px;
}
@media (min-width: 1400px) {
  .cid-tsOaAfYBC1 .mbr-section-title.display-1 {
    font-size: 90px;
    line-height: 160px;
  }
}
.cid-tsOaAfYBC1 .mbr-section-btn {
  margin-top: 42px;
}
.cid-tsOaAfYBC1 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tsOaAfYBC1 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tsOaAfYBC1 .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-tsOaAfYBC1 .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-tsOaAfYBC1 .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tsOaAfYBC1 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tsOaAfYBC1 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tsOaAfYBC1 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tsOaAfYBC1 .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: transparent;
  border: 1px solid #fef2f2;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-tsOaAfYBC1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
  color: #fef2f2 !important;
}
.cid-tsOaAfYBC1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
  color: #fef2f2 !important;
}
.cid-tsOaAfYBC1 .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-tsOaAfYBC1 .carousel-control {
    display: none !important;
  }
}
.cid-tsOaAfYBC1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-tsOaAfYBC1 .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 15px;
  background-color: #fef2f2;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-tsOaAfYBC1 .carousel-indicators li.active,
.cid-tsOaAfYBC1 .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-tsOaAfYBC1 .carousel-indicators li::after,
.cid-tsOaAfYBC1 .carousel-indicators li::before {
  content: none;
}
.cid-tsOaAfYBC1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tsOaAfYBC1 .carousel-indicators {
    display: none !important;
  }
}
.cid-tsOaAfYBC1 .mbr-section-text,
.cid-tsOaAfYBC1 .mbr-section-btn {
  text-align: center;
}
.cid-sQUqUPfVU0 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sQUqUPfVU0 .mbr-section-subtitle {
  color: #36187d;
}
.cid-sQUqUPfVU0 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-sQUqsMm8Mm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sQUqsMm8Mm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sQUqsMm8Mm .row {
  flex-direction: row-reverse;
}
.cid-sQUqsMm8Mm img {
  width: 100%;
}
.cid-sQUqsMm8Mm .mbr-description {
  color: #555555;
  text-align: left;
}
.cid-uP8CqzzgJg {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP8CqzzgJg .link-wrapper {
  width: 100%;
}
.cid-uP8CqzzgJg .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uP8CqzzgJg .container {
    padding: 0 1rem;
  }
}
.cid-uP8CqzzgJg .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-uP8CqzzgJg .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uP8CqzzgJg .row {
    justify-content: flex-start;
  }
}
.cid-uP8CqzzgJg .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uP8CqzzgJg .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-uP8CqzzgJg .img-wrapper {
  position: relative;
}
.cid-uP8CqzzgJg .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-uP8CqzzgJg .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-uP8CqzzgJg .card-title {
  color: #000000;
}
.cid-uP8CqzzgJg .card-title a {
  position: relative;
  background: none!important;
}
.cid-uP8CqzzgJg .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-uP8CqzzgJg .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-uP8CqzzgJg .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-uP8CqzzgJg .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-uP8CqzzgJg .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-uP8CqzzgJg .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-uP8CqzzgJg .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-uP8CqzzgJg .card-subtitle {
  color: #818181;
}
.cid-tsxLthIuOo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tsxLthIuOo .mbr-section-subtitle {
  color: #36187d;
}
.cid-tsxLthIuOo .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tsxLzwNCQE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsxLzwNCQE .mbr-section-subtitle {
  color: #36187d;
}
.cid-tsxLzwNCQE .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-tsxLsqoVgm {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-tsxLsqoVgm .container {
  max-width: 1400px;
}
.cid-tsxLsqoVgm img,
.cid-tsxLsqoVgm .item-img {
  width: 100%;
  position: relative;
}
.cid-tsxLsqoVgm img:before,
.cid-tsxLsqoVgm .item-img:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #98adc9;
  position: absolute;
  z-index: 10;
}
.cid-tsxLsqoVgm .item:focus,
.cid-tsxLsqoVgm span:focus {
  outline: none;
}
.cid-tsxLsqoVgm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tsxLsqoVgm .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tsxLsqoVgm .item {
  padding: 0;
  margin: 0;
}
.cid-tsxLsqoVgm .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tsxLsqoVgm .item-content {
  padding-top: 1.5rem;
}
.cid-tsxLsqoVgm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsxLsqoVgm .mbr-section-title {
  color: #232323;
}
.cid-tsxLsqoVgm .mbr-text,
.cid-tsxLsqoVgm .mbr-section-btn {
  color: #818181;
}
.cid-tsxLsqoVgm .item-title {
  text-align: center;
  color: #98adc9;
}
.cid-sJQ3YgtsOo {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.cid-sJQ3YgtsOo .main {
  height: 520px;
}
.cid-sJQ3YgtsOo .map {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.cid-sJQ3YgtsOo .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-sJQ3YgtsOo .map {
    height: auto;
  }
}
.cid-sJQ3YgtsOo .wrap__content {
  display: flex;
  padding: 0;
}
.cid-sJQ3YgtsOo .block__content1,
.cid-sJQ3YgtsOo .block__content2 {
  padding: 90px 15px 90px 70px;
}
.cid-sJQ3YgtsOo .block__content1 {
  background-color: #999999;
}
.cid-sJQ3YgtsOo .block__content2 {
  background-color: #00498d;
}
.cid-sJQ3YgtsOo .border__radius {
  margin-bottom: 20px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  max-width: 46px;
  width: 100%;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sJQ3YgtsOo .content__title,
.cid-sJQ3YgtsOo .title__address {
  margin-bottom: 20px;
}
.cid-sJQ3YgtsOo .content__span,
.cid-sJQ3YgtsOo .content__span2 {
  color: #6a696c;
}
.cid-sJQ3YgtsOo .content__phone {
  margin-bottom: 25px;
}
.cid-sJQ3YgtsOo .google-map {
  flex: 1;
  display: flex;
  position: relative;
}
@media (max-width: 991px) {
  .cid-sJQ3YgtsOo .main {
    height: auto;
  }
  .cid-sJQ3YgtsOo .block__content1,
  .cid-sJQ3YgtsOo .block__content2 {
    padding: 70px 15px 70px 25px;
  }
}
@media (max-width: 767px) {
  .cid-sJQ3YgtsOo .block__content1 {
    padding: 50px 15px 0;
    text-align: left;
  }
  .cid-sJQ3YgtsOo .block__content2 {
    padding: 50px 15px 50px;
    text-align: left;
  }
  .cid-sJQ3YgtsOo .icons {
    justify-content: flex-start !important;
  }
}
@media (max-width: 575px) {
  .cid-sJQ3YgtsOo .wrap__content {
    flex-direction: column;
  }
}
.cid-sJQ3YgtsOo .content__span {
  color: #ffffff;
}
.cid-sJQ3YgtsOo .content__span2 {
  color: #ffffff;
}
.cid-sJQ3YgtsOo .text__address {
  color: #ffffff;
}
.cid-sJQ3YgtsOo .title__address {
  color: #ffffff;
}
.cid-uP8z87S8dK {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP8z87S8dK .mbr-section-subtitle {
  color: #36187d;
}
.cid-uP8z87S8dK .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-uP8zjI5UT8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP8zjI5UT8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP8zjI5UT8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uP8zjI5UT8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uP8zjI5UT8 .row {
  flex-direction: row-reverse;
}
.cid-uP8zjI5UT8 img {
  width: 100%;
}
.cid-sJVBbx79oc {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sJVBbx79oc .logo__image {
  width: 100px;
  object-fit: cover;
}
.cid-sJVBbx79oc .brand__text {
  margin-bottom: 0;
}
.cid-sJVBbx79oc .brand__text a {
  font-weight: 700;
}
.cid-sJVBbx79oc a:hover {
  color: #82786e !important;
}
.cid-sJVBbx79oc .mbr-text,
.cid-sJVBbx79oc .privacy {
  margin-bottom: 0;
  color: #919dab;
}
.cid-sJVBbx79oc .menu {
  margin: 10px 0;
}
.cid-sJVBbx79oc .foot__menu {
  margin: 0;
  padding: 0;
}
.cid-sJVBbx79oc .menu__items {
  margin-right: 30px;
  display: inline-block;
  transition: all .25s;
  margin-bottom: 0;
}
.cid-sJVBbx79oc .menu__items:last-child {
  margin-right: 0;
}
.cid-sJVBbx79oc .divider {
  background-color: #cccccc;
  opacity: .5;
  margin: 30px 0 40px;
  height: 2px;
}
.cid-sJVBbx79oc .social {
  margin-top: 10px;
}
.cid-sJVBbx79oc .social a {
  margin: 0 15px;
}
.cid-sJVBbx79oc .social a:last-child {
  margin-right: 0;
}
.cid-sJVBbx79oc .social a:first-child {
  margin-left: 0;
}
.cid-sJVBbx79oc .mbr-iconfont {
  font-size: 18px;
  transition: all .25s ease;
  transition-duration: 0s;
}
.cid-sJVBbx79oc .privacy {
  color: #000000;
}
.cid-sJVBbx79oc .mbr-text {
  color: #999999;
}
.cid-sLa0lboTVG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-sLa0lboTVG .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-sLa0lboTVG .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-sLa0lboTVG .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-sLa0lboTVG .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-sLa0lboTVG .navbar.opened {
  transition: all 0.3s;
}
.cid-sLa0lboTVG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sLa0lboTVG .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sLa0lboTVG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sLa0lboTVG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sLa0lboTVG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-sLa0lboTVG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sLa0lboTVG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sLa0lboTVG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sLa0lboTVG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sLa0lboTVG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sLa0lboTVG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sLa0lboTVG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sLa0lboTVG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sLa0lboTVG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sLa0lboTVG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sLa0lboTVG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sLa0lboTVG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sLa0lboTVG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sLa0lboTVG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sLa0lboTVG .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sLa0lboTVG .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sLa0lboTVG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sLa0lboTVG .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sLa0lboTVG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sLa0lboTVG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sLa0lboTVG .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-sLa0lboTVG .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-sLa0lboTVG .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-sLa0lboTVG .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-sLa0lboTVG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-sLa0lboTVG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sLa0lboTVG .mbr-iconfont {
  color: #97c76b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sLa0lboTVG .navbar-caption {
  padding-right: 4rem;
}
.cid-sLa0lboTVG .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-sLa0lboTVG .dropdown-menu,
.cid-sLa0lboTVG .navbar.opened {
  background: #ffffff !important;
}
.cid-sLa0lboTVG .nav-item:focus,
.cid-sLa0lboTVG .nav-link:focus {
  outline: none;
}
.cid-sLa0lboTVG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sLa0lboTVG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLa0lboTVG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLa0lboTVG .dropdown .dropdown-menu .dropdown-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-sLa0lboTVG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLa0lboTVG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLa0lboTVG .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sLa0lboTVG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sLa0lboTVG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sLa0lboTVG .dropdown-item.active,
.cid-sLa0lboTVG .dropdown-item:active {
  background-color: transparent;
}
.cid-sLa0lboTVG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sLa0lboTVG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sLa0lboTVG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sLa0lboTVG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sLa0lboTVG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sLa0lboTVG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLa0lboTVG ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sLa0lboTVG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sLa0lboTVG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLa0lboTVG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00498d;
}
.cid-sLa0lboTVG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLa0lboTVG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLa0lboTVG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLa0lboTVG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLa0lboTVG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLa0lboTVG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLa0lboTVG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLa0lboTVG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLa0lboTVG .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sLa0lboTVG a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sLa0lboTVG .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sLa0lboTVG .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sLa0lboTVG .navbar {
    height: 77px;
  }
  .cid-sLa0lboTVG .navbar.opened {
    height: auto;
  }
  .cid-sLa0lboTVG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sLa0lc7gt9 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #00488c;
}
.cid-sLa0lc7gt9 .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #0095ff;
  margin-bottom: 2rem;
}
.cid-sLa0ld2g8m {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sLa0ld2g8m .mbr-section-subtitle {
  color: #36187d;
}
.cid-sLa0ld2g8m .mbr-text {
  color: #555555;
  text-align: left;
}
.cid-sLa0ldfp82 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sLa0ldfp82 .link-wrapper {
  width: 100%;
}
.cid-sLa0ldfp82 .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-sLa0ldfp82 .container {
    padding: 0 1rem;
  }
}
.cid-sLa0ldfp82 .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-sLa0ldfp82 .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sLa0ldfp82 .row {
    justify-content: flex-start;
  }
}
.cid-sLa0ldfp82 .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-sLa0ldfp82 .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-sLa0ldfp82 .img-wrapper {
  position: relative;
}
.cid-sLa0ldfp82 .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-sLa0ldfp82 .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-sLa0ldfp82 .card-title {
  color: #000000;
}
.cid-sLa0ldfp82 .card-title a {
  position: relative;
  background: none!important;
}
.cid-sLa0ldfp82 .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-sLa0ldfp82 .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-sLa0ldfp82 .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-sLa0ldfp82 .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-sLa0ldfp82 .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-sLa0ldfp82 .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-sLa0ldfp82 .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-sLa0ldfp82 .card-subtitle {
  color: #818181;
}
.cid-sLa1c2bfm5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sLa1c2bfm5 .mbr-section-subtitle {
  color: #36187d;
}
.cid-sLa1c2bfm5 .mbr-text {
  color: #555555;
  text-align: left;
}
.cid-uP8HoDQGjP {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP8HoDQGjP .mbr-section-subtitle {
  color: #36187d;
}
.cid-uP8HoDQGjP .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-uP8Hp7klX3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP8Hp7klX3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP8Hp7klX3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uP8Hp7klX3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uP8Hp7klX3 .row {
  flex-direction: row-reverse;
}
.cid-uP8Hp7klX3 img {
  width: 100%;
}
.cid-sLa0liAqC5 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sLa0liAqC5 .logo__image {
  width: 100px;
  object-fit: cover;
}
.cid-sLa0liAqC5 .brand__text {
  margin-bottom: 0;
}
.cid-sLa0liAqC5 .brand__text a {
  font-weight: 700;
}
.cid-sLa0liAqC5 a:hover {
  color: #82786e !important;
}
.cid-sLa0liAqC5 .mbr-text,
.cid-sLa0liAqC5 .privacy {
  margin-bottom: 0;
  color: #919dab;
}
.cid-sLa0liAqC5 .menu {
  margin: 10px 0;
}
.cid-sLa0liAqC5 .foot__menu {
  margin: 0;
  padding: 0;
}
.cid-sLa0liAqC5 .menu__items {
  margin-right: 30px;
  display: inline-block;
  transition: all .25s;
  margin-bottom: 0;
}
.cid-sLa0liAqC5 .menu__items:last-child {
  margin-right: 0;
}
.cid-sLa0liAqC5 .divider {
  background-color: #cccccc;
  opacity: .5;
  margin: 30px 0 40px;
  height: 2px;
}
.cid-sLa0liAqC5 .social {
  margin-top: 10px;
}
.cid-sLa0liAqC5 .social a {
  margin: 0 15px;
}
.cid-sLa0liAqC5 .social a:last-child {
  margin-right: 0;
}
.cid-sLa0liAqC5 .social a:first-child {
  margin-left: 0;
}
.cid-sLa0liAqC5 .mbr-iconfont {
  font-size: 18px;
  transition: all .25s ease;
  transition-duration: 0s;
}
.cid-sLa0liAqC5 .privacy {
  color: #000000;
}
.cid-sLa0liAqC5 .mbr-text {
  color: #999999;
}
.cid-sMWgRVTUhU .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-sMWgRVTUhU .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-sMWgRVTUhU .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-sMWgRVTUhU .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-sMWgRVTUhU .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-sMWgRVTUhU .navbar.opened {
  transition: all 0.3s;
}
.cid-sMWgRVTUhU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sMWgRVTUhU .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sMWgRVTUhU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sMWgRVTUhU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sMWgRVTUhU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-sMWgRVTUhU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sMWgRVTUhU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sMWgRVTUhU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sMWgRVTUhU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sMWgRVTUhU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sMWgRVTUhU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sMWgRVTUhU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sMWgRVTUhU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sMWgRVTUhU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sMWgRVTUhU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sMWgRVTUhU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sMWgRVTUhU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sMWgRVTUhU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sMWgRVTUhU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sMWgRVTUhU .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sMWgRVTUhU .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sMWgRVTUhU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sMWgRVTUhU .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sMWgRVTUhU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sMWgRVTUhU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sMWgRVTUhU .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-sMWgRVTUhU .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-sMWgRVTUhU .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-sMWgRVTUhU .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-sMWgRVTUhU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-sMWgRVTUhU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sMWgRVTUhU .mbr-iconfont {
  color: #97c76b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sMWgRVTUhU .navbar-caption {
  padding-right: 4rem;
}
.cid-sMWgRVTUhU .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-sMWgRVTUhU .dropdown-menu,
.cid-sMWgRVTUhU .navbar.opened {
  background: #ffffff !important;
}
.cid-sMWgRVTUhU .nav-item:focus,
.cid-sMWgRVTUhU .nav-link:focus {
  outline: none;
}
.cid-sMWgRVTUhU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sMWgRVTUhU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sMWgRVTUhU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sMWgRVTUhU .dropdown .dropdown-menu .dropdown-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-sMWgRVTUhU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sMWgRVTUhU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sMWgRVTUhU .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sMWgRVTUhU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sMWgRVTUhU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sMWgRVTUhU .dropdown-item.active,
.cid-sMWgRVTUhU .dropdown-item:active {
  background-color: transparent;
}
.cid-sMWgRVTUhU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sMWgRVTUhU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sMWgRVTUhU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sMWgRVTUhU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sMWgRVTUhU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sMWgRVTUhU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sMWgRVTUhU ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sMWgRVTUhU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sMWgRVTUhU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sMWgRVTUhU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00498d;
}
.cid-sMWgRVTUhU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sMWgRVTUhU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMWgRVTUhU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMWgRVTUhU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sMWgRVTUhU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMWgRVTUhU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sMWgRVTUhU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sMWgRVTUhU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMWgRVTUhU .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sMWgRVTUhU a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sMWgRVTUhU .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sMWgRVTUhU .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sMWgRVTUhU .navbar {
    height: 77px;
  }
  .cid-sMWgRVTUhU .navbar.opened {
    height: auto;
  }
  .cid-sMWgRVTUhU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sMWgRWv4hj {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #00488c;
}
.cid-sMWgRWv4hj .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #0095ff;
  margin-bottom: 2rem;
}
.cid-sMWgRWWM79 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sMWgRWWM79 .mbr-section-subtitle {
  color: #36187d;
}
.cid-sMWgRWWM79 .mbr-text {
  color: #555555;
  text-align: left;
}
.cid-uP8Hv3frbK {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP8Hv3frbK .mbr-section-subtitle {
  color: #36187d;
}
.cid-uP8Hv3frbK .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-uP8HvNq5tv {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP8HvNq5tv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP8HvNq5tv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uP8HvNq5tv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uP8HvNq5tv .row {
  flex-direction: row-reverse;
}
.cid-uP8HvNq5tv img {
  width: 100%;
}
.cid-sMWgRXEJBp {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sMWgRXEJBp .logo__image {
  width: 100px;
  object-fit: cover;
}
.cid-sMWgRXEJBp .brand__text {
  margin-bottom: 0;
}
.cid-sMWgRXEJBp .brand__text a {
  font-weight: 700;
}
.cid-sMWgRXEJBp a:hover {
  color: #82786e !important;
}
.cid-sMWgRXEJBp .mbr-text,
.cid-sMWgRXEJBp .privacy {
  margin-bottom: 0;
  color: #919dab;
}
.cid-sMWgRXEJBp .menu {
  margin: 10px 0;
}
.cid-sMWgRXEJBp .foot__menu {
  margin: 0;
  padding: 0;
}
.cid-sMWgRXEJBp .menu__items {
  margin-right: 30px;
  display: inline-block;
  transition: all .25s;
  margin-bottom: 0;
}
.cid-sMWgRXEJBp .menu__items:last-child {
  margin-right: 0;
}
.cid-sMWgRXEJBp .divider {
  background-color: #cccccc;
  opacity: .5;
  margin: 30px 0 40px;
  height: 2px;
}
.cid-sMWgRXEJBp .social {
  margin-top: 10px;
}
.cid-sMWgRXEJBp .social a {
  margin: 0 15px;
}
.cid-sMWgRXEJBp .social a:last-child {
  margin-right: 0;
}
.cid-sMWgRXEJBp .social a:first-child {
  margin-left: 0;
}
.cid-sMWgRXEJBp .mbr-iconfont {
  font-size: 18px;
  transition: all .25s ease;
  transition-duration: 0s;
}
.cid-sMWgRXEJBp .privacy {
  color: #000000;
}
.cid-sMWgRXEJBp .mbr-text {
  color: #999999;
}
.cid-sL9wdBoJlf .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-sL9wdBoJlf .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-sL9wdBoJlf .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-sL9wdBoJlf .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-sL9wdBoJlf .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-sL9wdBoJlf .navbar.opened {
  transition: all 0.3s;
}
.cid-sL9wdBoJlf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sL9wdBoJlf .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sL9wdBoJlf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sL9wdBoJlf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sL9wdBoJlf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-sL9wdBoJlf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sL9wdBoJlf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sL9wdBoJlf .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sL9wdBoJlf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sL9wdBoJlf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sL9wdBoJlf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sL9wdBoJlf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sL9wdBoJlf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sL9wdBoJlf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sL9wdBoJlf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sL9wdBoJlf .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sL9wdBoJlf .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sL9wdBoJlf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sL9wdBoJlf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sL9wdBoJlf .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sL9wdBoJlf .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sL9wdBoJlf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sL9wdBoJlf .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sL9wdBoJlf .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sL9wdBoJlf .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sL9wdBoJlf .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-sL9wdBoJlf .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-sL9wdBoJlf .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-sL9wdBoJlf .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-sL9wdBoJlf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-sL9wdBoJlf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sL9wdBoJlf .mbr-iconfont {
  color: #97c76b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sL9wdBoJlf .navbar-caption {
  padding-right: 4rem;
}
.cid-sL9wdBoJlf .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-sL9wdBoJlf .dropdown-menu,
.cid-sL9wdBoJlf .navbar.opened {
  background: #ffffff !important;
}
.cid-sL9wdBoJlf .nav-item:focus,
.cid-sL9wdBoJlf .nav-link:focus {
  outline: none;
}
.cid-sL9wdBoJlf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sL9wdBoJlf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sL9wdBoJlf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sL9wdBoJlf .dropdown .dropdown-menu .dropdown-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-sL9wdBoJlf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sL9wdBoJlf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sL9wdBoJlf .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sL9wdBoJlf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sL9wdBoJlf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sL9wdBoJlf .dropdown-item.active,
.cid-sL9wdBoJlf .dropdown-item:active {
  background-color: transparent;
}
.cid-sL9wdBoJlf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sL9wdBoJlf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sL9wdBoJlf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sL9wdBoJlf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sL9wdBoJlf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sL9wdBoJlf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sL9wdBoJlf ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sL9wdBoJlf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sL9wdBoJlf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sL9wdBoJlf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00498d;
}
.cid-sL9wdBoJlf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sL9wdBoJlf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL9wdBoJlf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL9wdBoJlf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sL9wdBoJlf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL9wdBoJlf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sL9wdBoJlf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sL9wdBoJlf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL9wdBoJlf .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sL9wdBoJlf a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sL9wdBoJlf .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sL9wdBoJlf .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sL9wdBoJlf .navbar {
    height: 77px;
  }
  .cid-sL9wdBoJlf .navbar.opened {
    height: auto;
  }
  .cid-sL9wdBoJlf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sL9wdC7due {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/head-generaluebernahme3.jpg");
}
.cid-sL9wdC7due .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #0095ff;
  margin-bottom: 2rem;
}
.cid-sL9It86N41 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sL9It86N41 .mbr-section-subtitle {
  color: #36187d;
}
.cid-sL9It86N41 .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-sL9JxIk6gI {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sL9JxIk6gI .link-wrapper {
  width: 100%;
}
.cid-sL9JxIk6gI .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-sL9JxIk6gI .container {
    padding: 0 1rem;
  }
}
.cid-sL9JxIk6gI .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-sL9JxIk6gI .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sL9JxIk6gI .row {
    justify-content: flex-start;
  }
}
.cid-sL9JxIk6gI .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-sL9JxIk6gI .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-sL9JxIk6gI .img-wrapper {
  position: relative;
}
.cid-sL9JxIk6gI .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-sL9JxIk6gI .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-sL9JxIk6gI .card-title {
  color: #000000;
}
.cid-sL9JxIk6gI .card-title a {
  position: relative;
  background: none!important;
}
.cid-sL9JxIk6gI .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-sL9JxIk6gI .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-sL9JxIk6gI .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-sL9JxIk6gI .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-sL9JxIk6gI .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-sL9JxIk6gI .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-sL9JxIk6gI .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-sL9JxIk6gI .card-subtitle {
  color: #818181;
}
.cid-uWoNUtrmbD {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uWoNUtrmbD .mbr-section-subtitle {
  color: #36187d;
}
.cid-uWoNUtrmbD .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-uWoNVPXOqv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uWoNVPXOqv img {
  width: 100%;
  object-fit: cover;
  padding: top;
}
.cid-uWoNVPXOqv .quote {
  color: #333333;
  font-weight: 700;
}
.cid-uWoNVPXOqv .img-card {
  justify-content: top;
}
.cid-uWoNVPXOqv .img-col {
  padding: top;
}
.cid-uWoNVPXOqv .card-box {
  padding: top;
}
@media (max-width: 767px) {
  .cid-uWoNVPXOqv .wrapper {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uWoNVPXOqv .wrapper {
    padding: 20rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uWoNVPXOqv .wrapper {
    padding: 0rem 0rem 0rem 4rem;
  }
}
.cid-uWoNVPXOqv .card-title,
.cid-uWoNVPXOqv .card-box {
  text-align: left;
}
.cid-uWoNVPXOqv .mbr-text,
.cid-uWoNVPXOqv .mbr-section-btn {
  text-align: left;
  color: #555555;
}
.cid-uWoNYsHYHF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWoNYsHYHF .item {
  padding-bottom: 2rem;
}
.cid-uWoNYsHYHF .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uWoNYsHYHF .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uWoNYsHYHF .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uWoNYsHYHF .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uWoNYsHYHF .carousel-control,
.cid-uWoNYsHYHF .close {
  background: #1b1b1b;
}
.cid-uWoNYsHYHF .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uWoNYsHYHF .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uWoNYsHYHF .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uWoNYsHYHF .carousel-control-next span {
  margin-left: 5px;
}
.cid-uWoNYsHYHF .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uWoNYsHYHF .close::before {
  content: '\e91a';
}
.cid-uWoNYsHYHF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uWoNYsHYHF .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uWoNYsHYHF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWoNYsHYHF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uWoNYsHYHF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uWoNYsHYHF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uWoNYsHYHF .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uWoNYsHYHF .carousel-indicators li.active,
.cid-uWoNYsHYHF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uWoNYsHYHF .carousel-indicators li::after,
.cid-uWoNYsHYHF .carousel-indicators li::before {
  content: none;
}
.cid-uWoNYsHYHF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uWoNYsHYHF .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uWoNYsHYHF .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uWoNYsHYHF .carousel-indicators {
    display: none;
  }
}
.cid-uWoNYsHYHF .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uWoNYsHYHF .carousel-inner > .active {
  display: block;
}
.cid-uWoNYsHYHF .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uWoNYsHYHF .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uWoNYsHYHF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uWoNYsHYHF .carousel-control,
  .cid-uWoNYsHYHF .carousel-indicators,
  .cid-uWoNYsHYHF .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uWoNYsHYHF .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uWoNYsHYHF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uWoNYsHYHF .carousel-indicators .active,
.cid-uWoNYsHYHF .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uWoNYsHYHF .carousel-indicators .active {
  background: #fff;
}
.cid-uWoNYsHYHF .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uWoNYsHYHF .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uWoNYsHYHF .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uWoNYsHYHF .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uWoNYsHYHF .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uWoNYsHYHF .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uWoNYsHYHF .carousel {
  width: 100%;
}
.cid-uWoNYsHYHF .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uWoNYsHYHF .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uWoNYsHYHF .modal.fade .modal-dialog,
.cid-uWoNYsHYHF .modal.in .modal-dialog {
  transform: none;
}
.cid-uWoNYsHYHF .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uWoNYsHYHF H6 {
  text-align: center;
}
.cid-uWoNShTXJz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWoNShTXJz .link-wrapper {
  width: 100%;
}
.cid-uWoNShTXJz .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uWoNShTXJz .container {
    padding: 0 1rem;
  }
}
.cid-uWoNShTXJz .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-uWoNShTXJz .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uWoNShTXJz .row {
    justify-content: flex-start;
  }
}
.cid-uWoNShTXJz .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uWoNShTXJz .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-uWoNShTXJz .img-wrapper {
  position: relative;
}
.cid-uWoNShTXJz .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-uWoNShTXJz .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-uWoNShTXJz .card-title {
  color: #000000;
}
.cid-uWoNShTXJz .card-title a {
  position: relative;
  background: none!important;
}
.cid-uWoNShTXJz .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-uWoNShTXJz .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-uWoNShTXJz .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-uWoNShTXJz .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-uWoNShTXJz .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-uWoNShTXJz .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-uWoNShTXJz .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-uWoNShTXJz .card-subtitle {
  color: #818181;
}
.cid-uTKY3mBDl5 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uTKY3mBDl5 .mbr-section-subtitle {
  color: #36187d;
}
.cid-uTKY3mBDl5 .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-uTKY4iED64 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uTKY4iED64 img {
  width: 100%;
  object-fit: cover;
  padding: top;
}
.cid-uTKY4iED64 .quote {
  color: #333333;
  font-weight: 700;
}
.cid-uTKY4iED64 .img-card {
  justify-content: top;
}
.cid-uTKY4iED64 .img-col {
  padding: top;
}
.cid-uTKY4iED64 .card-box {
  padding: top;
}
@media (max-width: 767px) {
  .cid-uTKY4iED64 .wrapper {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uTKY4iED64 .wrapper {
    padding: 20rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uTKY4iED64 .wrapper {
    padding: 0rem 0rem 0rem 4rem;
  }
}
.cid-uTKY4iED64 .card-title,
.cid-uTKY4iED64 .card-box {
  text-align: left;
}
.cid-uTKY4iED64 .mbr-text,
.cid-uTKY4iED64 .mbr-section-btn {
  text-align: left;
  color: #555555;
}
.cid-uTKY5XW22M {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uTKY5XW22M .item {
  padding-bottom: 2rem;
}
.cid-uTKY5XW22M .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uTKY5XW22M .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uTKY5XW22M .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uTKY5XW22M .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uTKY5XW22M .carousel-control,
.cid-uTKY5XW22M .close {
  background: #1b1b1b;
}
.cid-uTKY5XW22M .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uTKY5XW22M .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uTKY5XW22M .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uTKY5XW22M .carousel-control-next span {
  margin-left: 5px;
}
.cid-uTKY5XW22M .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uTKY5XW22M .close::before {
  content: '\e91a';
}
.cid-uTKY5XW22M .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uTKY5XW22M .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uTKY5XW22M .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uTKY5XW22M .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uTKY5XW22M .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uTKY5XW22M .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uTKY5XW22M .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uTKY5XW22M .carousel-indicators li.active,
.cid-uTKY5XW22M .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uTKY5XW22M .carousel-indicators li::after,
.cid-uTKY5XW22M .carousel-indicators li::before {
  content: none;
}
.cid-uTKY5XW22M .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uTKY5XW22M .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uTKY5XW22M .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uTKY5XW22M .carousel-indicators {
    display: none;
  }
}
.cid-uTKY5XW22M .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uTKY5XW22M .carousel-inner > .active {
  display: block;
}
.cid-uTKY5XW22M .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uTKY5XW22M .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uTKY5XW22M .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uTKY5XW22M .carousel-control,
  .cid-uTKY5XW22M .carousel-indicators,
  .cid-uTKY5XW22M .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uTKY5XW22M .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uTKY5XW22M .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uTKY5XW22M .carousel-indicators .active,
.cid-uTKY5XW22M .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uTKY5XW22M .carousel-indicators .active {
  background: #fff;
}
.cid-uTKY5XW22M .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uTKY5XW22M .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uTKY5XW22M .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uTKY5XW22M .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uTKY5XW22M .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uTKY5XW22M .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uTKY5XW22M .carousel {
  width: 100%;
}
.cid-uTKY5XW22M .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uTKY5XW22M .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uTKY5XW22M .modal.fade .modal-dialog,
.cid-uTKY5XW22M .modal.in .modal-dialog {
  transform: none;
}
.cid-uTKY5XW22M .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uTKY5XW22M H6 {
  text-align: center;
}
.cid-uTKYepgVuv {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uTKYepgVuv .link-wrapper {
  width: 100%;
}
.cid-uTKYepgVuv .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uTKYepgVuv .container {
    padding: 0 1rem;
  }
}
.cid-uTKYepgVuv .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-uTKYepgVuv .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uTKYepgVuv .row {
    justify-content: flex-start;
  }
}
.cid-uTKYepgVuv .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uTKYepgVuv .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-uTKYepgVuv .img-wrapper {
  position: relative;
}
.cid-uTKYepgVuv .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-uTKYepgVuv .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-uTKYepgVuv .card-title {
  color: #000000;
}
.cid-uTKYepgVuv .card-title a {
  position: relative;
  background: none!important;
}
.cid-uTKYepgVuv .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-uTKYepgVuv .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-uTKYepgVuv .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-uTKYepgVuv .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-uTKYepgVuv .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-uTKYepgVuv .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-uTKYepgVuv .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-uTKYepgVuv .card-subtitle {
  color: #818181;
}
.cid-sL9zzILV9B {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sL9zzILV9B .mbr-section-subtitle {
  color: #36187d;
}
.cid-sL9zzILV9B .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-sQZGJFCXVQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQZGJFCXVQ img {
  width: 100%;
  object-fit: cover;
  padding: top;
}
.cid-sQZGJFCXVQ .quote {
  color: #333333;
  font-weight: 700;
}
.cid-sQZGJFCXVQ .img-card {
  justify-content: top;
}
.cid-sQZGJFCXVQ .img-col {
  padding: top;
}
.cid-sQZGJFCXVQ .card-box {
  padding: top;
}
@media (max-width: 767px) {
  .cid-sQZGJFCXVQ .wrapper {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-sQZGJFCXVQ .wrapper {
    padding: 20rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sQZGJFCXVQ .wrapper {
    padding: 0rem 0rem 0rem 4rem;
  }
}
.cid-sQZGJFCXVQ .card-title,
.cid-sQZGJFCXVQ .card-box {
  text-align: left;
}
.cid-sQZGJFCXVQ .mbr-text,
.cid-sQZGJFCXVQ .mbr-section-btn {
  text-align: left;
  color: #555555;
}
.cid-sQZGKNvkBe {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQZGKNvkBe .mbr-section-subtitle {
  color: #36187d;
}
.cid-sQZGKNvkBe .mbr-text {
  color: #555555;
  text-align: left;
}
.cid-sQZINQ0NTa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQZINQ0NTa .item {
  padding-bottom: 2rem;
}
.cid-sQZINQ0NTa .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sQZINQ0NTa .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sQZINQ0NTa .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sQZINQ0NTa .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sQZINQ0NTa .carousel-control,
.cid-sQZINQ0NTa .close {
  background: #1b1b1b;
}
.cid-sQZINQ0NTa .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sQZINQ0NTa .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sQZINQ0NTa .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sQZINQ0NTa .carousel-control-next span {
  margin-left: 5px;
}
.cid-sQZINQ0NTa .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sQZINQ0NTa .close::before {
  content: '\e91a';
}
.cid-sQZINQ0NTa .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sQZINQ0NTa .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sQZINQ0NTa .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQZINQ0NTa .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sQZINQ0NTa .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sQZINQ0NTa .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sQZINQ0NTa .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sQZINQ0NTa .carousel-indicators li.active,
.cid-sQZINQ0NTa .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sQZINQ0NTa .carousel-indicators li::after,
.cid-sQZINQ0NTa .carousel-indicators li::before {
  content: none;
}
.cid-sQZINQ0NTa .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sQZINQ0NTa .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sQZINQ0NTa .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sQZINQ0NTa .carousel-indicators {
    display: none;
  }
}
.cid-sQZINQ0NTa .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sQZINQ0NTa .carousel-inner > .active {
  display: block;
}
.cid-sQZINQ0NTa .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQZINQ0NTa .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sQZINQ0NTa .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sQZINQ0NTa .carousel-control,
  .cid-sQZINQ0NTa .carousel-indicators,
  .cid-sQZINQ0NTa .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sQZINQ0NTa .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sQZINQ0NTa .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sQZINQ0NTa .carousel-indicators .active,
.cid-sQZINQ0NTa .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sQZINQ0NTa .carousel-indicators .active {
  background: #fff;
}
.cid-sQZINQ0NTa .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sQZINQ0NTa .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sQZINQ0NTa .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sQZINQ0NTa .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sQZINQ0NTa .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sQZINQ0NTa .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sQZINQ0NTa .carousel {
  width: 100%;
}
.cid-sQZINQ0NTa .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sQZINQ0NTa .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sQZINQ0NTa .modal.fade .modal-dialog,
.cid-sQZINQ0NTa .modal.in .modal-dialog {
  transform: none;
}
.cid-sQZINQ0NTa .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sQZINQ0NTa H6 {
  text-align: center;
}
.cid-sQZLcZSoU2 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQZLcZSoU2 .link-wrapper {
  width: 100%;
}
.cid-sQZLcZSoU2 .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-sQZLcZSoU2 .container {
    padding: 0 1rem;
  }
}
.cid-sQZLcZSoU2 .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-sQZLcZSoU2 .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sQZLcZSoU2 .row {
    justify-content: flex-start;
  }
}
.cid-sQZLcZSoU2 .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-sQZLcZSoU2 .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-sQZLcZSoU2 .img-wrapper {
  position: relative;
}
.cid-sQZLcZSoU2 .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-sQZLcZSoU2 .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-sQZLcZSoU2 .card-title {
  color: #000000;
}
.cid-sQZLcZSoU2 .card-title a {
  position: relative;
  background: none!important;
}
.cid-sQZLcZSoU2 .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-sQZLcZSoU2 .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-sQZLcZSoU2 .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-sQZLcZSoU2 .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-sQZLcZSoU2 .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-sQZLcZSoU2 .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-sQZLcZSoU2 .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-sQZLcZSoU2 .card-subtitle {
  color: #818181;
}
.cid-sQZLlvaqZA {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sQZLlvaqZA .mbr-section-subtitle {
  color: #36187d;
}
.cid-sQZLlvaqZA .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-sQZLqiz2LS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sQZLqiz2LS img {
  width: 100%;
  object-fit: cover;
  padding: top;
}
.cid-sQZLqiz2LS .quote {
  color: #333333;
  font-weight: 700;
}
.cid-sQZLqiz2LS .img-card {
  justify-content: top;
}
.cid-sQZLqiz2LS .img-col {
  padding: top;
}
.cid-sQZLqiz2LS .card-box {
  padding: top;
}
@media (max-width: 767px) {
  .cid-sQZLqiz2LS .wrapper {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-sQZLqiz2LS .wrapper {
    padding: 20rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sQZLqiz2LS .wrapper {
    padding: 0rem 0rem 0rem 4rem;
  }
}
.cid-sQZLqiz2LS .card-title,
.cid-sQZLqiz2LS .card-box {
  text-align: left;
}
.cid-sQZLqiz2LS .mbr-text,
.cid-sQZLqiz2LS .mbr-section-btn {
  text-align: left;
  color: #555555;
}
.cid-sQZLrEufrg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQZLrEufrg .mbr-section-subtitle {
  color: #36187d;
}
.cid-sQZLrEufrg .mbr-text {
  color: #555555;
  text-align: left;
}
.cid-sQZMK0sBYP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQZMK0sBYP .item {
  padding-bottom: 2rem;
}
.cid-sQZMK0sBYP .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sQZMK0sBYP .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sQZMK0sBYP .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sQZMK0sBYP .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sQZMK0sBYP .carousel-control,
.cid-sQZMK0sBYP .close {
  background: #1b1b1b;
}
.cid-sQZMK0sBYP .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sQZMK0sBYP .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sQZMK0sBYP .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sQZMK0sBYP .carousel-control-next span {
  margin-left: 5px;
}
.cid-sQZMK0sBYP .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sQZMK0sBYP .close::before {
  content: '\e91a';
}
.cid-sQZMK0sBYP .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sQZMK0sBYP .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sQZMK0sBYP .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQZMK0sBYP .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sQZMK0sBYP .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sQZMK0sBYP .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sQZMK0sBYP .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sQZMK0sBYP .carousel-indicators li.active,
.cid-sQZMK0sBYP .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sQZMK0sBYP .carousel-indicators li::after,
.cid-sQZMK0sBYP .carousel-indicators li::before {
  content: none;
}
.cid-sQZMK0sBYP .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sQZMK0sBYP .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sQZMK0sBYP .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sQZMK0sBYP .carousel-indicators {
    display: none;
  }
}
.cid-sQZMK0sBYP .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sQZMK0sBYP .carousel-inner > .active {
  display: block;
}
.cid-sQZMK0sBYP .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQZMK0sBYP .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sQZMK0sBYP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sQZMK0sBYP .carousel-control,
  .cid-sQZMK0sBYP .carousel-indicators,
  .cid-sQZMK0sBYP .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sQZMK0sBYP .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sQZMK0sBYP .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sQZMK0sBYP .carousel-indicators .active,
.cid-sQZMK0sBYP .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sQZMK0sBYP .carousel-indicators .active {
  background: #fff;
}
.cid-sQZMK0sBYP .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sQZMK0sBYP .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sQZMK0sBYP .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sQZMK0sBYP .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sQZMK0sBYP .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sQZMK0sBYP .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sQZMK0sBYP .carousel {
  width: 100%;
}
.cid-sQZMK0sBYP .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sQZMK0sBYP .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sQZMK0sBYP .modal.fade .modal-dialog,
.cid-sQZMK0sBYP .modal.in .modal-dialog {
  transform: none;
}
.cid-sQZMK0sBYP .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sQZMK0sBYP H6 {
  text-align: center;
}
.cid-sR0tETyD3r {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sR0tETyD3r .link-wrapper {
  width: 100%;
}
.cid-sR0tETyD3r .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-sR0tETyD3r .container {
    padding: 0 1rem;
  }
}
.cid-sR0tETyD3r .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-sR0tETyD3r .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sR0tETyD3r .row {
    justify-content: flex-start;
  }
}
.cid-sR0tETyD3r .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-sR0tETyD3r .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-sR0tETyD3r .img-wrapper {
  position: relative;
}
.cid-sR0tETyD3r .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-sR0tETyD3r .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-sR0tETyD3r .card-title {
  color: #000000;
}
.cid-sR0tETyD3r .card-title a {
  position: relative;
  background: none!important;
}
.cid-sR0tETyD3r .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-sR0tETyD3r .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-sR0tETyD3r .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-sR0tETyD3r .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-sR0tETyD3r .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-sR0tETyD3r .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-sR0tETyD3r .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-sR0tETyD3r .card-subtitle {
  color: #818181;
}
.cid-sR0tFURElY {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sR0tFURElY .mbr-section-subtitle {
  color: #36187d;
}
.cid-sR0tFURElY .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-sR0tH3PsVH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sR0tH3PsVH img {
  width: 100%;
  object-fit: cover;
  padding: top;
}
.cid-sR0tH3PsVH .quote {
  color: #333333;
  font-weight: 700;
}
.cid-sR0tH3PsVH .img-card {
  justify-content: top;
}
.cid-sR0tH3PsVH .img-col {
  padding: top;
}
.cid-sR0tH3PsVH .card-box {
  padding: top;
}
@media (max-width: 767px) {
  .cid-sR0tH3PsVH .wrapper {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-sR0tH3PsVH .wrapper {
    padding: 20rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sR0tH3PsVH .wrapper {
    padding: 0rem 0rem 0rem 4rem;
  }
}
.cid-sR0tH3PsVH .card-title,
.cid-sR0tH3PsVH .card-box {
  text-align: left;
}
.cid-sR0tH3PsVH .mbr-text,
.cid-sR0tH3PsVH .mbr-section-btn {
  text-align: left;
  color: #555555;
}
.cid-sR0tHO2c4P {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sR0tHO2c4P .mbr-section-subtitle {
  color: #36187d;
}
.cid-sR0tHO2c4P .mbr-text {
  color: #555555;
  text-align: left;
}
.cid-sR0tJlWS1g {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sR0tJlWS1g .item {
  padding-bottom: 2rem;
}
.cid-sR0tJlWS1g .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sR0tJlWS1g .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sR0tJlWS1g .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sR0tJlWS1g .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sR0tJlWS1g .carousel-control,
.cid-sR0tJlWS1g .close {
  background: #1b1b1b;
}
.cid-sR0tJlWS1g .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sR0tJlWS1g .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sR0tJlWS1g .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sR0tJlWS1g .carousel-control-next span {
  margin-left: 5px;
}
.cid-sR0tJlWS1g .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sR0tJlWS1g .close::before {
  content: '\e91a';
}
.cid-sR0tJlWS1g .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sR0tJlWS1g .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sR0tJlWS1g .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sR0tJlWS1g .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sR0tJlWS1g .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sR0tJlWS1g .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sR0tJlWS1g .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sR0tJlWS1g .carousel-indicators li.active,
.cid-sR0tJlWS1g .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sR0tJlWS1g .carousel-indicators li::after,
.cid-sR0tJlWS1g .carousel-indicators li::before {
  content: none;
}
.cid-sR0tJlWS1g .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sR0tJlWS1g .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sR0tJlWS1g .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sR0tJlWS1g .carousel-indicators {
    display: none;
  }
}
.cid-sR0tJlWS1g .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sR0tJlWS1g .carousel-inner > .active {
  display: block;
}
.cid-sR0tJlWS1g .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sR0tJlWS1g .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sR0tJlWS1g .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sR0tJlWS1g .carousel-control,
  .cid-sR0tJlWS1g .carousel-indicators,
  .cid-sR0tJlWS1g .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sR0tJlWS1g .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sR0tJlWS1g .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sR0tJlWS1g .carousel-indicators .active,
.cid-sR0tJlWS1g .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sR0tJlWS1g .carousel-indicators .active {
  background: #fff;
}
.cid-sR0tJlWS1g .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sR0tJlWS1g .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sR0tJlWS1g .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sR0tJlWS1g .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sR0tJlWS1g .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sR0tJlWS1g .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sR0tJlWS1g .carousel {
  width: 100%;
}
.cid-sR0tJlWS1g .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sR0tJlWS1g .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sR0tJlWS1g .modal.fade .modal-dialog,
.cid-sR0tJlWS1g .modal.in .modal-dialog {
  transform: none;
}
.cid-sR0tJlWS1g .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sR0tJlWS1g H6 {
  text-align: center;
}
.cid-sR0MLhtgxQ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sR0MLhtgxQ .link-wrapper {
  width: 100%;
}
.cid-sR0MLhtgxQ .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-sR0MLhtgxQ .container {
    padding: 0 1rem;
  }
}
.cid-sR0MLhtgxQ .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-sR0MLhtgxQ .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sR0MLhtgxQ .row {
    justify-content: flex-start;
  }
}
.cid-sR0MLhtgxQ .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-sR0MLhtgxQ .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-sR0MLhtgxQ .img-wrapper {
  position: relative;
}
.cid-sR0MLhtgxQ .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-sR0MLhtgxQ .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-sR0MLhtgxQ .card-title {
  color: #000000;
}
.cid-sR0MLhtgxQ .card-title a {
  position: relative;
  background: none!important;
}
.cid-sR0MLhtgxQ .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-sR0MLhtgxQ .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-sR0MLhtgxQ .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-sR0MLhtgxQ .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-sR0MLhtgxQ .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-sR0MLhtgxQ .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-sR0MLhtgxQ .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-sR0MLhtgxQ .card-subtitle {
  color: #818181;
}
.cid-sR0MMEoFIM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sR0MMEoFIM .mbr-section-subtitle {
  color: #36187d;
}
.cid-sR0MMEoFIM .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-sR0MNwaNpi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sR0MNwaNpi img {
  width: 100%;
  object-fit: cover;
  padding: top;
}
.cid-sR0MNwaNpi .quote {
  color: #333333;
  font-weight: 700;
}
.cid-sR0MNwaNpi .img-card {
  justify-content: top;
}
.cid-sR0MNwaNpi .img-col {
  padding: top;
}
.cid-sR0MNwaNpi .card-box {
  padding: top;
}
@media (max-width: 767px) {
  .cid-sR0MNwaNpi .wrapper {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-sR0MNwaNpi .wrapper {
    padding: 20rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sR0MNwaNpi .wrapper {
    padding: 0rem 0rem 0rem 4rem;
  }
}
.cid-sR0MNwaNpi .card-title,
.cid-sR0MNwaNpi .card-box {
  text-align: left;
}
.cid-sR0MNwaNpi .mbr-text,
.cid-sR0MNwaNpi .mbr-section-btn {
  text-align: left;
  color: #555555;
}
.cid-sR0MOaL3ju {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sR0MOaL3ju .mbr-section-subtitle {
  color: #36187d;
}
.cid-sR0MOaL3ju .mbr-text {
  color: #555555;
  text-align: left;
}
.cid-sR0MOUC6xr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sR0MOUC6xr .item {
  padding-bottom: 2rem;
}
.cid-sR0MOUC6xr .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sR0MOUC6xr .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sR0MOUC6xr .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sR0MOUC6xr .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sR0MOUC6xr .carousel-control,
.cid-sR0MOUC6xr .close {
  background: #1b1b1b;
}
.cid-sR0MOUC6xr .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sR0MOUC6xr .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sR0MOUC6xr .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sR0MOUC6xr .carousel-control-next span {
  margin-left: 5px;
}
.cid-sR0MOUC6xr .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sR0MOUC6xr .close::before {
  content: '\e91a';
}
.cid-sR0MOUC6xr .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sR0MOUC6xr .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sR0MOUC6xr .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sR0MOUC6xr .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sR0MOUC6xr .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sR0MOUC6xr .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sR0MOUC6xr .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sR0MOUC6xr .carousel-indicators li.active,
.cid-sR0MOUC6xr .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sR0MOUC6xr .carousel-indicators li::after,
.cid-sR0MOUC6xr .carousel-indicators li::before {
  content: none;
}
.cid-sR0MOUC6xr .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sR0MOUC6xr .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sR0MOUC6xr .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sR0MOUC6xr .carousel-indicators {
    display: none;
  }
}
.cid-sR0MOUC6xr .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sR0MOUC6xr .carousel-inner > .active {
  display: block;
}
.cid-sR0MOUC6xr .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sR0MOUC6xr .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sR0MOUC6xr .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sR0MOUC6xr .carousel-control,
  .cid-sR0MOUC6xr .carousel-indicators,
  .cid-sR0MOUC6xr .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sR0MOUC6xr .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sR0MOUC6xr .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sR0MOUC6xr .carousel-indicators .active,
.cid-sR0MOUC6xr .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sR0MOUC6xr .carousel-indicators .active {
  background: #fff;
}
.cid-sR0MOUC6xr .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sR0MOUC6xr .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sR0MOUC6xr .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sR0MOUC6xr .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sR0MOUC6xr .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sR0MOUC6xr .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sR0MOUC6xr .carousel {
  width: 100%;
}
.cid-sR0MOUC6xr .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sR0MOUC6xr .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sR0MOUC6xr .modal.fade .modal-dialog,
.cid-sR0MOUC6xr .modal.in .modal-dialog {
  transform: none;
}
.cid-sR0MOUC6xr .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sR0MOUC6xr H6 {
  text-align: center;
}
.cid-sR0OXk2frl {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sR0OXk2frl .link-wrapper {
  width: 100%;
}
.cid-sR0OXk2frl .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-sR0OXk2frl .container {
    padding: 0 1rem;
  }
}
.cid-sR0OXk2frl .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-sR0OXk2frl .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sR0OXk2frl .row {
    justify-content: flex-start;
  }
}
.cid-sR0OXk2frl .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-sR0OXk2frl .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-sR0OXk2frl .img-wrapper {
  position: relative;
}
.cid-sR0OXk2frl .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-sR0OXk2frl .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-sR0OXk2frl .card-title {
  color: #000000;
}
.cid-sR0OXk2frl .card-title a {
  position: relative;
  background: none!important;
}
.cid-sR0OXk2frl .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-sR0OXk2frl .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-sR0OXk2frl .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-sR0OXk2frl .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-sR0OXk2frl .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-sR0OXk2frl .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-sR0OXk2frl .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-sR0OXk2frl .card-subtitle {
  color: #818181;
}
.cid-sR0OYJmF4w {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sR0OYJmF4w .mbr-section-subtitle {
  color: #36187d;
}
.cid-sR0OYJmF4w .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-sR0P06tfLc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sR0P06tfLc img {
  width: 100%;
  object-fit: cover;
  padding: top;
}
.cid-sR0P06tfLc .quote {
  color: #333333;
  font-weight: 700;
}
.cid-sR0P06tfLc .img-card {
  justify-content: top;
}
.cid-sR0P06tfLc .img-col {
  padding: top;
}
.cid-sR0P06tfLc .card-box {
  padding: top;
}
@media (max-width: 767px) {
  .cid-sR0P06tfLc .wrapper {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-sR0P06tfLc .wrapper {
    padding: 20rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sR0P06tfLc .wrapper {
    padding: 0rem 0rem 0rem 4rem;
  }
}
.cid-sR0P06tfLc .card-title,
.cid-sR0P06tfLc .card-box {
  text-align: left;
}
.cid-sR0P06tfLc .mbr-text,
.cid-sR0P06tfLc .mbr-section-btn {
  text-align: left;
  color: #555555;
}
.cid-sR0PVJPcJH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sR0PVJPcJH .mbr-section-subtitle {
  color: #36187d;
}
.cid-sR0PVJPcJH .mbr-text {
  color: #555555;
  text-align: left;
}
.cid-sR0P0QMNDF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sR0P0QMNDF .item {
  padding-bottom: 2rem;
}
.cid-sR0P0QMNDF .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sR0P0QMNDF .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sR0P0QMNDF .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sR0P0QMNDF .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sR0P0QMNDF .carousel-control,
.cid-sR0P0QMNDF .close {
  background: #1b1b1b;
}
.cid-sR0P0QMNDF .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sR0P0QMNDF .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sR0P0QMNDF .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sR0P0QMNDF .carousel-control-next span {
  margin-left: 5px;
}
.cid-sR0P0QMNDF .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sR0P0QMNDF .close::before {
  content: '\e91a';
}
.cid-sR0P0QMNDF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sR0P0QMNDF .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sR0P0QMNDF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sR0P0QMNDF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sR0P0QMNDF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sR0P0QMNDF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sR0P0QMNDF .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sR0P0QMNDF .carousel-indicators li.active,
.cid-sR0P0QMNDF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sR0P0QMNDF .carousel-indicators li::after,
.cid-sR0P0QMNDF .carousel-indicators li::before {
  content: none;
}
.cid-sR0P0QMNDF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sR0P0QMNDF .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sR0P0QMNDF .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sR0P0QMNDF .carousel-indicators {
    display: none;
  }
}
.cid-sR0P0QMNDF .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sR0P0QMNDF .carousel-inner > .active {
  display: block;
}
.cid-sR0P0QMNDF .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sR0P0QMNDF .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sR0P0QMNDF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sR0P0QMNDF .carousel-control,
  .cid-sR0P0QMNDF .carousel-indicators,
  .cid-sR0P0QMNDF .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sR0P0QMNDF .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sR0P0QMNDF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sR0P0QMNDF .carousel-indicators .active,
.cid-sR0P0QMNDF .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sR0P0QMNDF .carousel-indicators .active {
  background: #fff;
}
.cid-sR0P0QMNDF .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sR0P0QMNDF .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sR0P0QMNDF .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sR0P0QMNDF .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sR0P0QMNDF .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sR0P0QMNDF .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sR0P0QMNDF .carousel {
  width: 100%;
}
.cid-sR0P0QMNDF .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sR0P0QMNDF .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sR0P0QMNDF .modal.fade .modal-dialog,
.cid-sR0P0QMNDF .modal.in .modal-dialog {
  transform: none;
}
.cid-sR0P0QMNDF .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sR0P0QMNDF H6 {
  text-align: center;
}
.cid-sR0SG3DmW8 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sR0SG3DmW8 .link-wrapper {
  width: 100%;
}
.cid-sR0SG3DmW8 .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-sR0SG3DmW8 .container {
    padding: 0 1rem;
  }
}
.cid-sR0SG3DmW8 .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-sR0SG3DmW8 .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sR0SG3DmW8 .row {
    justify-content: flex-start;
  }
}
.cid-sR0SG3DmW8 .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-sR0SG3DmW8 .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-sR0SG3DmW8 .img-wrapper {
  position: relative;
}
.cid-sR0SG3DmW8 .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-sR0SG3DmW8 .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-sR0SG3DmW8 .card-title {
  color: #000000;
}
.cid-sR0SG3DmW8 .card-title a {
  position: relative;
  background: none!important;
}
.cid-sR0SG3DmW8 .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-sR0SG3DmW8 .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-sR0SG3DmW8 .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-sR0SG3DmW8 .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-sR0SG3DmW8 .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-sR0SG3DmW8 .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-sR0SG3DmW8 .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-sR0SG3DmW8 .card-subtitle {
  color: #818181;
}
.cid-sR0SCOJRLG {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sR0SCOJRLG .mbr-section-subtitle {
  color: #36187d;
}
.cid-sR0SCOJRLG .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-sR0SDyPmXZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sR0SDyPmXZ img {
  width: 100%;
  object-fit: cover;
  padding: top;
}
.cid-sR0SDyPmXZ .quote {
  color: #333333;
  font-weight: 700;
}
.cid-sR0SDyPmXZ .img-card {
  justify-content: top;
}
.cid-sR0SDyPmXZ .img-col {
  padding: top;
}
.cid-sR0SDyPmXZ .card-box {
  padding: top;
}
@media (max-width: 767px) {
  .cid-sR0SDyPmXZ .wrapper {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-sR0SDyPmXZ .wrapper {
    padding: 20rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sR0SDyPmXZ .wrapper {
    padding: 0rem 0rem 0rem 4rem;
  }
}
.cid-sR0SDyPmXZ .card-title,
.cid-sR0SDyPmXZ .card-box {
  text-align: left;
}
.cid-sR0SDyPmXZ .mbr-text,
.cid-sR0SDyPmXZ .mbr-section-btn {
  text-align: left;
  color: #555555;
}
.cid-sR0SE9H7S9 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sR0SE9H7S9 .mbr-section-subtitle {
  color: #36187d;
}
.cid-sR0SE9H7S9 .mbr-text {
  color: #555555;
  text-align: left;
}
.cid-sR0SFeShFg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sR0SFeShFg .item {
  padding-bottom: 2rem;
}
.cid-sR0SFeShFg .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sR0SFeShFg .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sR0SFeShFg .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sR0SFeShFg .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sR0SFeShFg .carousel-control,
.cid-sR0SFeShFg .close {
  background: #1b1b1b;
}
.cid-sR0SFeShFg .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sR0SFeShFg .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sR0SFeShFg .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sR0SFeShFg .carousel-control-next span {
  margin-left: 5px;
}
.cid-sR0SFeShFg .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sR0SFeShFg .close::before {
  content: '\e91a';
}
.cid-sR0SFeShFg .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sR0SFeShFg .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sR0SFeShFg .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sR0SFeShFg .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sR0SFeShFg .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sR0SFeShFg .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sR0SFeShFg .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sR0SFeShFg .carousel-indicators li.active,
.cid-sR0SFeShFg .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sR0SFeShFg .carousel-indicators li::after,
.cid-sR0SFeShFg .carousel-indicators li::before {
  content: none;
}
.cid-sR0SFeShFg .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sR0SFeShFg .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sR0SFeShFg .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sR0SFeShFg .carousel-indicators {
    display: none;
  }
}
.cid-sR0SFeShFg .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sR0SFeShFg .carousel-inner > .active {
  display: block;
}
.cid-sR0SFeShFg .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sR0SFeShFg .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sR0SFeShFg .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sR0SFeShFg .carousel-control,
  .cid-sR0SFeShFg .carousel-indicators,
  .cid-sR0SFeShFg .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sR0SFeShFg .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sR0SFeShFg .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sR0SFeShFg .carousel-indicators .active,
.cid-sR0SFeShFg .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sR0SFeShFg .carousel-indicators .active {
  background: #fff;
}
.cid-sR0SFeShFg .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sR0SFeShFg .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sR0SFeShFg .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sR0SFeShFg .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sR0SFeShFg .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sR0SFeShFg .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sR0SFeShFg .carousel {
  width: 100%;
}
.cid-sR0SFeShFg .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sR0SFeShFg .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sR0SFeShFg .modal.fade .modal-dialog,
.cid-sR0SFeShFg .modal.in .modal-dialog {
  transform: none;
}
.cid-sR0SFeShFg .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sR0SFeShFg H6 {
  text-align: center;
}
.cid-uP8GSIsXng {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP8GSIsXng .mbr-section-subtitle {
  color: #36187d;
}
.cid-uP8GSIsXng .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-uP8GTtwC6a {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP8GTtwC6a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP8GTtwC6a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uP8GTtwC6a .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uP8GTtwC6a .row {
  flex-direction: row-reverse;
}
.cid-uP8GTtwC6a img {
  width: 100%;
}
.cid-sL9wdK7vvM {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sL9wdK7vvM .logo__image {
  width: 100px;
  object-fit: cover;
}
.cid-sL9wdK7vvM .brand__text {
  margin-bottom: 0;
}
.cid-sL9wdK7vvM .brand__text a {
  font-weight: 700;
}
.cid-sL9wdK7vvM a:hover {
  color: #82786e !important;
}
.cid-sL9wdK7vvM .mbr-text,
.cid-sL9wdK7vvM .privacy {
  margin-bottom: 0;
  color: #919dab;
}
.cid-sL9wdK7vvM .menu {
  margin: 10px 0;
}
.cid-sL9wdK7vvM .foot__menu {
  margin: 0;
  padding: 0;
}
.cid-sL9wdK7vvM .menu__items {
  margin-right: 30px;
  display: inline-block;
  transition: all .25s;
  margin-bottom: 0;
}
.cid-sL9wdK7vvM .menu__items:last-child {
  margin-right: 0;
}
.cid-sL9wdK7vvM .divider {
  background-color: #cccccc;
  opacity: .5;
  margin: 30px 0 40px;
  height: 2px;
}
.cid-sL9wdK7vvM .social {
  margin-top: 10px;
}
.cid-sL9wdK7vvM .social a {
  margin: 0 15px;
}
.cid-sL9wdK7vvM .social a:last-child {
  margin-right: 0;
}
.cid-sL9wdK7vvM .social a:first-child {
  margin-left: 0;
}
.cid-sL9wdK7vvM .mbr-iconfont {
  font-size: 18px;
  transition: all .25s ease;
  transition-duration: 0s;
}
.cid-sL9wdK7vvM .privacy {
  color: #000000;
}
.cid-sL9wdK7vvM .mbr-text {
  color: #999999;
}
.cid-sQZNMDrYD8 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-sQZNMDrYD8 .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-sQZNMDrYD8 .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-sQZNMDrYD8 .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-sQZNMDrYD8 .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-sQZNMDrYD8 .navbar.opened {
  transition: all 0.3s;
}
.cid-sQZNMDrYD8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQZNMDrYD8 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sQZNMDrYD8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQZNMDrYD8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQZNMDrYD8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-sQZNMDrYD8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQZNMDrYD8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQZNMDrYD8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sQZNMDrYD8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQZNMDrYD8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQZNMDrYD8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQZNMDrYD8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQZNMDrYD8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQZNMDrYD8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQZNMDrYD8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQZNMDrYD8 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sQZNMDrYD8 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sQZNMDrYD8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQZNMDrYD8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQZNMDrYD8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQZNMDrYD8 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sQZNMDrYD8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQZNMDrYD8 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sQZNMDrYD8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sQZNMDrYD8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sQZNMDrYD8 .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-sQZNMDrYD8 .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-sQZNMDrYD8 .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-sQZNMDrYD8 .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-sQZNMDrYD8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-sQZNMDrYD8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQZNMDrYD8 .mbr-iconfont {
  color: #97c76b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQZNMDrYD8 .navbar-caption {
  padding-right: 4rem;
}
.cid-sQZNMDrYD8 .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-sQZNMDrYD8 .dropdown-menu,
.cid-sQZNMDrYD8 .navbar.opened {
  background: #ffffff !important;
}
.cid-sQZNMDrYD8 .nav-item:focus,
.cid-sQZNMDrYD8 .nav-link:focus {
  outline: none;
}
.cid-sQZNMDrYD8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sQZNMDrYD8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQZNMDrYD8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sQZNMDrYD8 .dropdown .dropdown-menu .dropdown-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-sQZNMDrYD8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQZNMDrYD8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQZNMDrYD8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQZNMDrYD8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQZNMDrYD8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQZNMDrYD8 .dropdown-item.active,
.cid-sQZNMDrYD8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sQZNMDrYD8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQZNMDrYD8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQZNMDrYD8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQZNMDrYD8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sQZNMDrYD8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQZNMDrYD8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQZNMDrYD8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sQZNMDrYD8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQZNMDrYD8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sQZNMDrYD8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00498d;
}
.cid-sQZNMDrYD8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQZNMDrYD8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQZNMDrYD8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQZNMDrYD8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQZNMDrYD8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQZNMDrYD8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQZNMDrYD8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQZNMDrYD8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQZNMDrYD8 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sQZNMDrYD8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sQZNMDrYD8 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sQZNMDrYD8 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQZNMDrYD8 .navbar {
    height: 77px;
  }
  .cid-sQZNMDrYD8 .navbar.opened {
    height: auto;
  }
  .cid-sQZNMDrYD8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQZNMEeWLi {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/head-modulares-bauen4.jpg");
}
.cid-sQZNMEeWLi .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #0095ff;
  margin-bottom: 2rem;
}
.cid-sQZNMEF6on {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sQZNMEF6on .mbr-section-subtitle {
  color: #36187d;
}
.cid-sQZNMEF6on .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-sR6lOM0T3v {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sR6lOM0T3v .card .card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 0px;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: -1;
  background-color: #97c76b;
}
.cid-sR6lOM0T3v .card:hover .card-overlay {
  opacity: 1;
}
.cid-sR6lOM0T3v .card:hover .card-wrapper * {
  color: #ffffff !important;
  border-color: #ffffff;
}
.cid-sR6lOM0T3v .card-wrapper {
  background: transparent;
  border-radius: 0px;
  display: flex;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid #97c76b;
  position: relative;
  z-index: 1;
}
.cid-sR6lOM0T3v .card-wrapper .card-box {
  margin-top: auto;
  margin-bottom: auto;
  padding-right: 30px;
}
.cid-sR6lOM0T3v .card-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-sR6lOM0T3v .card-wrapper .card-box .card-subtitle {
  color: #232323;
}
.cid-sR6lOM0T3v .card-wrapper .card-box .mbr-text,
.cid-sR6lOM0T3v .card-wrapper .card-box .link-wrap {
  color: #555555;
}
.cid-sR6lOM0T3v .card-wrapper .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  padding: 20px;
  border: 2px solid #97c76b;
  border-radius: 50%;
}
.cid-sR6lOM0T3v .card-wrapper .img-wrapper .mbr-iconfont {
  display: block;
  font-size: 40px;
  color: #97c76b;
}
@media (max-width: 992px) {
  .cid-sR6lOM0T3v .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sR6lOM0T3v .card-wrapper {
    flex-direction: column;
  }
  .cid-sR6lOM0T3v .card-box {
    padding: 0 !important;
    margin-top: 1rem;
    text-align: center !important;
  }
  .cid-sR6lOM0T3v .card-box .card-title {
    margin: 0px !important;
    padding: 0px !important;
  }
  .cid-sR6lOM0T3v .card-box * {
    text-align: center;
  }
  .cid-sR6lOM0T3v .card-box,
  .cid-sR6lOM0T3v .img-wrapper {
    width: 100%;
    align-self: center;
  }
  .cid-sR6lOM0T3v .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-sR6lOM0T3v .mbr-flex {
    flex-direction: column-reverse;
    align-content: center;
  }
}
.cid-sR6lOM0T3v .card .card-wrapper .card-box .card-title,
.cid-sR6lOM0T3v .card-box {
  color: #555555;
}
.cid-sQZNMEULr0 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQZNMEULr0 .link-wrapper {
  width: 100%;
}
.cid-sQZNMEULr0 .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-sQZNMEULr0 .container {
    padding: 0 1rem;
  }
}
.cid-sQZNMEULr0 .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-sQZNMEULr0 .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sQZNMEULr0 .row {
    justify-content: flex-start;
  }
}
.cid-sQZNMEULr0 .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-sQZNMEULr0 .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-sQZNMEULr0 .img-wrapper {
  position: relative;
}
.cid-sQZNMEULr0 .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-sQZNMEULr0 .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-sQZNMEULr0 .card-title {
  color: #000000;
}
.cid-sQZNMEULr0 .card-title a {
  position: relative;
  background: none!important;
}
.cid-sQZNMEULr0 .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-sQZNMEULr0 .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-sQZNMEULr0 .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-sQZNMEULr0 .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-sQZNMEULr0 .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-sQZNMEULr0 .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-sQZNMEULr0 .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-sQZNMEULr0 .card-subtitle {
  color: #818181;
}
.cid-uSZiGgP2XI {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uSZiGgP2XI .mbr-section-subtitle {
  color: #36187d;
}
.cid-uSZiGgP2XI .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uSZiHPb9BH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uSZiHPb9BH img {
  width: 100%;
  object-fit: cover;
  padding: top;
}
.cid-uSZiHPb9BH .quote {
  color: #333333;
  font-weight: 700;
}
.cid-uSZiHPb9BH .img-card {
  justify-content: top;
}
.cid-uSZiHPb9BH .img-col {
  padding: top;
}
.cid-uSZiHPb9BH .card-box {
  padding: top;
}
@media (max-width: 767px) {
  .cid-uSZiHPb9BH .wrapper {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uSZiHPb9BH .wrapper {
    padding: 20rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uSZiHPb9BH .wrapper {
    padding: 0rem 0rem 0rem 4rem;
  }
}
.cid-uSZiHPb9BH .card-title,
.cid-uSZiHPb9BH .card-box {
  text-align: left;
}
.cid-uSZiHPb9BH .mbr-text,
.cid-uSZiHPb9BH .mbr-section-btn {
  text-align: left;
  color: #555555;
}
.cid-uSZiIKE0Aw {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uSZiIKE0Aw .item {
  padding-bottom: 2rem;
}
.cid-uSZiIKE0Aw .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uSZiIKE0Aw .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uSZiIKE0Aw .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uSZiIKE0Aw .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uSZiIKE0Aw .carousel-control,
.cid-uSZiIKE0Aw .close {
  background: #1b1b1b;
}
.cid-uSZiIKE0Aw .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uSZiIKE0Aw .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uSZiIKE0Aw .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uSZiIKE0Aw .carousel-control-next span {
  margin-left: 5px;
}
.cid-uSZiIKE0Aw .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uSZiIKE0Aw .close::before {
  content: '\e91a';
}
.cid-uSZiIKE0Aw .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uSZiIKE0Aw .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uSZiIKE0Aw .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uSZiIKE0Aw .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uSZiIKE0Aw .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uSZiIKE0Aw .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uSZiIKE0Aw .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uSZiIKE0Aw .carousel-indicators li.active,
.cid-uSZiIKE0Aw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uSZiIKE0Aw .carousel-indicators li::after,
.cid-uSZiIKE0Aw .carousel-indicators li::before {
  content: none;
}
.cid-uSZiIKE0Aw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uSZiIKE0Aw .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uSZiIKE0Aw .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uSZiIKE0Aw .carousel-indicators {
    display: none;
  }
}
.cid-uSZiIKE0Aw .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uSZiIKE0Aw .carousel-inner > .active {
  display: block;
}
.cid-uSZiIKE0Aw .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uSZiIKE0Aw .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uSZiIKE0Aw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uSZiIKE0Aw .carousel-control,
  .cid-uSZiIKE0Aw .carousel-indicators,
  .cid-uSZiIKE0Aw .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uSZiIKE0Aw .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uSZiIKE0Aw .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uSZiIKE0Aw .carousel-indicators .active,
.cid-uSZiIKE0Aw .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uSZiIKE0Aw .carousel-indicators .active {
  background: #fff;
}
.cid-uSZiIKE0Aw .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uSZiIKE0Aw .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uSZiIKE0Aw .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uSZiIKE0Aw .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uSZiIKE0Aw .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uSZiIKE0Aw .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uSZiIKE0Aw .carousel {
  width: 100%;
}
.cid-uSZiIKE0Aw .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uSZiIKE0Aw .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uSZiIKE0Aw .modal.fade .modal-dialog,
.cid-uSZiIKE0Aw .modal.in .modal-dialog {
  transform: none;
}
.cid-uSZiIKE0Aw .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uSZiIKE0Aw H6 {
  text-align: center;
}
.cid-uSZjc4Kjsg {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSZjc4Kjsg .link-wrapper {
  width: 100%;
}
.cid-uSZjc4Kjsg .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uSZjc4Kjsg .container {
    padding: 0 1rem;
  }
}
.cid-uSZjc4Kjsg .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-uSZjc4Kjsg .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uSZjc4Kjsg .row {
    justify-content: flex-start;
  }
}
.cid-uSZjc4Kjsg .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uSZjc4Kjsg .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-uSZjc4Kjsg .img-wrapper {
  position: relative;
}
.cid-uSZjc4Kjsg .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-uSZjc4Kjsg .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-uSZjc4Kjsg .card-title {
  color: #000000;
}
.cid-uSZjc4Kjsg .card-title a {
  position: relative;
  background: none!important;
}
.cid-uSZjc4Kjsg .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-uSZjc4Kjsg .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-uSZjc4Kjsg .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-uSZjc4Kjsg .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-uSZjc4Kjsg .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-uSZjc4Kjsg .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-uSZjc4Kjsg .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-uSZjc4Kjsg .card-subtitle {
  color: #818181;
}
.cid-sQZNMFexWM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sQZNMFexWM .mbr-section-subtitle {
  color: #36187d;
}
.cid-sQZNMFexWM .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-sR6ehYBCKE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sR6ehYBCKE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sR6ehYBCKE .row {
  flex-direction: row-reverse;
}
.cid-sR6ehYBCKE img {
  width: 100%;
}
.cid-sR6ehYBCKE .mbr-description {
  color: #555555;
}
.cid-sR6dZSoOAY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sR6dZSoOAY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sR6dZSoOAY .row {
  flex-direction: row-reverse;
}
.cid-sR6dZSoOAY img {
  width: 100%;
}
.cid-sR6dZSoOAY .mbr-description {
  color: #555555;
  text-align: left;
}
.cid-sQZNMFVoAU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQZNMFVoAU .item {
  padding-bottom: 2rem;
}
.cid-sQZNMFVoAU .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sQZNMFVoAU .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sQZNMFVoAU .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sQZNMFVoAU .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sQZNMFVoAU .carousel-control,
.cid-sQZNMFVoAU .close {
  background: #1b1b1b;
}
.cid-sQZNMFVoAU .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sQZNMFVoAU .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sQZNMFVoAU .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sQZNMFVoAU .carousel-control-next span {
  margin-left: 5px;
}
.cid-sQZNMFVoAU .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sQZNMFVoAU .close::before {
  content: '\e91a';
}
.cid-sQZNMFVoAU .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sQZNMFVoAU .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sQZNMFVoAU .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQZNMFVoAU .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sQZNMFVoAU .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sQZNMFVoAU .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sQZNMFVoAU .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sQZNMFVoAU .carousel-indicators li.active,
.cid-sQZNMFVoAU .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sQZNMFVoAU .carousel-indicators li::after,
.cid-sQZNMFVoAU .carousel-indicators li::before {
  content: none;
}
.cid-sQZNMFVoAU .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sQZNMFVoAU .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sQZNMFVoAU .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sQZNMFVoAU .carousel-indicators {
    display: none;
  }
}
.cid-sQZNMFVoAU .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sQZNMFVoAU .carousel-inner > .active {
  display: block;
}
.cid-sQZNMFVoAU .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sQZNMFVoAU .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sQZNMFVoAU .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sQZNMFVoAU .carousel-control,
  .cid-sQZNMFVoAU .carousel-indicators,
  .cid-sQZNMFVoAU .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sQZNMFVoAU .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sQZNMFVoAU .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sQZNMFVoAU .carousel-indicators .active,
.cid-sQZNMFVoAU .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sQZNMFVoAU .carousel-indicators .active {
  background: #fff;
}
.cid-sQZNMFVoAU .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sQZNMFVoAU .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sQZNMFVoAU .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sQZNMFVoAU .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sQZNMFVoAU .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sQZNMFVoAU .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sQZNMFVoAU .carousel {
  width: 100%;
}
.cid-sQZNMFVoAU .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sQZNMFVoAU .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sQZNMFVoAU .modal.fade .modal-dialog,
.cid-sQZNMFVoAU .modal.in .modal-dialog {
  transform: none;
}
.cid-sQZNMFVoAU .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sQZNMFVoAU H6 {
  text-align: center;
}
.cid-sR6hjIVURW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sR6hjIVURW .card .card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 0px;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: -1;
  background-color: #97c76b;
}
.cid-sR6hjIVURW .card:hover .card-overlay {
  opacity: 1;
}
.cid-sR6hjIVURW .card:hover .card-wrapper * {
  color: #ffffff !important;
  border-color: #ffffff;
}
.cid-sR6hjIVURW .card-wrapper {
  background: transparent;
  border-radius: 0px;
  display: flex;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid #97c76b;
  position: relative;
  z-index: 1;
}
.cid-sR6hjIVURW .card-wrapper .card-box {
  margin-top: auto;
  margin-bottom: auto;
  padding-right: 30px;
}
.cid-sR6hjIVURW .card-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-sR6hjIVURW .card-wrapper .card-box .card-subtitle {
  color: #232323;
}
.cid-sR6hjIVURW .card-wrapper .card-box .mbr-text,
.cid-sR6hjIVURW .card-wrapper .card-box .link-wrap {
  color: #555555;
}
.cid-sR6hjIVURW .card-wrapper .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  padding: 20px;
  border: 2px solid #97c76b;
  border-radius: 50%;
}
.cid-sR6hjIVURW .card-wrapper .img-wrapper .mbr-iconfont {
  display: block;
  font-size: 40px;
  color: #97c76b;
}
@media (max-width: 992px) {
  .cid-sR6hjIVURW .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sR6hjIVURW .card-wrapper {
    flex-direction: column;
  }
  .cid-sR6hjIVURW .card-box {
    padding: 0 !important;
    margin-top: 1rem;
    text-align: center !important;
  }
  .cid-sR6hjIVURW .card-box .card-title {
    margin: 0px !important;
    padding: 0px !important;
  }
  .cid-sR6hjIVURW .card-box * {
    text-align: center;
  }
  .cid-sR6hjIVURW .card-box,
  .cid-sR6hjIVURW .img-wrapper {
    width: 100%;
    align-self: center;
  }
  .cid-sR6hjIVURW .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-sR6hjIVURW .mbr-flex {
    flex-direction: column-reverse;
    align-content: center;
  }
}
.cid-sR6hjIVURW .card .card-wrapper .card-box .card-title,
.cid-sR6hjIVURW .card-box {
  color: #555555;
}
.cid-sQZNMGxUiZ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQZNMGxUiZ .link-wrapper {
  width: 100%;
}
.cid-sQZNMGxUiZ .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-sQZNMGxUiZ .container {
    padding: 0 1rem;
  }
}
.cid-sQZNMGxUiZ .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-sQZNMGxUiZ .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sQZNMGxUiZ .row {
    justify-content: flex-start;
  }
}
.cid-sQZNMGxUiZ .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-sQZNMGxUiZ .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-sQZNMGxUiZ .img-wrapper {
  position: relative;
}
.cid-sQZNMGxUiZ .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-sQZNMGxUiZ .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-sQZNMGxUiZ .card-title {
  color: #000000;
}
.cid-sQZNMGxUiZ .card-title a {
  position: relative;
  background: none!important;
}
.cid-sQZNMGxUiZ .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-sQZNMGxUiZ .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-sQZNMGxUiZ .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-sQZNMGxUiZ .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-sQZNMGxUiZ .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-sQZNMGxUiZ .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-sQZNMGxUiZ .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-sQZNMGxUiZ .card-subtitle {
  color: #818181;
}
.cid-sQZNMGOAOX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sQZNMGOAOX .mbr-section-subtitle {
  color: #36187d;
}
.cid-sQZNMGOAOX .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-sQZNMHlkqA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sQZNMHlkqA .mbr-section-subtitle {
  color: #36187d;
}
.cid-sQZNMHlkqA .mbr-text {
  color: #555555;
  text-align: left;
}
.cid-sR6k02ETXq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sR6k02ETXq .card .card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 0px;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: -1;
  background-color: #97c76b;
}
.cid-sR6k02ETXq .card:hover .card-overlay {
  opacity: 1;
}
.cid-sR6k02ETXq .card:hover .card-wrapper * {
  color: #ffffff !important;
  border-color: #ffffff;
}
.cid-sR6k02ETXq .card-wrapper {
  background: transparent;
  border-radius: 0px;
  display: flex;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid #97c76b;
  position: relative;
  z-index: 1;
}
.cid-sR6k02ETXq .card-wrapper .card-box {
  margin-top: auto;
  margin-bottom: auto;
  padding-right: 30px;
}
.cid-sR6k02ETXq .card-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-sR6k02ETXq .card-wrapper .card-box .card-subtitle {
  color: #232323;
}
.cid-sR6k02ETXq .card-wrapper .card-box .mbr-text,
.cid-sR6k02ETXq .card-wrapper .card-box .link-wrap {
  color: #555555;
}
.cid-sR6k02ETXq .card-wrapper .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  padding: 20px;
  border: 2px solid #97c76b;
  border-radius: 50%;
}
.cid-sR6k02ETXq .card-wrapper .img-wrapper .mbr-iconfont {
  display: block;
  font-size: 40px;
  color: #97c76b;
}
@media (max-width: 992px) {
  .cid-sR6k02ETXq .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sR6k02ETXq .card-wrapper {
    flex-direction: column;
  }
  .cid-sR6k02ETXq .card-box {
    padding: 0 !important;
    margin-top: 1rem;
    text-align: center !important;
  }
  .cid-sR6k02ETXq .card-box .card-title {
    margin: 0px !important;
    padding: 0px !important;
  }
  .cid-sR6k02ETXq .card-box * {
    text-align: center;
  }
  .cid-sR6k02ETXq .card-box,
  .cid-sR6k02ETXq .img-wrapper {
    width: 100%;
    align-self: center;
  }
  .cid-sR6k02ETXq .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-sR6k02ETXq .mbr-flex {
    flex-direction: column-reverse;
    align-content: center;
  }
}
.cid-sR6k02ETXq .card .card-wrapper .card-box .card-title,
.cid-sR6k02ETXq .card-box {
  color: #555555;
}
.cid-sR6kAruQjw {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sR6kAruQjw .link-wrapper {
  width: 100%;
}
.cid-sR6kAruQjw .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-sR6kAruQjw .container {
    padding: 0 1rem;
  }
}
.cid-sR6kAruQjw .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-sR6kAruQjw .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sR6kAruQjw .row {
    justify-content: flex-start;
  }
}
.cid-sR6kAruQjw .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-sR6kAruQjw .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-sR6kAruQjw .img-wrapper {
  position: relative;
}
.cid-sR6kAruQjw .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-sR6kAruQjw .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-sR6kAruQjw .card-title {
  color: #000000;
}
.cid-sR6kAruQjw .card-title a {
  position: relative;
  background: none!important;
}
.cid-sR6kAruQjw .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-sR6kAruQjw .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-sR6kAruQjw .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-sR6kAruQjw .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-sR6kAruQjw .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-sR6kAruQjw .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-sR6kAruQjw .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-sR6kAruQjw .card-subtitle {
  color: #818181;
}
.cid-sR6kzgAKIu {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sR6kzgAKIu .mbr-section-subtitle {
  color: #36187d;
}
.cid-sR6kzgAKIu .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-sR6kFQIYVR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sR6kFQIYVR .mbr-section-subtitle {
  color: #36187d;
}
.cid-sR6kFQIYVR .mbr-text {
  color: #555555;
  text-align: left;
}
.cid-sR6kCIPeVW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sR6kCIPeVW .card .card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 0px;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: -1;
  background-color: #97c76b;
}
.cid-sR6kCIPeVW .card:hover .card-overlay {
  opacity: 1;
}
.cid-sR6kCIPeVW .card:hover .card-wrapper * {
  color: #ffffff !important;
  border-color: #ffffff;
}
.cid-sR6kCIPeVW .card-wrapper {
  background: transparent;
  border-radius: 0px;
  display: flex;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid #97c76b;
  position: relative;
  z-index: 1;
}
.cid-sR6kCIPeVW .card-wrapper .card-box {
  margin-top: auto;
  margin-bottom: auto;
  padding-right: 30px;
}
.cid-sR6kCIPeVW .card-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-sR6kCIPeVW .card-wrapper .card-box .card-subtitle {
  color: #232323;
}
.cid-sR6kCIPeVW .card-wrapper .card-box .mbr-text,
.cid-sR6kCIPeVW .card-wrapper .card-box .link-wrap {
  color: #555555;
}
.cid-sR6kCIPeVW .card-wrapper .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  padding: 20px;
  border: 2px solid #97c76b;
  border-radius: 50%;
}
.cid-sR6kCIPeVW .card-wrapper .img-wrapper .mbr-iconfont {
  display: block;
  font-size: 40px;
  color: #97c76b;
}
@media (max-width: 992px) {
  .cid-sR6kCIPeVW .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sR6kCIPeVW .card-wrapper {
    flex-direction: column;
  }
  .cid-sR6kCIPeVW .card-box {
    padding: 0 !important;
    margin-top: 1rem;
    text-align: center !important;
  }
  .cid-sR6kCIPeVW .card-box .card-title {
    margin: 0px !important;
    padding: 0px !important;
  }
  .cid-sR6kCIPeVW .card-box * {
    text-align: center;
  }
  .cid-sR6kCIPeVW .card-box,
  .cid-sR6kCIPeVW .img-wrapper {
    width: 100%;
    align-self: center;
  }
  .cid-sR6kCIPeVW .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-sR6kCIPeVW .mbr-flex {
    flex-direction: column-reverse;
    align-content: center;
  }
}
.cid-sR6kCIPeVW .card .card-wrapper .card-box .card-title,
.cid-sR6kCIPeVW .card-box {
  color: #555555;
}
.cid-sR6kXk8ddt {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sR6kXk8ddt .link-wrapper {
  width: 100%;
}
.cid-sR6kXk8ddt .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-sR6kXk8ddt .container {
    padding: 0 1rem;
  }
}
.cid-sR6kXk8ddt .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-sR6kXk8ddt .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sR6kXk8ddt .row {
    justify-content: flex-start;
  }
}
.cid-sR6kXk8ddt .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-sR6kXk8ddt .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-sR6kXk8ddt .img-wrapper {
  position: relative;
}
.cid-sR6kXk8ddt .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-sR6kXk8ddt .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-sR6kXk8ddt .card-title {
  color: #000000;
}
.cid-sR6kXk8ddt .card-title a {
  position: relative;
  background: none!important;
}
.cid-sR6kXk8ddt .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-sR6kXk8ddt .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-sR6kXk8ddt .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-sR6kXk8ddt .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-sR6kXk8ddt .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-sR6kXk8ddt .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-sR6kXk8ddt .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-sR6kXk8ddt .card-subtitle {
  color: #818181;
}
.cid-sR6ljDs0nf {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sR6ljDs0nf .mbr-section-subtitle {
  color: #36187d;
}
.cid-sR6ljDs0nf .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-sR6lkWlV7g {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sR6lkWlV7g .mbr-section-subtitle {
  color: #36187d;
}
.cid-sR6lkWlV7g .mbr-text {
  color: #555555;
  text-align: left;
}
.cid-sR6llXlcEa {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sR6llXlcEa .card .card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 0px;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: -1;
  background-color: #97c76b;
}
.cid-sR6llXlcEa .card:hover .card-overlay {
  opacity: 1;
}
.cid-sR6llXlcEa .card:hover .card-wrapper * {
  color: #ffffff !important;
  border-color: #ffffff;
}
.cid-sR6llXlcEa .card-wrapper {
  background: transparent;
  border-radius: 0px;
  display: flex;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid #97c76b;
  position: relative;
  z-index: 1;
}
.cid-sR6llXlcEa .card-wrapper .card-box {
  margin-top: auto;
  margin-bottom: auto;
  padding-right: 30px;
}
.cid-sR6llXlcEa .card-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-sR6llXlcEa .card-wrapper .card-box .card-subtitle {
  color: #232323;
}
.cid-sR6llXlcEa .card-wrapper .card-box .mbr-text,
.cid-sR6llXlcEa .card-wrapper .card-box .link-wrap {
  color: #555555;
}
.cid-sR6llXlcEa .card-wrapper .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  padding: 20px;
  border: 2px solid #97c76b;
  border-radius: 50%;
}
.cid-sR6llXlcEa .card-wrapper .img-wrapper .mbr-iconfont {
  display: block;
  font-size: 40px;
  color: #97c76b;
}
@media (max-width: 992px) {
  .cid-sR6llXlcEa .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sR6llXlcEa .card-wrapper {
    flex-direction: column;
  }
  .cid-sR6llXlcEa .card-box {
    padding: 0 !important;
    margin-top: 1rem;
    text-align: center !important;
  }
  .cid-sR6llXlcEa .card-box .card-title {
    margin: 0px !important;
    padding: 0px !important;
  }
  .cid-sR6llXlcEa .card-box * {
    text-align: center;
  }
  .cid-sR6llXlcEa .card-box,
  .cid-sR6llXlcEa .img-wrapper {
    width: 100%;
    align-self: center;
  }
  .cid-sR6llXlcEa .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-sR6llXlcEa .mbr-flex {
    flex-direction: column-reverse;
    align-content: center;
  }
}
.cid-sR6llXlcEa .card .card-wrapper .card-box .card-title,
.cid-sR6llXlcEa .card-box {
  color: #555555;
}
.cid-sR6lmZbpzM {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sR6lmZbpzM .link-wrapper {
  width: 100%;
}
.cid-sR6lmZbpzM .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-sR6lmZbpzM .container {
    padding: 0 1rem;
  }
}
.cid-sR6lmZbpzM .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-sR6lmZbpzM .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sR6lmZbpzM .row {
    justify-content: flex-start;
  }
}
.cid-sR6lmZbpzM .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-sR6lmZbpzM .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-sR6lmZbpzM .img-wrapper {
  position: relative;
}
.cid-sR6lmZbpzM .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-sR6lmZbpzM .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-sR6lmZbpzM .card-title {
  color: #000000;
}
.cid-sR6lmZbpzM .card-title a {
  position: relative;
  background: none!important;
}
.cid-sR6lmZbpzM .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-sR6lmZbpzM .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-sR6lmZbpzM .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-sR6lmZbpzM .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-sR6lmZbpzM .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-sR6lmZbpzM .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-sR6lmZbpzM .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-sR6lmZbpzM .card-subtitle {
  color: #818181;
}
.cid-sR6m5ZCZZA {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sR6m5ZCZZA .mbr-section-subtitle {
  color: #36187d;
}
.cid-sR6m5ZCZZA .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-sR6m4RO0ZX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sR6m4RO0ZX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sR6m4RO0ZX .row {
  flex-direction: row-reverse;
}
.cid-sR6m4RO0ZX img {
  width: 100%;
}
.cid-sR6m4RO0ZX .mbr-description {
  color: #555555;
}
.cid-sR6miyQGQ0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sR6miyQGQ0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sR6miyQGQ0 .row {
  flex-direction: row-reverse;
}
.cid-sR6miyQGQ0 img {
  width: 100%;
}
.cid-sR6miyQGQ0 .mbr-description {
  color: #555555;
  text-align: left;
}
.cid-sR6nE8WCRa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sR6nE8WCRa .item {
  padding-bottom: 2rem;
}
.cid-sR6nE8WCRa .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sR6nE8WCRa .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sR6nE8WCRa .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sR6nE8WCRa .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sR6nE8WCRa .carousel-control,
.cid-sR6nE8WCRa .close {
  background: #1b1b1b;
}
.cid-sR6nE8WCRa .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sR6nE8WCRa .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sR6nE8WCRa .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sR6nE8WCRa .carousel-control-next span {
  margin-left: 5px;
}
.cid-sR6nE8WCRa .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sR6nE8WCRa .close::before {
  content: '\e91a';
}
.cid-sR6nE8WCRa .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sR6nE8WCRa .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sR6nE8WCRa .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sR6nE8WCRa .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sR6nE8WCRa .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sR6nE8WCRa .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sR6nE8WCRa .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sR6nE8WCRa .carousel-indicators li.active,
.cid-sR6nE8WCRa .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sR6nE8WCRa .carousel-indicators li::after,
.cid-sR6nE8WCRa .carousel-indicators li::before {
  content: none;
}
.cid-sR6nE8WCRa .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sR6nE8WCRa .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sR6nE8WCRa .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sR6nE8WCRa .carousel-indicators {
    display: none;
  }
}
.cid-sR6nE8WCRa .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sR6nE8WCRa .carousel-inner > .active {
  display: block;
}
.cid-sR6nE8WCRa .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sR6nE8WCRa .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sR6nE8WCRa .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sR6nE8WCRa .carousel-control,
  .cid-sR6nE8WCRa .carousel-indicators,
  .cid-sR6nE8WCRa .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sR6nE8WCRa .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sR6nE8WCRa .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sR6nE8WCRa .carousel-indicators .active,
.cid-sR6nE8WCRa .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sR6nE8WCRa .carousel-indicators .active {
  background: #fff;
}
.cid-sR6nE8WCRa .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sR6nE8WCRa .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sR6nE8WCRa .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sR6nE8WCRa .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sR6nE8WCRa .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sR6nE8WCRa .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sR6nE8WCRa .carousel {
  width: 100%;
}
.cid-sR6nE8WCRa .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sR6nE8WCRa .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sR6nE8WCRa .modal.fade .modal-dialog,
.cid-sR6nE8WCRa .modal.in .modal-dialog {
  transform: none;
}
.cid-sR6nE8WCRa .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sR6nE8WCRa H6 {
  text-align: center;
}
.cid-uP8HcmyA2d {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP8HcmyA2d .mbr-section-subtitle {
  color: #36187d;
}
.cid-uP8HcmyA2d .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-uP8HcXOzZA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP8HcXOzZA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP8HcXOzZA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uP8HcXOzZA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uP8HcXOzZA .row {
  flex-direction: row-reverse;
}
.cid-uP8HcXOzZA img {
  width: 100%;
}
.cid-sQZNMI3cVh {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sQZNMI3cVh .logo__image {
  width: 100px;
  object-fit: cover;
}
.cid-sQZNMI3cVh .brand__text {
  margin-bottom: 0;
}
.cid-sQZNMI3cVh .brand__text a {
  font-weight: 700;
}
.cid-sQZNMI3cVh a:hover {
  color: #82786e !important;
}
.cid-sQZNMI3cVh .mbr-text,
.cid-sQZNMI3cVh .privacy {
  margin-bottom: 0;
  color: #919dab;
}
.cid-sQZNMI3cVh .menu {
  margin: 10px 0;
}
.cid-sQZNMI3cVh .foot__menu {
  margin: 0;
  padding: 0;
}
.cid-sQZNMI3cVh .menu__items {
  margin-right: 30px;
  display: inline-block;
  transition: all .25s;
  margin-bottom: 0;
}
.cid-sQZNMI3cVh .menu__items:last-child {
  margin-right: 0;
}
.cid-sQZNMI3cVh .divider {
  background-color: #cccccc;
  opacity: .5;
  margin: 30px 0 40px;
  height: 2px;
}
.cid-sQZNMI3cVh .social {
  margin-top: 10px;
}
.cid-sQZNMI3cVh .social a {
  margin: 0 15px;
}
.cid-sQZNMI3cVh .social a:last-child {
  margin-right: 0;
}
.cid-sQZNMI3cVh .social a:first-child {
  margin-left: 0;
}
.cid-sQZNMI3cVh .mbr-iconfont {
  font-size: 18px;
  transition: all .25s ease;
  transition-duration: 0s;
}
.cid-sQZNMI3cVh .privacy {
  color: #000000;
}
.cid-sQZNMI3cVh .mbr-text {
  color: #999999;
}
.cid-sQZOGuIUi4 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-sQZOGuIUi4 .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-sQZOGuIUi4 .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-sQZOGuIUi4 .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-sQZOGuIUi4 .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-sQZOGuIUi4 .navbar.opened {
  transition: all 0.3s;
}
.cid-sQZOGuIUi4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQZOGuIUi4 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sQZOGuIUi4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQZOGuIUi4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQZOGuIUi4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-sQZOGuIUi4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQZOGuIUi4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQZOGuIUi4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sQZOGuIUi4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQZOGuIUi4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQZOGuIUi4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQZOGuIUi4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQZOGuIUi4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQZOGuIUi4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQZOGuIUi4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQZOGuIUi4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sQZOGuIUi4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sQZOGuIUi4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQZOGuIUi4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQZOGuIUi4 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQZOGuIUi4 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sQZOGuIUi4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sQZOGuIUi4 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-sQZOGuIUi4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sQZOGuIUi4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sQZOGuIUi4 .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-sQZOGuIUi4 .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-sQZOGuIUi4 .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-sQZOGuIUi4 .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-sQZOGuIUi4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-sQZOGuIUi4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQZOGuIUi4 .mbr-iconfont {
  color: #97c76b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQZOGuIUi4 .navbar-caption {
  padding-right: 4rem;
}
.cid-sQZOGuIUi4 .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-sQZOGuIUi4 .dropdown-menu,
.cid-sQZOGuIUi4 .navbar.opened {
  background: #ffffff !important;
}
.cid-sQZOGuIUi4 .nav-item:focus,
.cid-sQZOGuIUi4 .nav-link:focus {
  outline: none;
}
.cid-sQZOGuIUi4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sQZOGuIUi4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQZOGuIUi4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sQZOGuIUi4 .dropdown .dropdown-menu .dropdown-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-sQZOGuIUi4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQZOGuIUi4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQZOGuIUi4 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQZOGuIUi4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQZOGuIUi4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQZOGuIUi4 .dropdown-item.active,
.cid-sQZOGuIUi4 .dropdown-item:active {
  background-color: transparent;
}
.cid-sQZOGuIUi4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQZOGuIUi4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQZOGuIUi4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQZOGuIUi4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sQZOGuIUi4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQZOGuIUi4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQZOGuIUi4 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sQZOGuIUi4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sQZOGuIUi4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sQZOGuIUi4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00498d;
}
.cid-sQZOGuIUi4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQZOGuIUi4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQZOGuIUi4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQZOGuIUi4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQZOGuIUi4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQZOGuIUi4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQZOGuIUi4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQZOGuIUi4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQZOGuIUi4 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sQZOGuIUi4 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sQZOGuIUi4 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sQZOGuIUi4 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQZOGuIUi4 .navbar {
    height: 77px;
  }
  .cid-sQZOGuIUi4 .navbar.opened {
    height: auto;
  }
  .cid-sQZOGuIUi4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQZOGvLNED {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/head-projektentwicklung2.jpg");
}
.cid-sQZOGvLNED .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #0095ff;
  margin-bottom: 2rem;
}
.cid-sQZOGwi4Q8 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sQZOGwi4Q8 .mbr-section-subtitle {
  color: #36187d;
}
.cid-sQZOGwi4Q8 .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-sR6qIXb6Lq {
  padding-top: 0px;
  padding-bottom: 30px;
  position: relative;
  background-color: #ffffff;
}
.cid-sR6qIXb6Lq .card-header {
  background: transparent;
}
.cid-sR6qIXb6Lq .mbr-iconfont {
  font-size: 1.4rem!important;
  font-family: 'Moririse2' !important;
  color: #00488c;
  margin-left: 1rem;
}
.cid-sR6qIXb6Lq .panel-body {
  padding: 1rem 0;
}
.cid-sR6qIXb6Lq .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-sR6qIXb6Lq .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-sR6qIXb6Lq .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-sR6qIXb6Lq .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sR6qIXb6Lq .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-sR6qIXb6Lq .card .panel-body {
  color: #767676;
}
.cid-sR6qIXb6Lq h4 {
  flex-direction: row-reverse;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  border-bottom: 1px solid lightgray;
  padding: 0.8rem 0rem;
}
.cid-sR6qIXb6Lq H4 {
  color: #111111;
}
.cid-sR6qIXb6Lq H2 {
  color: #000000;
}
.cid-sR6qIXb6Lq .panel-text {
  color: #555555;
}
.cid-sRbdsDBPej {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sRbdsDBPej .link-wrapper {
  width: 100%;
}
.cid-sRbdsDBPej .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-sRbdsDBPej .container {
    padding: 0 1rem;
  }
}
.cid-sRbdsDBPej .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-sRbdsDBPej .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sRbdsDBPej .row {
    justify-content: flex-start;
  }
}
.cid-sRbdsDBPej .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-sRbdsDBPej .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-sRbdsDBPej .img-wrapper {
  position: relative;
}
.cid-sRbdsDBPej .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-sRbdsDBPej .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-sRbdsDBPej .card-title {
  color: #000000;
}
.cid-sRbdsDBPej .card-title a {
  position: relative;
  background: none!important;
}
.cid-sRbdsDBPej .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-sRbdsDBPej .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-sRbdsDBPej .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-sRbdsDBPej .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-sRbdsDBPej .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-sRbdsDBPej .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-sRbdsDBPej .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-sRbdsDBPej .card-subtitle {
  color: #818181;
}
.cid-uSZjrLL7R0 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uSZjrLL7R0 .mbr-section-subtitle {
  color: #36187d;
}
.cid-uSZjrLL7R0 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uSZjsGcrkM {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uSZjsGcrkM img {
  width: 100%;
  object-fit: cover;
  padding: top;
}
.cid-uSZjsGcrkM .quote {
  color: #333333;
  font-weight: 700;
}
.cid-uSZjsGcrkM .img-card {
  justify-content: top;
}
.cid-uSZjsGcrkM .img-col {
  padding: top;
}
.cid-uSZjsGcrkM .card-box {
  padding: top;
}
@media (max-width: 767px) {
  .cid-uSZjsGcrkM .wrapper {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uSZjsGcrkM .wrapper {
    padding: 20rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uSZjsGcrkM .wrapper {
    padding: 0rem 0rem 0rem 4rem;
  }
}
.cid-uSZjsGcrkM .card-title,
.cid-uSZjsGcrkM .card-box {
  text-align: left;
}
.cid-uSZjsGcrkM .mbr-text,
.cid-uSZjsGcrkM .mbr-section-btn {
  text-align: left;
  color: #555555;
}
.cid-uSZjtCXtYt {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSZjtCXtYt .link-wrapper {
  width: 100%;
}
.cid-uSZjtCXtYt .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uSZjtCXtYt .container {
    padding: 0 1rem;
  }
}
.cid-uSZjtCXtYt .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-uSZjtCXtYt .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uSZjtCXtYt .row {
    justify-content: flex-start;
  }
}
.cid-uSZjtCXtYt .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uSZjtCXtYt .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-uSZjtCXtYt .img-wrapper {
  position: relative;
}
.cid-uSZjtCXtYt .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-uSZjtCXtYt .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-uSZjtCXtYt .card-title {
  color: #000000;
}
.cid-uSZjtCXtYt .card-title a {
  position: relative;
  background: none!important;
}
.cid-uSZjtCXtYt .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-uSZjtCXtYt .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-uSZjtCXtYt .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-uSZjtCXtYt .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-uSZjtCXtYt .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-uSZjtCXtYt .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-uSZjtCXtYt .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-uSZjtCXtYt .card-subtitle {
  color: #818181;
}
.cid-uSZktsxZ6T {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uSZktsxZ6T .mbr-section-subtitle {
  color: #36187d;
}
.cid-uSZktsxZ6T .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uSZkv65kWi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uSZkv65kWi img {
  width: 100%;
  object-fit: cover;
  padding: top;
}
.cid-uSZkv65kWi .quote {
  color: #333333;
  font-weight: 700;
}
.cid-uSZkv65kWi .img-card {
  justify-content: top;
}
.cid-uSZkv65kWi .img-col {
  padding: top;
}
.cid-uSZkv65kWi .card-box {
  padding: top;
}
@media (max-width: 767px) {
  .cid-uSZkv65kWi .wrapper {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uSZkv65kWi .wrapper {
    padding: 20rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uSZkv65kWi .wrapper {
    padding: 0rem 0rem 0rem 4rem;
  }
}
.cid-uSZkv65kWi .card-title,
.cid-uSZkv65kWi .card-box {
  text-align: left;
}
.cid-uSZkv65kWi .mbr-text,
.cid-uSZkv65kWi .mbr-section-btn {
  text-align: left;
  color: #555555;
}
.cid-uSZkw90TZv {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uSZkw90TZv .item {
  padding-bottom: 2rem;
}
.cid-uSZkw90TZv .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uSZkw90TZv .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uSZkw90TZv .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uSZkw90TZv .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uSZkw90TZv .carousel-control,
.cid-uSZkw90TZv .close {
  background: #1b1b1b;
}
.cid-uSZkw90TZv .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uSZkw90TZv .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uSZkw90TZv .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uSZkw90TZv .carousel-control-next span {
  margin-left: 5px;
}
.cid-uSZkw90TZv .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uSZkw90TZv .close::before {
  content: '\e91a';
}
.cid-uSZkw90TZv .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uSZkw90TZv .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uSZkw90TZv .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uSZkw90TZv .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uSZkw90TZv .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uSZkw90TZv .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uSZkw90TZv .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uSZkw90TZv .carousel-indicators li.active,
.cid-uSZkw90TZv .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uSZkw90TZv .carousel-indicators li::after,
.cid-uSZkw90TZv .carousel-indicators li::before {
  content: none;
}
.cid-uSZkw90TZv .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uSZkw90TZv .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uSZkw90TZv .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uSZkw90TZv .carousel-indicators {
    display: none;
  }
}
.cid-uSZkw90TZv .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uSZkw90TZv .carousel-inner > .active {
  display: block;
}
.cid-uSZkw90TZv .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uSZkw90TZv .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uSZkw90TZv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uSZkw90TZv .carousel-control,
  .cid-uSZkw90TZv .carousel-indicators,
  .cid-uSZkw90TZv .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uSZkw90TZv .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uSZkw90TZv .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uSZkw90TZv .carousel-indicators .active,
.cid-uSZkw90TZv .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uSZkw90TZv .carousel-indicators .active {
  background: #fff;
}
.cid-uSZkw90TZv .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uSZkw90TZv .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uSZkw90TZv .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uSZkw90TZv .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uSZkw90TZv .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uSZkw90TZv .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uSZkw90TZv .carousel {
  width: 100%;
}
.cid-uSZkw90TZv .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uSZkw90TZv .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uSZkw90TZv .modal.fade .modal-dialog,
.cid-uSZkw90TZv .modal.in .modal-dialog {
  transform: none;
}
.cid-uSZkw90TZv .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uSZkw90TZv H6 {
  text-align: center;
}
.cid-uSZkxVVkku {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSZkxVVkku .link-wrapper {
  width: 100%;
}
.cid-uSZkxVVkku .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uSZkxVVkku .container {
    padding: 0 1rem;
  }
}
.cid-uSZkxVVkku .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-uSZkxVVkku .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uSZkxVVkku .row {
    justify-content: flex-start;
  }
}
.cid-uSZkxVVkku .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uSZkxVVkku .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-uSZkxVVkku .img-wrapper {
  position: relative;
}
.cid-uSZkxVVkku .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-uSZkxVVkku .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-uSZkxVVkku .card-title {
  color: #000000;
}
.cid-uSZkxVVkku .card-title a {
  position: relative;
  background: none!important;
}
.cid-uSZkxVVkku .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-uSZkxVVkku .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-uSZkxVVkku .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-uSZkxVVkku .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-uSZkxVVkku .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-uSZkxVVkku .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-uSZkxVVkku .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-uSZkxVVkku .card-subtitle {
  color: #818181;
}
.cid-uSZkzNGT06 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uSZkzNGT06 .mbr-section-subtitle {
  color: #36187d;
}
.cid-uSZkzNGT06 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uSZkALCyl6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uSZkALCyl6 img {
  width: 100%;
  object-fit: cover;
  padding: top;
}
.cid-uSZkALCyl6 .quote {
  color: #333333;
  font-weight: 700;
}
.cid-uSZkALCyl6 .img-card {
  justify-content: top;
}
.cid-uSZkALCyl6 .img-col {
  padding: top;
}
.cid-uSZkALCyl6 .card-box {
  padding: top;
}
@media (max-width: 767px) {
  .cid-uSZkALCyl6 .wrapper {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uSZkALCyl6 .wrapper {
    padding: 20rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uSZkALCyl6 .wrapper {
    padding: 0rem 0rem 0rem 4rem;
  }
}
.cid-uSZkALCyl6 .card-title,
.cid-uSZkALCyl6 .card-box {
  text-align: left;
}
.cid-uSZkALCyl6 .mbr-text,
.cid-uSZkALCyl6 .mbr-section-btn {
  text-align: left;
  color: #555555;
}
.cid-uSZkBH2LOd {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uSZkBH2LOd .item {
  padding-bottom: 2rem;
}
.cid-uSZkBH2LOd .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uSZkBH2LOd .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uSZkBH2LOd .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uSZkBH2LOd .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uSZkBH2LOd .carousel-control,
.cid-uSZkBH2LOd .close {
  background: #1b1b1b;
}
.cid-uSZkBH2LOd .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uSZkBH2LOd .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uSZkBH2LOd .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uSZkBH2LOd .carousel-control-next span {
  margin-left: 5px;
}
.cid-uSZkBH2LOd .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uSZkBH2LOd .close::before {
  content: '\e91a';
}
.cid-uSZkBH2LOd .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uSZkBH2LOd .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uSZkBH2LOd .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uSZkBH2LOd .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uSZkBH2LOd .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uSZkBH2LOd .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uSZkBH2LOd .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uSZkBH2LOd .carousel-indicators li.active,
.cid-uSZkBH2LOd .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uSZkBH2LOd .carousel-indicators li::after,
.cid-uSZkBH2LOd .carousel-indicators li::before {
  content: none;
}
.cid-uSZkBH2LOd .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uSZkBH2LOd .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uSZkBH2LOd .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uSZkBH2LOd .carousel-indicators {
    display: none;
  }
}
.cid-uSZkBH2LOd .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uSZkBH2LOd .carousel-inner > .active {
  display: block;
}
.cid-uSZkBH2LOd .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uSZkBH2LOd .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uSZkBH2LOd .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uSZkBH2LOd .carousel-control,
  .cid-uSZkBH2LOd .carousel-indicators,
  .cid-uSZkBH2LOd .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uSZkBH2LOd .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uSZkBH2LOd .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uSZkBH2LOd .carousel-indicators .active,
.cid-uSZkBH2LOd .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uSZkBH2LOd .carousel-indicators .active {
  background: #fff;
}
.cid-uSZkBH2LOd .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uSZkBH2LOd .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uSZkBH2LOd .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uSZkBH2LOd .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uSZkBH2LOd .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uSZkBH2LOd .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uSZkBH2LOd .carousel {
  width: 100%;
}
.cid-uSZkBH2LOd .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uSZkBH2LOd .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uSZkBH2LOd .modal.fade .modal-dialog,
.cid-uSZkBH2LOd .modal.in .modal-dialog {
  transform: none;
}
.cid-uSZkBH2LOd .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uSZkBH2LOd H6 {
  text-align: center;
}
.cid-uSZkCCQve4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSZkCCQve4 .link-wrapper {
  width: 100%;
}
.cid-uSZkCCQve4 .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uSZkCCQve4 .container {
    padding: 0 1rem;
  }
}
.cid-uSZkCCQve4 .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-uSZkCCQve4 .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uSZkCCQve4 .row {
    justify-content: flex-start;
  }
}
.cid-uSZkCCQve4 .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uSZkCCQve4 .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-uSZkCCQve4 .img-wrapper {
  position: relative;
}
.cid-uSZkCCQve4 .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-uSZkCCQve4 .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-uSZkCCQve4 .card-title {
  color: #000000;
}
.cid-uSZkCCQve4 .card-title a {
  position: relative;
  background: none!important;
}
.cid-uSZkCCQve4 .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-uSZkCCQve4 .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-uSZkCCQve4 .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-uSZkCCQve4 .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-uSZkCCQve4 .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-uSZkCCQve4 .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-uSZkCCQve4 .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-uSZkCCQve4 .card-subtitle {
  color: #818181;
}
.cid-sRbdIQGkJU {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sRbdIQGkJU .mbr-section-subtitle {
  color: #36187d;
}
.cid-sRbdIQGkJU .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-sRbdtNnUFh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sRbdtNnUFh img {
  width: 100%;
  object-fit: cover;
  padding: top;
}
.cid-sRbdtNnUFh .quote {
  color: #333333;
  font-weight: 700;
}
.cid-sRbdtNnUFh .img-card {
  justify-content: top;
}
.cid-sRbdtNnUFh .img-col {
  padding: top;
}
.cid-sRbdtNnUFh .card-box {
  padding: top;
}
@media (max-width: 767px) {
  .cid-sRbdtNnUFh .wrapper {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-sRbdtNnUFh .wrapper {
    padding: 20rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sRbdtNnUFh .wrapper {
    padding: 0rem 0rem 0rem 4rem;
  }
}
.cid-sRbdtNnUFh .card-title,
.cid-sRbdtNnUFh .card-box {
  text-align: left;
}
.cid-sRbdtNnUFh .mbr-text,
.cid-sRbdtNnUFh .mbr-section-btn {
  text-align: left;
  color: #555555;
}
.cid-sRbhIfAdzi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sRbhIfAdzi .item {
  padding-bottom: 2rem;
}
.cid-sRbhIfAdzi .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sRbhIfAdzi .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sRbhIfAdzi .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sRbhIfAdzi .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sRbhIfAdzi .carousel-control,
.cid-sRbhIfAdzi .close {
  background: #1b1b1b;
}
.cid-sRbhIfAdzi .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sRbhIfAdzi .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sRbhIfAdzi .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sRbhIfAdzi .carousel-control-next span {
  margin-left: 5px;
}
.cid-sRbhIfAdzi .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sRbhIfAdzi .close::before {
  content: '\e91a';
}
.cid-sRbhIfAdzi .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sRbhIfAdzi .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sRbhIfAdzi .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sRbhIfAdzi .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sRbhIfAdzi .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sRbhIfAdzi .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sRbhIfAdzi .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sRbhIfAdzi .carousel-indicators li.active,
.cid-sRbhIfAdzi .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sRbhIfAdzi .carousel-indicators li::after,
.cid-sRbhIfAdzi .carousel-indicators li::before {
  content: none;
}
.cid-sRbhIfAdzi .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sRbhIfAdzi .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sRbhIfAdzi .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sRbhIfAdzi .carousel-indicators {
    display: none;
  }
}
.cid-sRbhIfAdzi .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sRbhIfAdzi .carousel-inner > .active {
  display: block;
}
.cid-sRbhIfAdzi .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sRbhIfAdzi .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sRbhIfAdzi .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sRbhIfAdzi .carousel-control,
  .cid-sRbhIfAdzi .carousel-indicators,
  .cid-sRbhIfAdzi .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sRbhIfAdzi .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sRbhIfAdzi .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sRbhIfAdzi .carousel-indicators .active,
.cid-sRbhIfAdzi .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sRbhIfAdzi .carousel-indicators .active {
  background: #fff;
}
.cid-sRbhIfAdzi .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sRbhIfAdzi .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sRbhIfAdzi .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sRbhIfAdzi .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sRbhIfAdzi .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sRbhIfAdzi .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sRbhIfAdzi .carousel {
  width: 100%;
}
.cid-sRbhIfAdzi .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sRbhIfAdzi .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sRbhIfAdzi .modal.fade .modal-dialog,
.cid-sRbhIfAdzi .modal.in .modal-dialog {
  transform: none;
}
.cid-sRbhIfAdzi .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sRbhIfAdzi H6 {
  text-align: center;
}
.cid-sRbe25AiTm {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sRbe25AiTm .link-wrapper {
  width: 100%;
}
.cid-sRbe25AiTm .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-sRbe25AiTm .container {
    padding: 0 1rem;
  }
}
.cid-sRbe25AiTm .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-sRbe25AiTm .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-sRbe25AiTm .row {
    justify-content: flex-start;
  }
}
.cid-sRbe25AiTm .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-sRbe25AiTm .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-sRbe25AiTm .img-wrapper {
  position: relative;
}
.cid-sRbe25AiTm .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-sRbe25AiTm .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-sRbe25AiTm .card-title {
  color: #000000;
}
.cid-sRbe25AiTm .card-title a {
  position: relative;
  background: none!important;
}
.cid-sRbe25AiTm .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-sRbe25AiTm .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-sRbe25AiTm .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-sRbe25AiTm .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-sRbe25AiTm .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-sRbe25AiTm .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-sRbe25AiTm .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-sRbe25AiTm .card-subtitle {
  color: #818181;
}
.cid-sRbeTEinTX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sRbeTEinTX .mbr-section-subtitle {
  color: #36187d;
}
.cid-sRbeTEinTX .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-sRbeWH4SPd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sRbeWH4SPd img {
  width: 100%;
  object-fit: cover;
  padding: top;
}
.cid-sRbeWH4SPd .quote {
  color: #333333;
  font-weight: 700;
}
.cid-sRbeWH4SPd .img-card {
  justify-content: top;
}
.cid-sRbeWH4SPd .img-col {
  padding: top;
}
.cid-sRbeWH4SPd .card-box {
  padding: top;
}
@media (max-width: 767px) {
  .cid-sRbeWH4SPd .wrapper {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-sRbeWH4SPd .wrapper {
    padding: 20rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-sRbeWH4SPd .wrapper {
    padding: 0rem 0rem 0rem 4rem;
  }
}
.cid-sRbeWH4SPd .card-title,
.cid-sRbeWH4SPd .card-box {
  text-align: left;
}
.cid-sRbeWH4SPd .mbr-text,
.cid-sRbeWH4SPd .mbr-section-btn {
  text-align: left;
  color: #555555;
}
.cid-sRbhWAYj5j {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sRbhWAYj5j .item {
  padding-bottom: 2rem;
}
.cid-sRbhWAYj5j .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sRbhWAYj5j .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sRbhWAYj5j .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sRbhWAYj5j .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sRbhWAYj5j .carousel-control,
.cid-sRbhWAYj5j .close {
  background: #1b1b1b;
}
.cid-sRbhWAYj5j .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sRbhWAYj5j .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sRbhWAYj5j .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sRbhWAYj5j .carousel-control-next span {
  margin-left: 5px;
}
.cid-sRbhWAYj5j .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sRbhWAYj5j .close::before {
  content: '\e91a';
}
.cid-sRbhWAYj5j .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sRbhWAYj5j .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sRbhWAYj5j .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sRbhWAYj5j .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sRbhWAYj5j .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sRbhWAYj5j .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sRbhWAYj5j .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sRbhWAYj5j .carousel-indicators li.active,
.cid-sRbhWAYj5j .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sRbhWAYj5j .carousel-indicators li::after,
.cid-sRbhWAYj5j .carousel-indicators li::before {
  content: none;
}
.cid-sRbhWAYj5j .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sRbhWAYj5j .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sRbhWAYj5j .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sRbhWAYj5j .carousel-indicators {
    display: none;
  }
}
.cid-sRbhWAYj5j .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sRbhWAYj5j .carousel-inner > .active {
  display: block;
}
.cid-sRbhWAYj5j .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sRbhWAYj5j .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sRbhWAYj5j .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sRbhWAYj5j .carousel-control,
  .cid-sRbhWAYj5j .carousel-indicators,
  .cid-sRbhWAYj5j .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sRbhWAYj5j .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sRbhWAYj5j .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sRbhWAYj5j .carousel-indicators .active,
.cid-sRbhWAYj5j .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sRbhWAYj5j .carousel-indicators .active {
  background: #fff;
}
.cid-sRbhWAYj5j .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sRbhWAYj5j .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sRbhWAYj5j .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sRbhWAYj5j .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sRbhWAYj5j .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sRbhWAYj5j .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sRbhWAYj5j .carousel {
  width: 100%;
}
.cid-sRbhWAYj5j .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sRbhWAYj5j .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sRbhWAYj5j .modal.fade .modal-dialog,
.cid-sRbhWAYj5j .modal.in .modal-dialog {
  transform: none;
}
.cid-sRbhWAYj5j .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sRbhWAYj5j H6 {
  text-align: center;
}
.cid-uP8Hj0AxaA {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP8Hj0AxaA .mbr-section-subtitle {
  color: #36187d;
}
.cid-uP8Hj0AxaA .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-uP8HjGBX40 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP8HjGBX40 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP8HjGBX40 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uP8HjGBX40 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uP8HjGBX40 .row {
  flex-direction: row-reverse;
}
.cid-uP8HjGBX40 img {
  width: 100%;
}
.cid-sQZOGB0Gwl {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sQZOGB0Gwl .logo__image {
  width: 100px;
  object-fit: cover;
}
.cid-sQZOGB0Gwl .brand__text {
  margin-bottom: 0;
}
.cid-sQZOGB0Gwl .brand__text a {
  font-weight: 700;
}
.cid-sQZOGB0Gwl a:hover {
  color: #82786e !important;
}
.cid-sQZOGB0Gwl .mbr-text,
.cid-sQZOGB0Gwl .privacy {
  margin-bottom: 0;
  color: #919dab;
}
.cid-sQZOGB0Gwl .menu {
  margin: 10px 0;
}
.cid-sQZOGB0Gwl .foot__menu {
  margin: 0;
  padding: 0;
}
.cid-sQZOGB0Gwl .menu__items {
  margin-right: 30px;
  display: inline-block;
  transition: all .25s;
  margin-bottom: 0;
}
.cid-sQZOGB0Gwl .menu__items:last-child {
  margin-right: 0;
}
.cid-sQZOGB0Gwl .divider {
  background-color: #cccccc;
  opacity: .5;
  margin: 30px 0 40px;
  height: 2px;
}
.cid-sQZOGB0Gwl .social {
  margin-top: 10px;
}
.cid-sQZOGB0Gwl .social a {
  margin: 0 15px;
}
.cid-sQZOGB0Gwl .social a:last-child {
  margin-right: 0;
}
.cid-sQZOGB0Gwl .social a:first-child {
  margin-left: 0;
}
.cid-sQZOGB0Gwl .mbr-iconfont {
  font-size: 18px;
  transition: all .25s ease;
  transition-duration: 0s;
}
.cid-sQZOGB0Gwl .privacy {
  color: #000000;
}
.cid-sQZOGB0Gwl .mbr-text {
  color: #999999;
}
.cid-uP8E7DbHVa .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-uP8E7DbHVa .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-uP8E7DbHVa .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-uP8E7DbHVa .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-uP8E7DbHVa .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-uP8E7DbHVa .navbar.opened {
  transition: all 0.3s;
}
.cid-uP8E7DbHVa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uP8E7DbHVa .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uP8E7DbHVa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uP8E7DbHVa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uP8E7DbHVa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uP8E7DbHVa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uP8E7DbHVa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uP8E7DbHVa .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uP8E7DbHVa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uP8E7DbHVa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uP8E7DbHVa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uP8E7DbHVa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uP8E7DbHVa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uP8E7DbHVa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uP8E7DbHVa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uP8E7DbHVa .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uP8E7DbHVa .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uP8E7DbHVa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uP8E7DbHVa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uP8E7DbHVa .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uP8E7DbHVa .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uP8E7DbHVa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uP8E7DbHVa .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uP8E7DbHVa .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uP8E7DbHVa .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uP8E7DbHVa .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-uP8E7DbHVa .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uP8E7DbHVa .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-uP8E7DbHVa .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-uP8E7DbHVa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-uP8E7DbHVa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uP8E7DbHVa .mbr-iconfont {
  color: #97c76b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uP8E7DbHVa .navbar-caption {
  padding-right: 4rem;
}
.cid-uP8E7DbHVa .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-uP8E7DbHVa .dropdown-menu,
.cid-uP8E7DbHVa .navbar.opened {
  background: #ffffff !important;
}
.cid-uP8E7DbHVa .nav-item:focus,
.cid-uP8E7DbHVa .nav-link:focus {
  outline: none;
}
.cid-uP8E7DbHVa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uP8E7DbHVa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uP8E7DbHVa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uP8E7DbHVa .dropdown .dropdown-menu .dropdown-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-uP8E7DbHVa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uP8E7DbHVa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uP8E7DbHVa .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uP8E7DbHVa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uP8E7DbHVa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uP8E7DbHVa .dropdown-item.active,
.cid-uP8E7DbHVa .dropdown-item:active {
  background-color: transparent;
}
.cid-uP8E7DbHVa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uP8E7DbHVa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uP8E7DbHVa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uP8E7DbHVa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uP8E7DbHVa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uP8E7DbHVa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uP8E7DbHVa ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uP8E7DbHVa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uP8E7DbHVa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uP8E7DbHVa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00498d;
}
.cid-uP8E7DbHVa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uP8E7DbHVa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP8E7DbHVa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP8E7DbHVa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uP8E7DbHVa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP8E7DbHVa nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uP8E7DbHVa nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uP8E7DbHVa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP8E7DbHVa .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uP8E7DbHVa a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uP8E7DbHVa .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uP8E7DbHVa .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uP8E7DbHVa .navbar {
    height: 77px;
  }
  .cid-uP8E7DbHVa .navbar.opened {
    height: auto;
  }
  .cid-uP8E7DbHVa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPdSbWTa19 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #00488c;
}
.cid-uPdSbWTa19 .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #0095ff;
  margin-bottom: 2rem;
}
.cid-uP8EUrvOnn {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uP8EUrvOnn .mbr-section-subtitle {
  color: #36187d;
}
.cid-uP8EUrvOnn .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uP8EV5jcKn {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uP8EV5jcKn .link-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.cid-uP8EV5jcKn .link {
  display: inline-block;
  position: relative;
  width: fit-content;
  padding: 0 1.4rem;
}
.cid-uP8EV5jcKn .link:before {
  position: absolute;
  left: 0px;
  top: 55%;
  transform: translateY(-50%);
  content: "\e909";
  font-family: 'Moririse2' !important;
  color: #00488c;
  font-size: 0.8rem;
}
.cid-uP8EV5jcKn .link,
.cid-uP8EV5jcKn .link-wrap {
  color: #555555;
}
.cid-uP8EV5jcKn img {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uP8EV5jcKn .card {
    margin-bottom: 2rem!important;
  }
}
@media (max-width: 767px) {
  .cid-uP8EV5jcKn .link-wrap {
    align-items: left !important;
  }
}
.cid-uP8EV5jcKn .mbr-text,
.cid-uP8EV5jcKn .link-wrap,
.cid-uP8EV5jcKn .mbr-section-btn {
  color: #555555;
  text-align: left !important;
}
.cid-uP8E7FiLJP {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP8E7FiLJP .link-wrapper {
  width: 100%;
}
.cid-uP8E7FiLJP .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uP8E7FiLJP .container {
    padding: 0 1rem;
  }
}
.cid-uP8E7FiLJP .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-uP8E7FiLJP .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uP8E7FiLJP .row {
    justify-content: flex-start;
  }
}
.cid-uP8E7FiLJP .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uP8E7FiLJP .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-uP8E7FiLJP .img-wrapper {
  position: relative;
}
.cid-uP8E7FiLJP .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-uP8E7FiLJP .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-uP8E7FiLJP .card-title {
  color: #000000;
}
.cid-uP8E7FiLJP .card-title a {
  position: relative;
  background: none!important;
}
.cid-uP8E7FiLJP .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-uP8E7FiLJP .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-uP8E7FiLJP .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-uP8E7FiLJP .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-uP8E7FiLJP .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-uP8E7FiLJP .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-uP8E7FiLJP .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-uP8E7FiLJP .card-subtitle {
  color: #818181;
}
.cid-uP8FAEz6jP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uP8FAEz6jP .mbr-section-subtitle {
  color: #36187d;
}
.cid-uP8FAEz6jP .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uP8FzdSDpX {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uP8FzdSDpX .link-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.cid-uP8FzdSDpX .link {
  display: inline-block;
  position: relative;
  width: fit-content;
  padding: 0 1.4rem;
}
.cid-uP8FzdSDpX .link:before {
  position: absolute;
  left: 0px;
  top: 55%;
  transform: translateY(-50%);
  content: "\e909";
  font-family: 'Moririse2' !important;
  color: #00488c;
  font-size: 0.8rem;
}
.cid-uP8FzdSDpX .link,
.cid-uP8FzdSDpX .link-wrap {
  color: #555555;
}
.cid-uP8FzdSDpX img {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uP8FzdSDpX .card {
    margin-bottom: 2rem!important;
  }
}
@media (max-width: 767px) {
  .cid-uP8FzdSDpX .link-wrap {
    align-items: left !important;
  }
}
.cid-uP8FzdSDpX .mbr-text,
.cid-uP8FzdSDpX .link-wrap,
.cid-uP8FzdSDpX .mbr-section-btn {
  color: #555555;
  text-align: left !important;
}
.cid-uP8FY0Zzei {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uP8FY0Zzei .mbr-section-subtitle {
  color: #36187d;
}
.cid-uP8FY0Zzei .mbr-text {
  color: #555555;
  text-align: left;
}
.cid-uP8E7N9n80 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP8E7N9n80 .link-wrapper {
  width: 100%;
}
.cid-uP8E7N9n80 .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uP8E7N9n80 .container {
    padding: 0 1rem;
  }
}
.cid-uP8E7N9n80 .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-uP8E7N9n80 .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uP8E7N9n80 .row {
    justify-content: flex-start;
  }
}
.cid-uP8E7N9n80 .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uP8E7N9n80 .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-uP8E7N9n80 .img-wrapper {
  position: relative;
}
.cid-uP8E7N9n80 .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-uP8E7N9n80 .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-uP8E7N9n80 .card-title {
  color: #000000;
}
.cid-uP8E7N9n80 .card-title a {
  position: relative;
  background: none!important;
}
.cid-uP8E7N9n80 .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-uP8E7N9n80 .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-uP8E7N9n80 .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-uP8E7N9n80 .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-uP8E7N9n80 .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-uP8E7N9n80 .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-uP8E7N9n80 .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-uP8E7N9n80 .card-subtitle {
  color: #818181;
}
.cid-uP8H5meeP9 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP8H5meeP9 .mbr-section-subtitle {
  color: #36187d;
}
.cid-uP8H5meeP9 .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-uP8H67i3j3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uP8H67i3j3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP8H67i3j3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uP8H67i3j3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uP8H67i3j3 .row {
  flex-direction: row-reverse;
}
.cid-uP8H67i3j3 img {
  width: 100%;
}
.cid-uP8E7Oz6tr {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uP8E7Oz6tr .logo__image {
  width: 100px;
  object-fit: cover;
}
.cid-uP8E7Oz6tr .brand__text {
  margin-bottom: 0;
}
.cid-uP8E7Oz6tr .brand__text a {
  font-weight: 700;
}
.cid-uP8E7Oz6tr a:hover {
  color: #82786e !important;
}
.cid-uP8E7Oz6tr .mbr-text,
.cid-uP8E7Oz6tr .privacy {
  margin-bottom: 0;
  color: #919dab;
}
.cid-uP8E7Oz6tr .menu {
  margin: 10px 0;
}
.cid-uP8E7Oz6tr .foot__menu {
  margin: 0;
  padding: 0;
}
.cid-uP8E7Oz6tr .menu__items {
  margin-right: 30px;
  display: inline-block;
  transition: all .25s;
  margin-bottom: 0;
}
.cid-uP8E7Oz6tr .menu__items:last-child {
  margin-right: 0;
}
.cid-uP8E7Oz6tr .divider {
  background-color: #cccccc;
  opacity: .5;
  margin: 30px 0 40px;
  height: 2px;
}
.cid-uP8E7Oz6tr .social {
  margin-top: 10px;
}
.cid-uP8E7Oz6tr .social a {
  margin: 0 15px;
}
.cid-uP8E7Oz6tr .social a:last-child {
  margin-right: 0;
}
.cid-uP8E7Oz6tr .social a:first-child {
  margin-left: 0;
}
.cid-uP8E7Oz6tr .mbr-iconfont {
  font-size: 18px;
  transition: all .25s ease;
  transition-duration: 0s;
}
.cid-uP8E7Oz6tr .privacy {
  color: #000000;
}
.cid-uP8E7Oz6tr .mbr-text {
  color: #999999;
}
.cid-uPdSj0W6Jg .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-uPdSj0W6Jg .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-uPdSj0W6Jg .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-uPdSj0W6Jg .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-uPdSj0W6Jg .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-uPdSj0W6Jg .navbar.opened {
  transition: all 0.3s;
}
.cid-uPdSj0W6Jg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPdSj0W6Jg .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uPdSj0W6Jg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPdSj0W6Jg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPdSj0W6Jg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uPdSj0W6Jg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPdSj0W6Jg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPdSj0W6Jg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uPdSj0W6Jg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPdSj0W6Jg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPdSj0W6Jg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPdSj0W6Jg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPdSj0W6Jg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPdSj0W6Jg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPdSj0W6Jg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPdSj0W6Jg .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uPdSj0W6Jg .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPdSj0W6Jg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPdSj0W6Jg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPdSj0W6Jg .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPdSj0W6Jg .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uPdSj0W6Jg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPdSj0W6Jg .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uPdSj0W6Jg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uPdSj0W6Jg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uPdSj0W6Jg .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-uPdSj0W6Jg .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uPdSj0W6Jg .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-uPdSj0W6Jg .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-uPdSj0W6Jg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-uPdSj0W6Jg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPdSj0W6Jg .mbr-iconfont {
  color: #97c76b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPdSj0W6Jg .navbar-caption {
  padding-right: 4rem;
}
.cid-uPdSj0W6Jg .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-uPdSj0W6Jg .dropdown-menu,
.cid-uPdSj0W6Jg .navbar.opened {
  background: #ffffff !important;
}
.cid-uPdSj0W6Jg .nav-item:focus,
.cid-uPdSj0W6Jg .nav-link:focus {
  outline: none;
}
.cid-uPdSj0W6Jg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPdSj0W6Jg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPdSj0W6Jg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPdSj0W6Jg .dropdown .dropdown-menu .dropdown-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-uPdSj0W6Jg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPdSj0W6Jg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPdSj0W6Jg .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uPdSj0W6Jg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPdSj0W6Jg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPdSj0W6Jg .dropdown-item.active,
.cid-uPdSj0W6Jg .dropdown-item:active {
  background-color: transparent;
}
.cid-uPdSj0W6Jg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPdSj0W6Jg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPdSj0W6Jg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPdSj0W6Jg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPdSj0W6Jg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPdSj0W6Jg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPdSj0W6Jg ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uPdSj0W6Jg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPdSj0W6Jg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPdSj0W6Jg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00498d;
}
.cid-uPdSj0W6Jg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPdSj0W6Jg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPdSj0W6Jg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPdSj0W6Jg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPdSj0W6Jg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPdSj0W6Jg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPdSj0W6Jg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPdSj0W6Jg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPdSj0W6Jg .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uPdSj0W6Jg a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPdSj0W6Jg .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uPdSj0W6Jg .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPdSj0W6Jg .navbar {
    height: 77px;
  }
  .cid-uPdSj0W6Jg .navbar.opened {
    height: auto;
  }
  .cid-uPdSj0W6Jg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPdSj1GBE1 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #00488c;
}
.cid-uPdSj1GBE1 .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #0095ff;
  margin-bottom: 2rem;
}
.cid-uTygvIKqNC {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uTygvIKqNC .mbr-section-subtitle {
  color: #36187d;
}
.cid-uTygvIKqNC .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-uTygItiiNE {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uTygItiiNE .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uTygItiiNE .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-uPdSKWIOrs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uPdSKWIOrs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdSKWIOrs .row {
  flex-direction: row-reverse;
}
.cid-uPdSKWIOrs img {
  width: 100%;
}
.cid-uPdSKWIOrs .mbr-description {
  color: #555555;
}
.cid-uPdTMTEGpK {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPdTMTEGpK .link-wrapper {
  width: 100%;
}
.cid-uPdTMTEGpK .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uPdTMTEGpK .container {
    padding: 0 1rem;
  }
}
.cid-uPdTMTEGpK .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-uPdTMTEGpK .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uPdTMTEGpK .row {
    justify-content: flex-start;
  }
}
.cid-uPdTMTEGpK .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uPdTMTEGpK .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-uPdTMTEGpK .img-wrapper {
  position: relative;
}
.cid-uPdTMTEGpK .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-uPdTMTEGpK .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-uPdTMTEGpK .card-title {
  color: #000000;
}
.cid-uPdTMTEGpK .card-title a {
  position: relative;
  background: none!important;
}
.cid-uPdTMTEGpK .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-uPdTMTEGpK .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-uPdTMTEGpK .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-uPdTMTEGpK .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-uPdTMTEGpK .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-uPdTMTEGpK .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-uPdTMTEGpK .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-uPdTMTEGpK .card-subtitle {
  color: #818181;
}
.cid-uPdSUD1wdp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPdSUD1wdp .mbr-section-subtitle {
  color: #36187d;
}
.cid-uPdSUD1wdp .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uPdSKb31T5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPdSKb31T5 img,
.cid-uPdSKb31T5 .item-img {
  width: 100%;
}
.cid-uPdSKb31T5 .item:focus,
.cid-uPdSKb31T5 span:focus {
  outline: none;
}
.cid-uPdSKb31T5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uPdSKb31T5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPdSKb31T5 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPdSKb31T5 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uPdSKb31T5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPdSKb31T5 .mbr-section-title {
  color: #232323;
}
.cid-uPdSKb31T5 .mbr-text,
.cid-uPdSKb31T5 .mbr-section-btn {
  text-align: left;
}
.cid-uPdSKb31T5 .item-title {
  text-align: center;
  color: #555555;
}
.cid-uPdSKb31T5 .item-subtitle {
  text-align: left;
}
.cid-uPdTOvpDyJ {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPdTOvpDyJ .mbr-section-subtitle {
  color: #36187d;
}
.cid-uPdTOvpDyJ .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uPdUFX172t {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uPdUFX172t .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-uPdUFX172t .mbr-section-subtitle {
  color: #444444;
  letter-spacing: 0.03em;
}
.cid-uPdUFX172t .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-uPdUFX172t .wrap-img {
  padding-bottom: 1rem;
}
.cid-uPdUFX172t .wrap-img img {
  max-width: 100%;
}
.cid-uPdUFX172t .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-uSZdZfSEBY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uSZdZfSEBY .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-uSZdZfSEBY .mbr-section-subtitle {
  color: #444444;
  letter-spacing: 0.03em;
}
.cid-uSZdZfSEBY .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-uSZdZfSEBY .wrap-img {
  padding-bottom: 1rem;
}
.cid-uSZdZfSEBY .wrap-img img {
  max-width: 100%;
}
.cid-uSZdZfSEBY .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-uPdTSJ5nzM {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPdTSJ5nzM .link-wrapper {
  width: 100%;
}
.cid-uPdTSJ5nzM .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uPdTSJ5nzM .container {
    padding: 0 1rem;
  }
}
.cid-uPdTSJ5nzM .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-uPdTSJ5nzM .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uPdTSJ5nzM .row {
    justify-content: flex-start;
  }
}
.cid-uPdTSJ5nzM .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uPdTSJ5nzM .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-uPdTSJ5nzM .img-wrapper {
  position: relative;
}
.cid-uPdTSJ5nzM .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-uPdTSJ5nzM .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-uPdTSJ5nzM .card-title {
  color: #000000;
}
.cid-uPdTSJ5nzM .card-title a {
  position: relative;
  background: none!important;
}
.cid-uPdTSJ5nzM .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-uPdTSJ5nzM .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-uPdTSJ5nzM .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-uPdTSJ5nzM .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-uPdTSJ5nzM .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-uPdTSJ5nzM .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-uPdTSJ5nzM .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-uPdTSJ5nzM .card-subtitle {
  color: #818181;
}
.cid-uPdSj56o5q {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPdSj56o5q .mbr-section-subtitle {
  color: #36187d;
}
.cid-uPdSj56o5q .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-uPdSj5kpew {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPdSj5kpew .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPdSj5kpew .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uPdSj5kpew .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPdSj5kpew .row {
  flex-direction: row-reverse;
}
.cid-uPdSj5kpew img {
  width: 100%;
}
.cid-uPdSj5zIp9 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uPdSj5zIp9 .logo__image {
  width: 100px;
  object-fit: cover;
}
.cid-uPdSj5zIp9 .brand__text {
  margin-bottom: 0;
}
.cid-uPdSj5zIp9 .brand__text a {
  font-weight: 700;
}
.cid-uPdSj5zIp9 a:hover {
  color: #82786e !important;
}
.cid-uPdSj5zIp9 .mbr-text,
.cid-uPdSj5zIp9 .privacy {
  margin-bottom: 0;
  color: #919dab;
}
.cid-uPdSj5zIp9 .menu {
  margin: 10px 0;
}
.cid-uPdSj5zIp9 .foot__menu {
  margin: 0;
  padding: 0;
}
.cid-uPdSj5zIp9 .menu__items {
  margin-right: 30px;
  display: inline-block;
  transition: all .25s;
  margin-bottom: 0;
}
.cid-uPdSj5zIp9 .menu__items:last-child {
  margin-right: 0;
}
.cid-uPdSj5zIp9 .divider {
  background-color: #cccccc;
  opacity: .5;
  margin: 30px 0 40px;
  height: 2px;
}
.cid-uPdSj5zIp9 .social {
  margin-top: 10px;
}
.cid-uPdSj5zIp9 .social a {
  margin: 0 15px;
}
.cid-uPdSj5zIp9 .social a:last-child {
  margin-right: 0;
}
.cid-uPdSj5zIp9 .social a:first-child {
  margin-left: 0;
}
.cid-uPdSj5zIp9 .mbr-iconfont {
  font-size: 18px;
  transition: all .25s ease;
  transition-duration: 0s;
}
.cid-uPdSj5zIp9 .privacy {
  color: #000000;
}
.cid-uPdSj5zIp9 .mbr-text {
  color: #999999;
}
.cid-uSZOd33xoC .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -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-uSZOd33xoC .display-2 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .cid-uSZOd33xoC .icons-menu {
    padding: 1rem 0 !important;
  }
}
.cid-uSZOd33xoC .container {
  max-width: 1800px;
  display: flex;
  margin: auto;
}
.cid-uSZOd33xoC .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-uSZOd33xoC .navbar.opened {
  transition: all 0.3s;
}
.cid-uSZOd33xoC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSZOd33xoC .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uSZOd33xoC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSZOd33xoC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSZOd33xoC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-uSZOd33xoC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSZOd33xoC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSZOd33xoC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uSZOd33xoC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSZOd33xoC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSZOd33xoC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSZOd33xoC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSZOd33xoC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSZOd33xoC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSZOd33xoC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSZOd33xoC .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uSZOd33xoC .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uSZOd33xoC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSZOd33xoC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSZOd33xoC .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSZOd33xoC .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uSZOd33xoC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uSZOd33xoC .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uSZOd33xoC .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uSZOd33xoC .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uSZOd33xoC .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
}
.cid-uSZOd33xoC .nav-link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uSZOd33xoC .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-uSZOd33xoC .dropdown-menu {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
.cid-uSZOd33xoC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-uSZOd33xoC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSZOd33xoC .mbr-iconfont {
  color: #97c76b !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSZOd33xoC .navbar-caption {
  padding-right: 4rem;
}
.cid-uSZOd33xoC .navbar-nav {
  justify-content: center;
  width: -webkit-fill-available;
}
.cid-uSZOd33xoC .dropdown-menu,
.cid-uSZOd33xoC .navbar.opened {
  background: #ffffff !important;
}
.cid-uSZOd33xoC .nav-item:focus,
.cid-uSZOd33xoC .nav-link:focus {
  outline: none;
}
.cid-uSZOd33xoC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uSZOd33xoC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSZOd33xoC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uSZOd33xoC .dropdown .dropdown-menu .dropdown-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-uSZOd33xoC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSZOd33xoC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSZOd33xoC .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSZOd33xoC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSZOd33xoC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSZOd33xoC .dropdown-item.active,
.cid-uSZOd33xoC .dropdown-item:active {
  background-color: transparent;
}
.cid-uSZOd33xoC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSZOd33xoC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSZOd33xoC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSZOd33xoC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uSZOd33xoC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSZOd33xoC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSZOd33xoC ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uSZOd33xoC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSZOd33xoC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uSZOd33xoC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00498d;
}
.cid-uSZOd33xoC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSZOd33xoC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSZOd33xoC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSZOd33xoC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSZOd33xoC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSZOd33xoC nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSZOd33xoC nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSZOd33xoC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSZOd33xoC .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uSZOd33xoC a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uSZOd33xoC .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 160px;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-uSZOd33xoC .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSZOd33xoC .navbar {
    height: 77px;
  }
  .cid-uSZOd33xoC .navbar.opened {
    height: auto;
  }
  .cid-uSZOd33xoC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSZOd4HbOI {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/header-technologiepartnerschaften.jpg");
}
.cid-uSZOd4HbOI .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #0095ff;
  margin-bottom: 2rem;
}
.cid-uSZOd5iccU {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSZOd5iccU .mbr-section-subtitle {
  color: #36187d;
}
.cid-uSZOd5iccU .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-uSZPuOQhUb {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uSZPuOQhUb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSZPuOQhUb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uSZPuOQhUb .container {
    max-width: 1400px;
  }
}
.cid-uSZPuOQhUb .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #00498d;
  margin-bottom: 2rem;
}
.cid-uSZPuOQhUb .row {
  justify-content: center;
}
.cid-uSZPuOQhUb .card-text {
  color: #555555;
}
.cid-uSZPuOQhUb .card-title,
.cid-uSZPuOQhUb .iconfont-wrapper {
  color: #555555;
}
.cid-uSZQT72Lu1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSZQT72Lu1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSZQT72Lu1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSZQT72Lu1 .card-wrapper {
  background: #00498d;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uSZQT72Lu1 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uSZQT72Lu1 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSZQT72Lu1 .card-wrapper {
    padding: 4rem;
  }
}
.cid-uSZQT72Lu1 .mbr-text,
.cid-uSZQT72Lu1 .mbr-section-btn {
  color: #ffffff;
}
.cid-uSZQT72Lu1 .card-title,
.cid-uSZQT72Lu1 .card-box {
  text-align: center;
}
.cid-uSZRNpWukp {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSZRNpWukp img,
.cid-uSZRNpWukp .item-img {
  width: 100%;
}
.cid-uSZRNpWukp .item:focus,
.cid-uSZRNpWukp span:focus {
  outline: none;
}
.cid-uSZRNpWukp .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uSZRNpWukp .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSZRNpWukp .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uSZRNpWukp .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSZRNpWukp .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uSZRNpWukp .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uSZRNpWukp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSZRNpWukp .mbr-section-title {
  color: #000000;
}
.cid-uSZRNpWukp .mbr-text,
.cid-uSZRNpWukp .mbr-section-btn {
  text-align: left;
  color: #555555;
}
.cid-uSZRNpWukp .item-title {
  text-align: left;
  color: #555555;
}
.cid-uSZRNpWukp .item-subtitle {
  text-align: left;
}
.cid-uSZTgp6Vsk {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uSZTgp6Vsk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSZTgp6Vsk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSZTgp6Vsk .card-wrapper {
  background: #00498d;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uSZTgp6Vsk .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uSZTgp6Vsk .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSZTgp6Vsk .card-wrapper {
    padding: 4rem;
  }
}
.cid-uSZTgp6Vsk .mbr-text,
.cid-uSZTgp6Vsk .mbr-section-btn {
  color: #ffffff;
}
.cid-uSZTgp6Vsk .card-title,
.cid-uSZTgp6Vsk .card-box {
  text-align: center;
}
.cid-uT01GHBPcy {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uT01GHBPcy .mbr-section-subtitle {
  color: #36187d;
}
.cid-uT01GHBPcy .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uT01HqJykr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uT01HqJykr img {
  width: 100%;
  object-fit: cover;
  padding: top;
}
.cid-uT01HqJykr .quote {
  color: #333333;
  font-weight: 700;
}
.cid-uT01HqJykr .img-card {
  justify-content: top;
}
.cid-uT01HqJykr .img-col {
  padding: top;
}
.cid-uT01HqJykr .card-box {
  padding: top;
}
@media (max-width: 767px) {
  .cid-uT01HqJykr .wrapper {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uT01HqJykr .wrapper {
    padding: 20rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uT01HqJykr .wrapper {
    padding: 0rem 0rem 0rem 4rem;
  }
}
.cid-uT01HqJykr .card-title,
.cid-uT01HqJykr .card-box {
  text-align: left;
}
.cid-uT01HqJykr .mbr-text,
.cid-uT01HqJykr .mbr-section-btn {
  text-align: left;
  color: #555555;
}
.cid-uT02vrbK7j {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uT02vrbK7j .item {
  padding-bottom: 2rem;
}
.cid-uT02vrbK7j .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uT02vrbK7j .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uT02vrbK7j .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uT02vrbK7j .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uT02vrbK7j .carousel-control,
.cid-uT02vrbK7j .close {
  background: #1b1b1b;
}
.cid-uT02vrbK7j .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uT02vrbK7j .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uT02vrbK7j .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uT02vrbK7j .carousel-control-next span {
  margin-left: 5px;
}
.cid-uT02vrbK7j .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uT02vrbK7j .close::before {
  content: '\e91a';
}
.cid-uT02vrbK7j .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uT02vrbK7j .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uT02vrbK7j .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uT02vrbK7j .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uT02vrbK7j .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uT02vrbK7j .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uT02vrbK7j .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uT02vrbK7j .carousel-indicators li.active,
.cid-uT02vrbK7j .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uT02vrbK7j .carousel-indicators li::after,
.cid-uT02vrbK7j .carousel-indicators li::before {
  content: none;
}
.cid-uT02vrbK7j .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uT02vrbK7j .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uT02vrbK7j .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uT02vrbK7j .carousel-indicators {
    display: none;
  }
}
.cid-uT02vrbK7j .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uT02vrbK7j .carousel-inner > .active {
  display: block;
}
.cid-uT02vrbK7j .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uT02vrbK7j .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uT02vrbK7j .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uT02vrbK7j .carousel-control,
  .cid-uT02vrbK7j .carousel-indicators,
  .cid-uT02vrbK7j .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uT02vrbK7j .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uT02vrbK7j .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uT02vrbK7j .carousel-indicators .active,
.cid-uT02vrbK7j .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uT02vrbK7j .carousel-indicators .active {
  background: #fff;
}
.cid-uT02vrbK7j .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uT02vrbK7j .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uT02vrbK7j .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uT02vrbK7j .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uT02vrbK7j .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uT02vrbK7j .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uT02vrbK7j .carousel {
  width: 100%;
}
.cid-uT02vrbK7j .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uT02vrbK7j .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uT02vrbK7j .modal.fade .modal-dialog,
.cid-uT02vrbK7j .modal.in .modal-dialog {
  transform: none;
}
.cid-uT02vrbK7j .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uT02vrbK7j H6 {
  text-align: center;
}
.cid-uT01QPc9mR {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uT01QPc9mR .link-wrapper {
  width: 100%;
}
.cid-uT01QPc9mR .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uT01QPc9mR .container {
    padding: 0 1rem;
  }
}
.cid-uT01QPc9mR .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-uT01QPc9mR .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uT01QPc9mR .row {
    justify-content: flex-start;
  }
}
.cid-uT01QPc9mR .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uT01QPc9mR .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-uT01QPc9mR .img-wrapper {
  position: relative;
}
.cid-uT01QPc9mR .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-uT01QPc9mR .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-uT01QPc9mR .card-title {
  color: #000000;
}
.cid-uT01QPc9mR .card-title a {
  position: relative;
  background: none!important;
}
.cid-uT01QPc9mR .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-uT01QPc9mR .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-uT01QPc9mR .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-uT01QPc9mR .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-uT01QPc9mR .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-uT01QPc9mR .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-uT01QPc9mR .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-uT01QPc9mR .card-subtitle {
  color: #818181;
}
.cid-uT0p6qwBBb {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uT0p6qwBBb .mbr-section-subtitle {
  color: #36187d;
}
.cid-uT0p6qwBBb .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uT0p7s1f6m {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uT0p7s1f6m img {
  width: 100%;
  object-fit: cover;
  padding: top;
}
.cid-uT0p7s1f6m .quote {
  color: #333333;
  font-weight: 700;
}
.cid-uT0p7s1f6m .img-card {
  justify-content: top;
}
.cid-uT0p7s1f6m .img-col {
  padding: top;
}
.cid-uT0p7s1f6m .card-box {
  padding: top;
}
@media (max-width: 767px) {
  .cid-uT0p7s1f6m .wrapper {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uT0p7s1f6m .wrapper {
    padding: 20rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uT0p7s1f6m .wrapper {
    padding: 0rem 0rem 0rem 4rem;
  }
}
.cid-uT0p7s1f6m .card-title,
.cid-uT0p7s1f6m .card-box {
  text-align: left;
}
.cid-uT0p7s1f6m .mbr-text,
.cid-uT0p7s1f6m .mbr-section-btn {
  text-align: left;
  color: #555555;
}
.cid-uT0p7VvJWC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uT0p7VvJWC .item {
  padding-bottom: 2rem;
}
.cid-uT0p7VvJWC .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uT0p7VvJWC .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uT0p7VvJWC .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uT0p7VvJWC .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uT0p7VvJWC .carousel-control,
.cid-uT0p7VvJWC .close {
  background: #1b1b1b;
}
.cid-uT0p7VvJWC .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uT0p7VvJWC .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uT0p7VvJWC .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uT0p7VvJWC .carousel-control-next span {
  margin-left: 5px;
}
.cid-uT0p7VvJWC .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uT0p7VvJWC .close::before {
  content: '\e91a';
}
.cid-uT0p7VvJWC .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uT0p7VvJWC .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uT0p7VvJWC .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uT0p7VvJWC .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uT0p7VvJWC .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uT0p7VvJWC .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uT0p7VvJWC .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uT0p7VvJWC .carousel-indicators li.active,
.cid-uT0p7VvJWC .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uT0p7VvJWC .carousel-indicators li::after,
.cid-uT0p7VvJWC .carousel-indicators li::before {
  content: none;
}
.cid-uT0p7VvJWC .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uT0p7VvJWC .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uT0p7VvJWC .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uT0p7VvJWC .carousel-indicators {
    display: none;
  }
}
.cid-uT0p7VvJWC .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uT0p7VvJWC .carousel-inner > .active {
  display: block;
}
.cid-uT0p7VvJWC .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uT0p7VvJWC .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uT0p7VvJWC .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uT0p7VvJWC .carousel-control,
  .cid-uT0p7VvJWC .carousel-indicators,
  .cid-uT0p7VvJWC .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uT0p7VvJWC .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uT0p7VvJWC .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uT0p7VvJWC .carousel-indicators .active,
.cid-uT0p7VvJWC .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uT0p7VvJWC .carousel-indicators .active {
  background: #fff;
}
.cid-uT0p7VvJWC .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uT0p7VvJWC .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uT0p7VvJWC .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uT0p7VvJWC .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uT0p7VvJWC .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uT0p7VvJWC .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uT0p7VvJWC .carousel {
  width: 100%;
}
.cid-uT0p7VvJWC .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uT0p7VvJWC .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uT0p7VvJWC .modal.fade .modal-dialog,
.cid-uT0p7VvJWC .modal.in .modal-dialog {
  transform: none;
}
.cid-uT0p7VvJWC .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uT0p7VvJWC H6 {
  text-align: center;
}
.cid-uT0p8z9hKP {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uT0p8z9hKP .link-wrapper {
  width: 100%;
}
.cid-uT0p8z9hKP .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uT0p8z9hKP .container {
    padding: 0 1rem;
  }
}
.cid-uT0p8z9hKP .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-uT0p8z9hKP .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uT0p8z9hKP .row {
    justify-content: flex-start;
  }
}
.cid-uT0p8z9hKP .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uT0p8z9hKP .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-uT0p8z9hKP .img-wrapper {
  position: relative;
}
.cid-uT0p8z9hKP .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-uT0p8z9hKP .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-uT0p8z9hKP .card-title {
  color: #000000;
}
.cid-uT0p8z9hKP .card-title a {
  position: relative;
  background: none!important;
}
.cid-uT0p8z9hKP .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-uT0p8z9hKP .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-uT0p8z9hKP .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-uT0p8z9hKP .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-uT0p8z9hKP .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-uT0p8z9hKP .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-uT0p8z9hKP .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-uT0p8z9hKP .card-subtitle {
  color: #818181;
}
.cid-uT0oRwhzcE {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uT0oRwhzcE .mbr-section-subtitle {
  color: #36187d;
}
.cid-uT0oRwhzcE .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uT0oS7eCBN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uT0oS7eCBN img {
  width: 100%;
  object-fit: cover;
  padding: top;
}
.cid-uT0oS7eCBN .quote {
  color: #333333;
  font-weight: 700;
}
.cid-uT0oS7eCBN .img-card {
  justify-content: top;
}
.cid-uT0oS7eCBN .img-col {
  padding: top;
}
.cid-uT0oS7eCBN .card-box {
  padding: top;
}
@media (max-width: 767px) {
  .cid-uT0oS7eCBN .wrapper {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uT0oS7eCBN .wrapper {
    padding: 20rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uT0oS7eCBN .wrapper {
    padding: 0rem 0rem 0rem 4rem;
  }
}
.cid-uT0oS7eCBN .card-title,
.cid-uT0oS7eCBN .card-box {
  text-align: left;
}
.cid-uT0oS7eCBN .mbr-text,
.cid-uT0oS7eCBN .mbr-section-btn {
  text-align: left;
  color: #555555;
}
.cid-uT0oSLxj5T {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uT0oSLxj5T .item {
  padding-bottom: 2rem;
}
.cid-uT0oSLxj5T .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uT0oSLxj5T .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uT0oSLxj5T .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uT0oSLxj5T .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uT0oSLxj5T .carousel-control,
.cid-uT0oSLxj5T .close {
  background: #1b1b1b;
}
.cid-uT0oSLxj5T .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uT0oSLxj5T .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uT0oSLxj5T .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uT0oSLxj5T .carousel-control-next span {
  margin-left: 5px;
}
.cid-uT0oSLxj5T .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uT0oSLxj5T .close::before {
  content: '\e91a';
}
.cid-uT0oSLxj5T .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uT0oSLxj5T .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uT0oSLxj5T .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uT0oSLxj5T .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uT0oSLxj5T .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uT0oSLxj5T .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uT0oSLxj5T .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uT0oSLxj5T .carousel-indicators li.active,
.cid-uT0oSLxj5T .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uT0oSLxj5T .carousel-indicators li::after,
.cid-uT0oSLxj5T .carousel-indicators li::before {
  content: none;
}
.cid-uT0oSLxj5T .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uT0oSLxj5T .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uT0oSLxj5T .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uT0oSLxj5T .carousel-indicators {
    display: none;
  }
}
.cid-uT0oSLxj5T .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uT0oSLxj5T .carousel-inner > .active {
  display: block;
}
.cid-uT0oSLxj5T .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uT0oSLxj5T .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uT0oSLxj5T .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uT0oSLxj5T .carousel-control,
  .cid-uT0oSLxj5T .carousel-indicators,
  .cid-uT0oSLxj5T .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uT0oSLxj5T .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uT0oSLxj5T .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uT0oSLxj5T .carousel-indicators .active,
.cid-uT0oSLxj5T .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uT0oSLxj5T .carousel-indicators .active {
  background: #fff;
}
.cid-uT0oSLxj5T .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uT0oSLxj5T .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uT0oSLxj5T .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uT0oSLxj5T .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uT0oSLxj5T .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uT0oSLxj5T .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uT0oSLxj5T .carousel {
  width: 100%;
}
.cid-uT0oSLxj5T .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uT0oSLxj5T .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uT0oSLxj5T .modal.fade .modal-dialog,
.cid-uT0oSLxj5T .modal.in .modal-dialog {
  transform: none;
}
.cid-uT0oSLxj5T .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uT0oSLxj5T H6 {
  text-align: center;
}
.cid-uT0oU1Evu2 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uT0oU1Evu2 .link-wrapper {
  width: 100%;
}
.cid-uT0oU1Evu2 .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uT0oU1Evu2 .container {
    padding: 0 1rem;
  }
}
.cid-uT0oU1Evu2 .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-uT0oU1Evu2 .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uT0oU1Evu2 .row {
    justify-content: flex-start;
  }
}
.cid-uT0oU1Evu2 .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uT0oU1Evu2 .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-uT0oU1Evu2 .img-wrapper {
  position: relative;
}
.cid-uT0oU1Evu2 .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-uT0oU1Evu2 .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-uT0oU1Evu2 .card-title {
  color: #000000;
}
.cid-uT0oU1Evu2 .card-title a {
  position: relative;
  background: none!important;
}
.cid-uT0oU1Evu2 .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-uT0oU1Evu2 .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-uT0oU1Evu2 .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-uT0oU1Evu2 .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-uT0oU1Evu2 .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-uT0oU1Evu2 .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-uT0oU1Evu2 .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-uT0oU1Evu2 .card-subtitle {
  color: #818181;
}
.cid-uT0pr96lYr {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uT0pr96lYr .mbr-section-subtitle {
  color: #36187d;
}
.cid-uT0pr96lYr .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uT0prK2CAx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uT0prK2CAx img {
  width: 100%;
  object-fit: cover;
  padding: top;
}
.cid-uT0prK2CAx .quote {
  color: #333333;
  font-weight: 700;
}
.cid-uT0prK2CAx .img-card {
  justify-content: top;
}
.cid-uT0prK2CAx .img-col {
  padding: top;
}
.cid-uT0prK2CAx .card-box {
  padding: top;
}
@media (max-width: 767px) {
  .cid-uT0prK2CAx .wrapper {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uT0prK2CAx .wrapper {
    padding: 20rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uT0prK2CAx .wrapper {
    padding: 0rem 0rem 0rem 4rem;
  }
}
.cid-uT0prK2CAx .card-title,
.cid-uT0prK2CAx .card-box {
  text-align: left;
}
.cid-uT0prK2CAx .mbr-text,
.cid-uT0prK2CAx .mbr-section-btn {
  text-align: left;
  color: #555555;
}
.cid-uT0pskHqFn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uT0pskHqFn .item {
  padding-bottom: 2rem;
}
.cid-uT0pskHqFn .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uT0pskHqFn .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uT0pskHqFn .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uT0pskHqFn .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uT0pskHqFn .carousel-control,
.cid-uT0pskHqFn .close {
  background: #1b1b1b;
}
.cid-uT0pskHqFn .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uT0pskHqFn .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uT0pskHqFn .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uT0pskHqFn .carousel-control-next span {
  margin-left: 5px;
}
.cid-uT0pskHqFn .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uT0pskHqFn .close::before {
  content: '\e91a';
}
.cid-uT0pskHqFn .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uT0pskHqFn .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uT0pskHqFn .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uT0pskHqFn .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uT0pskHqFn .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uT0pskHqFn .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uT0pskHqFn .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uT0pskHqFn .carousel-indicators li.active,
.cid-uT0pskHqFn .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uT0pskHqFn .carousel-indicators li::after,
.cid-uT0pskHqFn .carousel-indicators li::before {
  content: none;
}
.cid-uT0pskHqFn .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uT0pskHqFn .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uT0pskHqFn .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uT0pskHqFn .carousel-indicators {
    display: none;
  }
}
.cid-uT0pskHqFn .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uT0pskHqFn .carousel-inner > .active {
  display: block;
}
.cid-uT0pskHqFn .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uT0pskHqFn .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uT0pskHqFn .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uT0pskHqFn .carousel-control,
  .cid-uT0pskHqFn .carousel-indicators,
  .cid-uT0pskHqFn .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uT0pskHqFn .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uT0pskHqFn .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uT0pskHqFn .carousel-indicators .active,
.cid-uT0pskHqFn .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uT0pskHqFn .carousel-indicators .active {
  background: #fff;
}
.cid-uT0pskHqFn .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uT0pskHqFn .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uT0pskHqFn .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uT0pskHqFn .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uT0pskHqFn .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uT0pskHqFn .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uT0pskHqFn .carousel {
  width: 100%;
}
.cid-uT0pskHqFn .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uT0pskHqFn .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uT0pskHqFn .modal.fade .modal-dialog,
.cid-uT0pskHqFn .modal.in .modal-dialog {
  transform: none;
}
.cid-uT0pskHqFn .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uT0pskHqFn H6 {
  text-align: center;
}
.cid-uT0psQvQK7 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uT0psQvQK7 .link-wrapper {
  width: 100%;
}
.cid-uT0psQvQK7 .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uT0psQvQK7 .container {
    padding: 0 1rem;
  }
}
.cid-uT0psQvQK7 .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-uT0psQvQK7 .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uT0psQvQK7 .row {
    justify-content: flex-start;
  }
}
.cid-uT0psQvQK7 .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uT0psQvQK7 .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-uT0psQvQK7 .img-wrapper {
  position: relative;
}
.cid-uT0psQvQK7 .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-uT0psQvQK7 .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-uT0psQvQK7 .card-title {
  color: #000000;
}
.cid-uT0psQvQK7 .card-title a {
  position: relative;
  background: none!important;
}
.cid-uT0psQvQK7 .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-uT0psQvQK7 .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-uT0psQvQK7 .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-uT0psQvQK7 .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-uT0psQvQK7 .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-uT0psQvQK7 .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-uT0psQvQK7 .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-uT0psQvQK7 .card-subtitle {
  color: #818181;
}
.cid-uSZTIjYU8o {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uSZTIjYU8o .mbr-section-subtitle {
  color: #36187d;
}
.cid-uSZTIjYU8o .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uSZTJitAzD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uSZTJitAzD .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-uSZTJitAzD .mbr-section-subtitle {
  color: #444444;
  letter-spacing: 0.03em;
}
.cid-uSZTJitAzD .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-uSZTJitAzD .wrap-img {
  padding-bottom: 1rem;
}
.cid-uSZTJitAzD .wrap-img img {
  max-width: 100%;
}
.cid-uSZTJitAzD .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-uSZTJVXIRV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uSZTJVXIRV .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-uSZTJVXIRV .mbr-section-subtitle {
  color: #444444;
  letter-spacing: 0.03em;
}
.cid-uSZTJVXIRV .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-uSZTJVXIRV .wrap-img {
  padding-bottom: 1rem;
}
.cid-uSZTJVXIRV .wrap-img img {
  max-width: 100%;
}
.cid-uSZTJVXIRV .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-uSZOd5HuZq {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSZOd5HuZq .link-wrapper {
  width: 100%;
}
.cid-uSZOd5HuZq .container {
  max-width: 1750px;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uSZOd5HuZq .container {
    padding: 0 1rem;
  }
}
.cid-uSZOd5HuZq .line {
  width: 100%;
  border-bottom: 1px solid #cccccc;
  margin: 0 1rem;
  margin-bottom: 4rem;
}
.cid-uSZOd5HuZq .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uSZOd5HuZq .row {
    justify-content: flex-start;
  }
}
.cid-uSZOd5HuZq .card {
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uSZOd5HuZq .card {
    padding-left: 1rem;
    border-left: 0px;
  }
}
.cid-uSZOd5HuZq .img-wrapper {
  position: relative;
}
.cid-uSZOd5HuZq .img-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-uSZOd5HuZq .img-wrapper:hover:before {
  opacity: 0.4;
}
.cid-uSZOd5HuZq .card-title {
  color: #000000;
}
.cid-uSZOd5HuZq .card-title a {
  position: relative;
  background: none!important;
}
.cid-uSZOd5HuZq .card-title a:before {
  content: '';
  bottom: 0;
  right: 0;
  width: 0%;
  height: 2px;
  transition: all 0.3s;
  background: currentColor;
  position: absolute;
}
.cid-uSZOd5HuZq .card-title a:hover:before {
  width: 100%;
  left: 0;
  right: auto;
}
.cid-uSZOd5HuZq .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-uSZOd5HuZq .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-uSZOd5HuZq .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-uSZOd5HuZq .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-uSZOd5HuZq .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-uSZOd5HuZq .card-subtitle {
  color: #818181;
}
.cid-uSZOdlZyyH {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSZOdlZyyH .mbr-section-subtitle {
  color: #36187d;
}
.cid-uSZOdlZyyH .mbr-text {
  color: #555555;
  text-align: center;
}
.cid-uSZOdmhYNJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uSZOdmhYNJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSZOdmhYNJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uSZOdmhYNJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uSZOdmhYNJ .row {
  flex-direction: row-reverse;
}
.cid-uSZOdmhYNJ img {
  width: 100%;
}
.cid-uSZOdmNGot {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uSZOdmNGot .logo__image {
  width: 100px;
  object-fit: cover;
}
.cid-uSZOdmNGot .brand__text {
  margin-bottom: 0;
}
.cid-uSZOdmNGot .brand__text a {
  font-weight: 700;
}
.cid-uSZOdmNGot a:hover {
  color: #82786e !important;
}
.cid-uSZOdmNGot .mbr-text,
.cid-uSZOdmNGot .privacy {
  margin-bottom: 0;
  color: #919dab;
}
.cid-uSZOdmNGot .menu {
  margin: 10px 0;
}
.cid-uSZOdmNGot .foot__menu {
  margin: 0;
  padding: 0;
}
.cid-uSZOdmNGot .menu__items {
  margin-right: 30px;
  display: inline-block;
  transition: all .25s;
  margin-bottom: 0;
}
.cid-uSZOdmNGot .menu__items:last-child {
  margin-right: 0;
}
.cid-uSZOdmNGot .divider {
  background-color: #cccccc;
  opacity: .5;
  margin: 30px 0 40px;
  height: 2px;
}
.cid-uSZOdmNGot .social {
  margin-top: 10px;
}
.cid-uSZOdmNGot .social a {
  margin: 0 15px;
}
.cid-uSZOdmNGot .social a:last-child {
  margin-right: 0;
}
.cid-uSZOdmNGot .social a:first-child {
  margin-left: 0;
}
.cid-uSZOdmNGot .mbr-iconfont {
  font-size: 18px;
  transition: all .25s ease;
  transition-duration: 0s;
}
.cid-uSZOdmNGot .privacy {
  color: #000000;
}
.cid-uSZOdmNGot .mbr-text {
  color: #999999;
}
