body {
  font-family: Inter;
}
.display-1 {
  font-family: 'Unbounded', sans-serif;
  font-size: 6.8rem;
  line-height: 1.15;
}
.display-1 > .mbr-iconfont {
  font-size: 8.5rem;
}
.display-2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 4.125rem;
  line-height: 1.15;
}
.display-2 > .mbr-iconfont {
  font-size: 5.15625rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-5 {
  font-family: 'Unbounded', sans-serif;
  font-size: 2.5rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- 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: 5.44rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.76rem;
    font-size: calc( 3.03rem + (6.8 - 3.03) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.03rem + (6.8 - 3.03) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.3rem;
    font-size: calc( 2.09375rem + (4.125 - 2.09375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.09375rem + (4.125 - 2.09375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #fc7942 !important;
}
.bg-success {
  background-color: #a6b1d8 !important;
}
.bg-info {
  background-color: #5189b8 !important;
}
.bg-warning {
  background-color: #f5db6e !important;
}
.bg-danger {
  background-color: #b63b07 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #fc7942 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #131313 !important;
  background-color: #fc7942 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #131313 !important;
  background-color: #e44604 !important;
  border-color: #e44604 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #a6d8b5 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #131313 !important;
  background-color: #a6d8b5 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #131313 !important;
  background-color: #6abe83 !important;
  border-color: #6abe83 !important;
}
.btn-info,
.btn-info:active {
  background-color: #5189b8 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #131313 !important;
  background-color: #5189b8 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #131313 !important;
  background-color: #345c7f !important;
  border-color: #345c7f !important;
}
.btn-success,
.btn-success:active {
  background-color: #a6b1d8 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #131313 !important;
  background-color: #a6b1d8 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #131313 !important;
  background-color: #6a7cbe !important;
  border-color: #6a7cbe !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f5db6e !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #131313 !important;
  background-color: #f5db6e !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #131313 !important;
  background-color: #efc71d !important;
  border-color: #efc71d !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b63b07 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #131313 !important;
  background-color: #b63b07 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #131313 !important;
  background-color: #632004 !important;
  border-color: #632004 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #131313 !important;
  background-color: #ffffff !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #131313 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-black,
.btn-black:active {
  background-color: #131313 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #131313 !important;
  background-color: #131313 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #131313 !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fc7942;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #e44604 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #fc7942 !important;
  border-color: #fc7942 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a6d8b5;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #6abe83 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #275836 !important;
  background-color: #a6d8b5 !important;
  border-color: #a6d8b5 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #5189b8;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #345c7f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #5189b8 !important;
  border-color: #5189b8 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a6b1d8;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #6a7cbe !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #a6b1d8 !important;
  border-color: #a6b1d8 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f5db6e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #efc71d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #5e4d06 !important;
  background-color: #f5db6e !important;
  border-color: #f5db6e !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b63b07;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #632004 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b63b07 !important;
  border-color: #b63b07 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #131313;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #131313 !important;
  border-color: #131313 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.text-primary {
  color: #fc7942 !important;
}
.text-secondary {
  color: #a6d8b5 !important;
}
.text-success {
  color: #a6b1d8 !important;
}
.text-info {
  color: #5189b8 !important;
}
.text-warning {
  color: #f5db6e !important;
}
.text-danger {
  color: #b63b07 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #131313 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #d54103 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #5fb97a !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #5f73b9 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #2f5474 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #edc210 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #541b03 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #fc7942;
}
.nav-tabs .nav-link:not(.active) {
  color: #131313;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #5189b8;
}
.alert-warning {
  background-color: #f5db6e;
}
.alert-danger {
  background-color: #b63b07;
}
.mbr-gallery-filter li.active .btn {
  background-color: #fc7942;
  border-color: #fc7942;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #fc7942;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #acc6dd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #f87a45;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.875rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #fc7942 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.875rem;
}
blockquote {
  border-color: #fc7942;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #fc7942;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #fc7942;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #fc7942;
  border-bottom-color: #fc7942;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #fc7942 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #a6d8b5 !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='%23fc7942' %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: .3s all;
  font-weight: 600 !important;
}
a:hover {
  background-image: none !important;
}
.container,
.container-small {
  max-width: 1440px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1600px) {
  .container,
  .container-small {
    max-width: 1320px;
  }
}
@media (max-width: 1399px) {
  .container,
  .container-small {
    max-width: 1140px;
  }
}
@media (max-width: 1199px) {
  .container,
  .container-small {
    max-width: 960px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 991px) {
  .container,
  .container-small {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .container,
  .container-small {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .container,
  .container-small {
    max-width: 100%;
  }
}
.container,
.container-small {
  max-width: 1480px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  word-wrap: break-word;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1500px) {
  .container,
  .container-small {
    max-width: 1180px;
  }
}
@media (max-width: 1024px) {
  .container,
  .container-small {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .container,
  .container-small {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 767px) {
  .container,
  .container-small {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.container-fluid {
  max-width: 1724px;
  padding-left: 12px;
  padding-right: 12px;
}
.row {
  margin-left: -12px;
  margin-right: -12px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 12px;
  padding-right: 12px;
}
b,
strong {
  font-weight: 600 !important;
}
.mbr-section-btn .btn {
  position: relative;
  min-width: 100px;
  min-height: 68px;
  padding: 20px 44px;
  border-radius: 0;
  font-weight: 600 !important;
  transition: all .3s;
}
@media (max-width: 1199px) {
  .mbr-section-btn .btn {
    padding: 20px 30px;
  }
}
@media (max-width: 767px) {
  .mbr-section-btn .btn {
    padding: 15px 20px;
  }
}
.mbr-section-btn .btn-black {
  color: #FFFFFF !important;
  border: 2px solid #FFFFFF !important;
  box-shadow: 4px 4px 0 #FFFFFF !important;
}
.mbr-section-btn .btn-black:hover {
  box-shadow: none !important;
}
.cid-ugbaa7sw1J {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugbaa7sw1J nav.navbar {
  position: fixed;
}
.cid-ugbaa7sw1J .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugbaa7sw1J .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugbaa7sw1J .dropdown-item:hover,
.cid-ugbaa7sw1J .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-ugbaa7sw1J .dropdown-item:hover span {
  color: white;
}
.cid-ugbaa7sw1J .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugbaa7sw1J .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugbaa7sw1J .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugbaa7sw1J .nav-link {
  position: relative;
}
.cid-ugbaa7sw1J .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .container {
    flex-wrap: nowrap;
  }
}
.cid-ugbaa7sw1J .navbar-nav {
  margin: 0 auto;
}
.cid-ugbaa7sw1J .dropdown-menu,
.cid-ugbaa7sw1J .navbar.opened {
  background: #d9e0dd !important;
}
.cid-ugbaa7sw1J .nav-item:focus,
.cid-ugbaa7sw1J .nav-link:focus {
  outline: none;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugbaa7sw1J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugbaa7sw1J .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d9e0dd;
  border: none !important;
  box-shadow: none !important;
}
.cid-ugbaa7sw1J .navbar.opened {
  transition: all 0.3s;
}
.cid-ugbaa7sw1J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugbaa7sw1J .navbar .navbar-logo img {
  width: auto;
}
.cid-ugbaa7sw1J .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugbaa7sw1J .navbar.collapsed {
  justify-content: center;
}
.cid-ugbaa7sw1J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugbaa7sw1J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ugbaa7sw1J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugbaa7sw1J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ugbaa7sw1J .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugbaa7sw1J .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugbaa7sw1J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugbaa7sw1J .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugbaa7sw1J .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugbaa7sw1J .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugbaa7sw1J .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugbaa7sw1J .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugbaa7sw1J .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugbaa7sw1J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugbaa7sw1J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugbaa7sw1J .dropdown-item.active,
.cid-ugbaa7sw1J .dropdown-item:active {
  background-color: transparent;
}
.cid-ugbaa7sw1J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugbaa7sw1J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9e0dd;
}
.cid-ugbaa7sw1J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugbaa7sw1J .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugbaa7sw1J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugbaa7sw1J .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugbaa7sw1J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugbaa7sw1J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugbaa7sw1J .navbar {
    height: 70px;
  }
  .cid-ugbaa7sw1J .navbar.opened {
    height: auto;
  }
  .cid-ugbaa7sw1J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugbaa7sw1J .container,
.cid-ugbaa7sw1J .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .container:before,
  .cid-ugbaa7sw1J .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-ugbaa7sw1J .navbar-short {
  background-color: #d9e0dd !important;
}
.cid-ugbaa7sw1J .navbar-short .container,
.cid-ugbaa7sw1J .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-ugbaa7sw1J .navbar-short .container:before,
.cid-ugbaa7sw1J .navbar-short .container-fluid:before {
  display: none;
}
.cid-ugbaa7sw1J .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-ugbaa7sw1J .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-ugbaa7sw1J .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .navbar {
    overflow: hidden;
  }
  .cid-ugbaa7sw1J .container,
  .cid-ugbaa7sw1J .container-fluid {
    min-height: 85px;
  }
  .cid-ugbaa7sw1J .navbar-brand {
    min-height: 85px;
  }
  .cid-ugbaa7sw1J .navbar-short .container,
  .cid-ugbaa7sw1J .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-ugbaa7sw1J .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-ugbaa7sw1J .navbar.navbar-short {
    background-color: #d9e0dd !important;
  }
  .cid-ugbaa7sw1J .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-ugbaa7sw1J .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-ugbaa7sw1J .mbr-section-btn {
    text-align: left;
  }
  .cid-ugbaa7sw1J .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-ugbaa7sw1J .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #d9e0dd;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-uqww5TXSPU {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uqww5TXSPU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqww5TXSPU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqww5TXSPU .row {
  margin: 0 !important;
  row-gap: 30px;
}
.cid-uqww5TXSPU .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uqww5TXSPU .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uqww5TXSPU .item-img {
    width: 100%;
  }
}
.cid-uqww5TXSPU .item-text {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uqww5TXSPU .item-text {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uqww5TXSPU .item-text {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uqww5TXSPU .item-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uqww5TXSPU .card-title {
  color: #131313;
}
.cid-uqww5TXSPU .content-box {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .cid-uqww5TXSPU .content-box {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .cid-uqww5TXSPU .content-box {
    margin-top: 20px;
  }
}
.cid-uqww5TXSPU .content-item {
  width: 100%;
}
.cid-uqww5TXSPU .card-subtitle {
  color: #131313;
}
.cid-uqww5TXSPU .card-subtitle a {
  pointer-events: none;
}
.cid-uqww5TXSPU .card-text {
  margin-top: 20px;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-uqww5TXSPU .card-text {
    margin-top: 15px;
  }
}
.cid-uqww5TXSPU .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .cid-uqww5TXSPU .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uqww5TXSPU .card-title,
.cid-uqww5TXSPU .mbr-section-btn {
  color: #000000;
}
.cid-uIlNMu3h00 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uIlNMu3h00 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIlNMu3h00 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIlNMu3h00 .col-title {
  padding-top: 5.5%;
}
@media (max-width: 991px) {
  .cid-uIlNMu3h00 .col-title {
    padding-top: 0;
  }
}
.cid-uIlNMu3h00 .col-text {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .cid-uIlNMu3h00 .col-text {
    padding-left: 110px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uIlNMu3h00 .col-text {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .cid-uIlNMu3h00 .col-text {
    padding-top: 20px;
  }
}
.cid-uIlNMu3h00 .mbr-section-title {
  margin-bottom: 0;
  color: #131313;
  text-align: center;
}
.cid-uIlNMu3h00 .mbr-section-subtitle {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-uIlNMu3h00 .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-uIlNMu3h00 .mbr-text {
  color: #131313;
}
.cid-uIlNMu3h00 .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .cid-uIlNMu3h00 .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-uIlNMu3h00 .mbr-section-btn .btn-white:hover {
  color: #fc7942 !important;
}
.cid-v1pxzFoawW {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v1pxzFoawW .mbr-section-head {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .cid-v1pxzFoawW .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .cid-v1pxzFoawW .mbr-section-head {
    margin-bottom: 35px;
  }
}
.cid-v1pxzFoawW .mbr-section-title {
  color: #131313;
}
.cid-v1pxzFoawW .mbr-section-subtitle {
  margin-top: 16px;
  color: #131313;
}
.cid-v1pxzFoawW .items-row {
  column-gap: 120px;
}
@media (min-width: 992px) {
  .cid-v1pxzFoawW .items-row {
    margin: 0 !important;
  }
}
.cid-v1pxzFoawW .item {
  margin-bottom: 80px;
  width: calc(50% - 60px);
}
@media (min-width: 992px) {
  .cid-v1pxzFoawW .item {
    padding: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-v1pxzFoawW .item {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-v1pxzFoawW .item {
    margin-bottom: 40px;
  }
}
.cid-v1pxzFoawW .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.cid-v1pxzFoawW .item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-v1pxzFoawW .item-content {
  margin-top: 40px;
}
@media (max-width: 1439px) {
  .cid-v1pxzFoawW .item-content {
    margin-top: 20px;
  }
}
.cid-v1pxzFoawW .item-title {
  color: #131313;
}
.cid-v1pxzFoawW .mbr-text {
  margin-top: 14px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-v1pxzFoawW .mbr-text {
    margin-top: 8px;
  }
}
.cid-v1pxzFoawW .mbr-section-btn {
  margin-top: 6px;
}
@media (max-width: 767px) {
  .cid-v1pxzFoawW .mbr-section-btn {
    margin-top: 4px;
  }
}
.cid-v1pyhZCTJn {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v1pyhZCTJn .mbr-section-head {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .cid-v1pyhZCTJn .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .cid-v1pyhZCTJn .mbr-section-head {
    margin-bottom: 35px;
  }
}
.cid-v1pyhZCTJn .mbr-section-title {
  color: #131313;
}
.cid-v1pyhZCTJn .mbr-section-subtitle {
  margin-top: 16px;
  color: #131313;
}
.cid-v1pyhZCTJn .items-row {
  column-gap: 120px;
}
@media (min-width: 992px) {
  .cid-v1pyhZCTJn .items-row {
    margin: 0 !important;
  }
}
.cid-v1pyhZCTJn .item {
  margin-bottom: 80px;
  width: calc(50% - 60px);
}
@media (min-width: 992px) {
  .cid-v1pyhZCTJn .item {
    padding: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-v1pyhZCTJn .item {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-v1pyhZCTJn .item {
    margin-bottom: 40px;
  }
}
.cid-v1pyhZCTJn .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.cid-v1pyhZCTJn .item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-v1pyhZCTJn .item-content {
  margin-top: 40px;
}
@media (max-width: 1439px) {
  .cid-v1pyhZCTJn .item-content {
    margin-top: 20px;
  }
}
.cid-v1pyhZCTJn .item-title {
  color: #131313;
}
.cid-v1pyhZCTJn .mbr-text {
  margin-top: 14px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-v1pyhZCTJn .mbr-text {
    margin-top: 8px;
  }
}
.cid-v1pyhZCTJn .mbr-section-btn {
  margin-top: 6px;
}
@media (max-width: 767px) {
  .cid-v1pyhZCTJn .mbr-section-btn {
    margin-top: 4px;
  }
}
.cid-v1pwWuGNws {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v1pwWuGNws .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1pwWuGNws .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1pwWuGNws .col-title {
  padding-top: 5.5%;
}
@media (max-width: 991px) {
  .cid-v1pwWuGNws .col-title {
    padding-top: 0;
  }
}
.cid-v1pwWuGNws .col-text {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .cid-v1pwWuGNws .col-text {
    padding-left: 110px !important;
  }
}
@media (max-width: 1199px) {
  .cid-v1pwWuGNws .col-text {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .cid-v1pwWuGNws .col-text {
    padding-top: 20px;
  }
}
.cid-v1pwWuGNws .mbr-section-title {
  margin-bottom: 0;
  color: #131313;
  text-align: center;
}
.cid-v1pwWuGNws .mbr-section-subtitle {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-v1pwWuGNws .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-v1pwWuGNws .mbr-text {
  color: #131313;
}
.cid-v1pwWuGNws .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .cid-v1pwWuGNws .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-v1pwWuGNws .mbr-section-btn .btn-white:hover {
  color: #fc7942 !important;
}
.cid-uIlNOD9sZo {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uIlNOD9sZo .mbr-section-head {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .cid-uIlNOD9sZo .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .cid-uIlNOD9sZo .mbr-section-head {
    margin-bottom: 35px;
  }
}
.cid-uIlNOD9sZo .mbr-section-title {
  color: #131313;
}
.cid-uIlNOD9sZo .mbr-section-subtitle {
  margin-top: 16px;
  color: #131313;
}
.cid-uIlNOD9sZo .items-row {
  column-gap: 120px;
}
@media (min-width: 992px) {
  .cid-uIlNOD9sZo .items-row {
    margin: 0 !important;
  }
}
.cid-uIlNOD9sZo .item {
  margin-bottom: 80px;
  width: calc(50% - 60px);
}
@media (min-width: 992px) {
  .cid-uIlNOD9sZo .item {
    padding: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uIlNOD9sZo .item {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uIlNOD9sZo .item {
    margin-bottom: 40px;
  }
}
.cid-uIlNOD9sZo .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.cid-uIlNOD9sZo .item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-uIlNOD9sZo .item-content {
  margin-top: 40px;
}
@media (max-width: 1439px) {
  .cid-uIlNOD9sZo .item-content {
    margin-top: 20px;
  }
}
.cid-uIlNOD9sZo .item-title {
  color: #131313;
}
.cid-uIlNOD9sZo .mbr-text {
  margin-top: 14px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-uIlNOD9sZo .mbr-text {
    margin-top: 8px;
  }
}
.cid-uIlNOD9sZo .mbr-section-btn {
  margin-top: 6px;
}
@media (max-width: 767px) {
  .cid-uIlNOD9sZo .mbr-section-btn {
    margin-top: 4px;
  }
}
.cid-uIlNPTLB96 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uIlNPTLB96 .mbr-section-head {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .cid-uIlNPTLB96 .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .cid-uIlNPTLB96 .mbr-section-head {
    margin-bottom: 35px;
  }
}
.cid-uIlNPTLB96 .mbr-section-title {
  color: #131313;
}
.cid-uIlNPTLB96 .mbr-section-subtitle {
  margin-top: 16px;
  color: #131313;
}
.cid-uIlNPTLB96 .items-row {
  column-gap: 120px;
}
@media (min-width: 992px) {
  .cid-uIlNPTLB96 .items-row {
    margin: 0 !important;
  }
}
.cid-uIlNPTLB96 .item {
  margin-bottom: 80px;
  width: calc(50% - 60px);
}
@media (min-width: 992px) {
  .cid-uIlNPTLB96 .item {
    padding: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uIlNPTLB96 .item {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uIlNPTLB96 .item {
    margin-bottom: 40px;
  }
}
.cid-uIlNPTLB96 .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.cid-uIlNPTLB96 .item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-uIlNPTLB96 .item-content {
  margin-top: 40px;
}
@media (max-width: 1439px) {
  .cid-uIlNPTLB96 .item-content {
    margin-top: 20px;
  }
}
.cid-uIlNPTLB96 .item-title {
  color: #131313;
}
.cid-uIlNPTLB96 .mbr-text {
  margin-top: 14px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-uIlNPTLB96 .mbr-text {
    margin-top: 8px;
  }
}
.cid-uIlNPTLB96 .mbr-section-btn {
  margin-top: 6px;
}
@media (max-width: 767px) {
  .cid-uIlNPTLB96 .mbr-section-btn {
    margin-top: 4px;
  }
}
.cid-uIlNRcdqA6 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uIlNRcdqA6 .mbr-section-head {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .cid-uIlNRcdqA6 .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .cid-uIlNRcdqA6 .mbr-section-head {
    margin-bottom: 35px;
  }
}
.cid-uIlNRcdqA6 .mbr-section-title {
  color: #131313;
}
.cid-uIlNRcdqA6 .mbr-section-subtitle {
  margin-top: 16px;
  color: #131313;
}
.cid-uIlNRcdqA6 .items-row {
  column-gap: 120px;
}
@media (min-width: 992px) {
  .cid-uIlNRcdqA6 .items-row {
    margin: 0 !important;
  }
}
.cid-uIlNRcdqA6 .item {
  margin-bottom: 80px;
  width: calc(50% - 60px);
}
@media (min-width: 992px) {
  .cid-uIlNRcdqA6 .item {
    padding: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-uIlNRcdqA6 .item {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uIlNRcdqA6 .item {
    margin-bottom: 40px;
  }
}
.cid-uIlNRcdqA6 .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.cid-uIlNRcdqA6 .item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-uIlNRcdqA6 .item-content {
  margin-top: 40px;
}
@media (max-width: 1439px) {
  .cid-uIlNRcdqA6 .item-content {
    margin-top: 20px;
  }
}
.cid-uIlNRcdqA6 .item-title {
  color: #131313;
}
.cid-uIlNRcdqA6 .mbr-text {
  margin-top: 14px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-uIlNRcdqA6 .mbr-text {
    margin-top: 8px;
  }
}
.cid-uIlNRcdqA6 .mbr-section-btn {
  margin-top: 6px;
}
@media (max-width: 767px) {
  .cid-uIlNRcdqA6 .mbr-section-btn {
    margin-top: 4px;
  }
}
.cid-ugf3K0nSsK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d9e0dd;
}
.cid-ugf3K0nSsK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugf3K0nSsK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugf3K0nSsK .container,
.cid-ugf3K0nSsK .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ugf3K0nSsK .container,
  .cid-ugf3K0nSsK .container-fluid {
    padding: 0 20px;
  }
}
.cid-ugf3K0nSsK .row {
  position: relative;
  padding: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ugf3K0nSsK .row {
    padding: 0;
    margin: 0;
  }
}
.cid-ugf3K0nSsK .text-wrapper {
  padding: 50px 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-ugf3K0nSsK .text-wrapper {
    padding: 20px 0;
  }
}
.cid-ugf3K0nSsK .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugf3K0nSsK .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-ugbfyvDb8J {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d9e0dd;
  overflow: hidden;
}
.cid-ugbfyvDb8J .mbr-text {
  color: #131313;
}
.cid-ugbaa7sw1J {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugbaa7sw1J nav.navbar {
  position: fixed;
}
.cid-ugbaa7sw1J .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugbaa7sw1J .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugbaa7sw1J .dropdown-item:hover,
.cid-ugbaa7sw1J .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-ugbaa7sw1J .dropdown-item:hover span {
  color: white;
}
.cid-ugbaa7sw1J .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugbaa7sw1J .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugbaa7sw1J .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugbaa7sw1J .nav-link {
  position: relative;
}
.cid-ugbaa7sw1J .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .container {
    flex-wrap: nowrap;
  }
}
.cid-ugbaa7sw1J .navbar-nav {
  margin: 0 auto;
}
.cid-ugbaa7sw1J .dropdown-menu,
.cid-ugbaa7sw1J .navbar.opened {
  background: #d9e0dd !important;
}
.cid-ugbaa7sw1J .nav-item:focus,
.cid-ugbaa7sw1J .nav-link:focus {
  outline: none;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugbaa7sw1J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugbaa7sw1J .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d9e0dd;
  border: none !important;
  box-shadow: none !important;
}
.cid-ugbaa7sw1J .navbar.opened {
  transition: all 0.3s;
}
.cid-ugbaa7sw1J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugbaa7sw1J .navbar .navbar-logo img {
  width: auto;
}
.cid-ugbaa7sw1J .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugbaa7sw1J .navbar.collapsed {
  justify-content: center;
}
.cid-ugbaa7sw1J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugbaa7sw1J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ugbaa7sw1J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugbaa7sw1J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ugbaa7sw1J .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugbaa7sw1J .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugbaa7sw1J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugbaa7sw1J .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugbaa7sw1J .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugbaa7sw1J .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugbaa7sw1J .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugbaa7sw1J .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugbaa7sw1J .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugbaa7sw1J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugbaa7sw1J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugbaa7sw1J .dropdown-item.active,
.cid-ugbaa7sw1J .dropdown-item:active {
  background-color: transparent;
}
.cid-ugbaa7sw1J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugbaa7sw1J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9e0dd;
}
.cid-ugbaa7sw1J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugbaa7sw1J .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugbaa7sw1J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugbaa7sw1J .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugbaa7sw1J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugbaa7sw1J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugbaa7sw1J .navbar {
    height: 70px;
  }
  .cid-ugbaa7sw1J .navbar.opened {
    height: auto;
  }
  .cid-ugbaa7sw1J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugbaa7sw1J .container,
.cid-ugbaa7sw1J .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .container:before,
  .cid-ugbaa7sw1J .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-ugbaa7sw1J .navbar-short {
  background-color: #d9e0dd !important;
}
.cid-ugbaa7sw1J .navbar-short .container,
.cid-ugbaa7sw1J .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-ugbaa7sw1J .navbar-short .container:before,
.cid-ugbaa7sw1J .navbar-short .container-fluid:before {
  display: none;
}
.cid-ugbaa7sw1J .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-ugbaa7sw1J .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-ugbaa7sw1J .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .navbar {
    overflow: hidden;
  }
  .cid-ugbaa7sw1J .container,
  .cid-ugbaa7sw1J .container-fluid {
    min-height: 85px;
  }
  .cid-ugbaa7sw1J .navbar-brand {
    min-height: 85px;
  }
  .cid-ugbaa7sw1J .navbar-short .container,
  .cid-ugbaa7sw1J .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-ugbaa7sw1J .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-ugbaa7sw1J .navbar.navbar-short {
    background-color: #d9e0dd !important;
  }
  .cid-ugbaa7sw1J .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-ugbaa7sw1J .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-ugbaa7sw1J .mbr-section-btn {
    text-align: left;
  }
  .cid-ugbaa7sw1J .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-ugbaa7sw1J .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #d9e0dd;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-ugf6sqTgVP {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugf6sqTgVP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugf6sqTgVP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugf6sqTgVP .container-small,
.cid-ugf6sqTgVP .container-fluid {
  padding: 0 !important;
}
.cid-ugf6sqTgVP .container-small {
  max-width: 1440px;
}
.cid-ugf6sqTgVP .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #a6d8b5;
}
@media (max-width: 991px) {
  .cid-ugf6sqTgVP .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-ugf6sqTgVP .text-box {
    padding: 50px 10px;
  }
}
.cid-ugf6sqTgVP .mbr-section-title {
  color: #131313;
}
.cid-ugf6sqTgVP .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-ugf6sqTgVP .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-ugf6sqTgVP .mbr-text {
    margin-top: 20px;
  }
}
.cid-ugf6sqTgVP .mbr-text a {
  text-decoration: underline;
}
.cid-ugf6sqTgVP .mbr-section-btn {
  margin-top: 34px;
}
.cid-ugf6ktikla {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d9e0dd;
}
.cid-ugf6ktikla .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugf6ktikla .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugf6ktikla .container,
.cid-ugf6ktikla .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ugf6ktikla .container,
  .cid-ugf6ktikla .container-fluid {
    padding: 0 20px;
  }
}
.cid-ugf6ktikla .row {
  position: relative;
  padding: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ugf6ktikla .row {
    padding: 0;
    margin: 0;
  }
}
.cid-ugf6ktikla .text-wrapper {
  padding: 50px 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-ugf6ktikla .text-wrapper {
    padding: 20px 0;
  }
}
.cid-ugf6ktikla .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugf6ktikla .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-ugbfyvDb8J {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d9e0dd;
  overflow: hidden;
}
.cid-ugbfyvDb8J .mbr-text {
  color: #131313;
}
.cid-ugbaa7sw1J {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugbaa7sw1J nav.navbar {
  position: fixed;
}
.cid-ugbaa7sw1J .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugbaa7sw1J .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugbaa7sw1J .dropdown-item:hover,
.cid-ugbaa7sw1J .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-ugbaa7sw1J .dropdown-item:hover span {
  color: white;
}
.cid-ugbaa7sw1J .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugbaa7sw1J .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugbaa7sw1J .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugbaa7sw1J .nav-link {
  position: relative;
}
.cid-ugbaa7sw1J .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .container {
    flex-wrap: nowrap;
  }
}
.cid-ugbaa7sw1J .navbar-nav {
  margin: 0 auto;
}
.cid-ugbaa7sw1J .dropdown-menu,
.cid-ugbaa7sw1J .navbar.opened {
  background: #d9e0dd !important;
}
.cid-ugbaa7sw1J .nav-item:focus,
.cid-ugbaa7sw1J .nav-link:focus {
  outline: none;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugbaa7sw1J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugbaa7sw1J .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d9e0dd;
  border: none !important;
  box-shadow: none !important;
}
.cid-ugbaa7sw1J .navbar.opened {
  transition: all 0.3s;
}
.cid-ugbaa7sw1J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugbaa7sw1J .navbar .navbar-logo img {
  width: auto;
}
.cid-ugbaa7sw1J .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugbaa7sw1J .navbar.collapsed {
  justify-content: center;
}
.cid-ugbaa7sw1J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugbaa7sw1J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ugbaa7sw1J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugbaa7sw1J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ugbaa7sw1J .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugbaa7sw1J .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugbaa7sw1J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugbaa7sw1J .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugbaa7sw1J .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugbaa7sw1J .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugbaa7sw1J .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugbaa7sw1J .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugbaa7sw1J .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugbaa7sw1J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugbaa7sw1J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugbaa7sw1J .dropdown-item.active,
.cid-ugbaa7sw1J .dropdown-item:active {
  background-color: transparent;
}
.cid-ugbaa7sw1J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugbaa7sw1J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9e0dd;
}
.cid-ugbaa7sw1J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugbaa7sw1J .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugbaa7sw1J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugbaa7sw1J .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugbaa7sw1J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugbaa7sw1J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugbaa7sw1J .navbar {
    height: 70px;
  }
  .cid-ugbaa7sw1J .navbar.opened {
    height: auto;
  }
  .cid-ugbaa7sw1J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugbaa7sw1J .container,
.cid-ugbaa7sw1J .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .container:before,
  .cid-ugbaa7sw1J .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-ugbaa7sw1J .navbar-short {
  background-color: #d9e0dd !important;
}
.cid-ugbaa7sw1J .navbar-short .container,
.cid-ugbaa7sw1J .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-ugbaa7sw1J .navbar-short .container:before,
.cid-ugbaa7sw1J .navbar-short .container-fluid:before {
  display: none;
}
.cid-ugbaa7sw1J .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-ugbaa7sw1J .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-ugbaa7sw1J .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .navbar {
    overflow: hidden;
  }
  .cid-ugbaa7sw1J .container,
  .cid-ugbaa7sw1J .container-fluid {
    min-height: 85px;
  }
  .cid-ugbaa7sw1J .navbar-brand {
    min-height: 85px;
  }
  .cid-ugbaa7sw1J .navbar-short .container,
  .cid-ugbaa7sw1J .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-ugbaa7sw1J .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-ugbaa7sw1J .navbar.navbar-short {
    background-color: #d9e0dd !important;
  }
  .cid-ugbaa7sw1J .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-ugbaa7sw1J .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-ugbaa7sw1J .mbr-section-btn {
    text-align: left;
  }
  .cid-ugbaa7sw1J .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-ugbaa7sw1J .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #d9e0dd;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-ugf8ixCDAS {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugf8ixCDAS .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugf8ixCDAS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugf8ixCDAS .container-small,
.cid-ugf8ixCDAS .container-fluid {
  padding: 0 !important;
}
.cid-ugf8ixCDAS .container-small {
  max-width: 1440px;
}
.cid-ugf8ixCDAS .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #a6d8b5;
}
@media (max-width: 991px) {
  .cid-ugf8ixCDAS .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-ugf8ixCDAS .text-box {
    padding: 50px 10px;
  }
}
.cid-ugf8ixCDAS .mbr-section-title {
  color: #131313;
}
.cid-ugf8ixCDAS .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-ugf8ixCDAS .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-ugf8ixCDAS .mbr-text {
    margin-top: 20px;
  }
}
.cid-ugf8ixCDAS .mbr-text a {
  text-decoration: underline;
}
.cid-ugf8ixCDAS .mbr-section-btn {
  margin-top: 34px;
}
.cid-ugf8jT49Do {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d9e0dd;
}
.cid-ugf8jT49Do .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugf8jT49Do .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugf8jT49Do .container,
.cid-ugf8jT49Do .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ugf8jT49Do .container,
  .cid-ugf8jT49Do .container-fluid {
    padding: 0 20px;
  }
}
.cid-ugf8jT49Do .row {
  position: relative;
  padding: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ugf8jT49Do .row {
    padding: 0;
    margin: 0;
  }
}
.cid-ugf8jT49Do .text-wrapper {
  padding: 50px 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-ugf8jT49Do .text-wrapper {
    padding: 20px 0;
  }
}
.cid-ugf8jT49Do .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugf8jT49Do .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-ugbfyvDb8J {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d9e0dd;
  overflow: hidden;
}
.cid-ugbfyvDb8J .mbr-text {
  color: #131313;
}
.cid-ugbaa7sw1J {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugbaa7sw1J nav.navbar {
  position: fixed;
}
.cid-ugbaa7sw1J .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugbaa7sw1J .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugbaa7sw1J .dropdown-item:hover,
.cid-ugbaa7sw1J .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-ugbaa7sw1J .dropdown-item:hover span {
  color: white;
}
.cid-ugbaa7sw1J .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugbaa7sw1J .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugbaa7sw1J .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugbaa7sw1J .nav-link {
  position: relative;
}
.cid-ugbaa7sw1J .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .container {
    flex-wrap: nowrap;
  }
}
.cid-ugbaa7sw1J .navbar-nav {
  margin: 0 auto;
}
.cid-ugbaa7sw1J .dropdown-menu,
.cid-ugbaa7sw1J .navbar.opened {
  background: #d9e0dd !important;
}
.cid-ugbaa7sw1J .nav-item:focus,
.cid-ugbaa7sw1J .nav-link:focus {
  outline: none;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugbaa7sw1J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugbaa7sw1J .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d9e0dd;
  border: none !important;
  box-shadow: none !important;
}
.cid-ugbaa7sw1J .navbar.opened {
  transition: all 0.3s;
}
.cid-ugbaa7sw1J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugbaa7sw1J .navbar .navbar-logo img {
  width: auto;
}
.cid-ugbaa7sw1J .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugbaa7sw1J .navbar.collapsed {
  justify-content: center;
}
.cid-ugbaa7sw1J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugbaa7sw1J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ugbaa7sw1J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugbaa7sw1J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ugbaa7sw1J .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugbaa7sw1J .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugbaa7sw1J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugbaa7sw1J .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugbaa7sw1J .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugbaa7sw1J .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugbaa7sw1J .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugbaa7sw1J .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugbaa7sw1J .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugbaa7sw1J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugbaa7sw1J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugbaa7sw1J .dropdown-item.active,
.cid-ugbaa7sw1J .dropdown-item:active {
  background-color: transparent;
}
.cid-ugbaa7sw1J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugbaa7sw1J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9e0dd;
}
.cid-ugbaa7sw1J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugbaa7sw1J .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugbaa7sw1J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugbaa7sw1J .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugbaa7sw1J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugbaa7sw1J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugbaa7sw1J .navbar {
    height: 70px;
  }
  .cid-ugbaa7sw1J .navbar.opened {
    height: auto;
  }
  .cid-ugbaa7sw1J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugbaa7sw1J .container,
.cid-ugbaa7sw1J .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .container:before,
  .cid-ugbaa7sw1J .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-ugbaa7sw1J .navbar-short {
  background-color: #d9e0dd !important;
}
.cid-ugbaa7sw1J .navbar-short .container,
.cid-ugbaa7sw1J .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-ugbaa7sw1J .navbar-short .container:before,
.cid-ugbaa7sw1J .navbar-short .container-fluid:before {
  display: none;
}
.cid-ugbaa7sw1J .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-ugbaa7sw1J .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-ugbaa7sw1J .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .navbar {
    overflow: hidden;
  }
  .cid-ugbaa7sw1J .container,
  .cid-ugbaa7sw1J .container-fluid {
    min-height: 85px;
  }
  .cid-ugbaa7sw1J .navbar-brand {
    min-height: 85px;
  }
  .cid-ugbaa7sw1J .navbar-short .container,
  .cid-ugbaa7sw1J .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-ugbaa7sw1J .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-ugbaa7sw1J .navbar.navbar-short {
    background-color: #d9e0dd !important;
  }
  .cid-ugbaa7sw1J .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-ugbaa7sw1J .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-ugbaa7sw1J .mbr-section-btn {
    text-align: left;
  }
  .cid-ugbaa7sw1J .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-ugbaa7sw1J .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #d9e0dd;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-ugf9xwAPDM {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugf9xwAPDM .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugf9xwAPDM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugf9xwAPDM .container-small,
.cid-ugf9xwAPDM .container-fluid {
  padding: 0 !important;
}
.cid-ugf9xwAPDM .container-small {
  max-width: 1440px;
}
.cid-ugf9xwAPDM .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #a6d8b5;
}
@media (max-width: 991px) {
  .cid-ugf9xwAPDM .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-ugf9xwAPDM .text-box {
    padding: 50px 10px;
  }
}
.cid-ugf9xwAPDM .mbr-section-title {
  color: #131313;
}
.cid-ugf9xwAPDM .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-ugf9xwAPDM .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-ugf9xwAPDM .mbr-text {
    margin-top: 20px;
  }
}
.cid-ugf9xwAPDM .mbr-text a {
  text-decoration: underline;
}
.cid-ugf9xwAPDM .mbr-section-btn {
  margin-top: 34px;
}
.cid-ugf9yjshkK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d9e0dd;
}
.cid-ugf9yjshkK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugf9yjshkK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugf9yjshkK .container,
.cid-ugf9yjshkK .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ugf9yjshkK .container,
  .cid-ugf9yjshkK .container-fluid {
    padding: 0 20px;
  }
}
.cid-ugf9yjshkK .row {
  position: relative;
  padding: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ugf9yjshkK .row {
    padding: 0;
    margin: 0;
  }
}
.cid-ugf9yjshkK .text-wrapper {
  padding: 50px 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-ugf9yjshkK .text-wrapper {
    padding: 20px 0;
  }
}
.cid-ugf9yjshkK .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugf9yjshkK .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-ugbfyvDb8J {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d9e0dd;
  overflow: hidden;
}
.cid-ugbfyvDb8J .mbr-text {
  color: #131313;
}
.cid-ugbaa7sw1J {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugbaa7sw1J nav.navbar {
  position: fixed;
}
.cid-ugbaa7sw1J .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugbaa7sw1J .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugbaa7sw1J .dropdown-item:hover,
.cid-ugbaa7sw1J .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-ugbaa7sw1J .dropdown-item:hover span {
  color: white;
}
.cid-ugbaa7sw1J .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugbaa7sw1J .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugbaa7sw1J .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugbaa7sw1J .nav-link {
  position: relative;
}
.cid-ugbaa7sw1J .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .container {
    flex-wrap: nowrap;
  }
}
.cid-ugbaa7sw1J .navbar-nav {
  margin: 0 auto;
}
.cid-ugbaa7sw1J .dropdown-menu,
.cid-ugbaa7sw1J .navbar.opened {
  background: #d9e0dd !important;
}
.cid-ugbaa7sw1J .nav-item:focus,
.cid-ugbaa7sw1J .nav-link:focus {
  outline: none;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugbaa7sw1J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugbaa7sw1J .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d9e0dd;
  border: none !important;
  box-shadow: none !important;
}
.cid-ugbaa7sw1J .navbar.opened {
  transition: all 0.3s;
}
.cid-ugbaa7sw1J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugbaa7sw1J .navbar .navbar-logo img {
  width: auto;
}
.cid-ugbaa7sw1J .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugbaa7sw1J .navbar.collapsed {
  justify-content: center;
}
.cid-ugbaa7sw1J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugbaa7sw1J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ugbaa7sw1J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugbaa7sw1J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ugbaa7sw1J .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugbaa7sw1J .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugbaa7sw1J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugbaa7sw1J .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugbaa7sw1J .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugbaa7sw1J .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugbaa7sw1J .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugbaa7sw1J .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugbaa7sw1J .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugbaa7sw1J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugbaa7sw1J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugbaa7sw1J .dropdown-item.active,
.cid-ugbaa7sw1J .dropdown-item:active {
  background-color: transparent;
}
.cid-ugbaa7sw1J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugbaa7sw1J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9e0dd;
}
.cid-ugbaa7sw1J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugbaa7sw1J .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugbaa7sw1J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugbaa7sw1J .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugbaa7sw1J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugbaa7sw1J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugbaa7sw1J .navbar {
    height: 70px;
  }
  .cid-ugbaa7sw1J .navbar.opened {
    height: auto;
  }
  .cid-ugbaa7sw1J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugbaa7sw1J .container,
.cid-ugbaa7sw1J .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .container:before,
  .cid-ugbaa7sw1J .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-ugbaa7sw1J .navbar-short {
  background-color: #d9e0dd !important;
}
.cid-ugbaa7sw1J .navbar-short .container,
.cid-ugbaa7sw1J .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-ugbaa7sw1J .navbar-short .container:before,
.cid-ugbaa7sw1J .navbar-short .container-fluid:before {
  display: none;
}
.cid-ugbaa7sw1J .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-ugbaa7sw1J .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-ugbaa7sw1J .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .navbar {
    overflow: hidden;
  }
  .cid-ugbaa7sw1J .container,
  .cid-ugbaa7sw1J .container-fluid {
    min-height: 85px;
  }
  .cid-ugbaa7sw1J .navbar-brand {
    min-height: 85px;
  }
  .cid-ugbaa7sw1J .navbar-short .container,
  .cid-ugbaa7sw1J .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-ugbaa7sw1J .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-ugbaa7sw1J .navbar.navbar-short {
    background-color: #d9e0dd !important;
  }
  .cid-ugbaa7sw1J .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-ugbaa7sw1J .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-ugbaa7sw1J .mbr-section-btn {
    text-align: left;
  }
  .cid-ugbaa7sw1J .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-ugbaa7sw1J .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #d9e0dd;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-ugfa1HXZJ0 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugfa1HXZJ0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugfa1HXZJ0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugfa1HXZJ0 .container-small,
.cid-ugfa1HXZJ0 .container-fluid {
  padding: 0 !important;
}
.cid-ugfa1HXZJ0 .container-small {
  max-width: 1440px;
}
.cid-ugfa1HXZJ0 .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #a6d8b5;
}
@media (max-width: 991px) {
  .cid-ugfa1HXZJ0 .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-ugfa1HXZJ0 .text-box {
    padding: 50px 10px;
  }
}
.cid-ugfa1HXZJ0 .mbr-section-title {
  color: #131313;
}
.cid-ugfa1HXZJ0 .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-ugfa1HXZJ0 .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-ugfa1HXZJ0 .mbr-text {
    margin-top: 20px;
  }
}
.cid-ugfa1HXZJ0 .mbr-text a {
  text-decoration: underline;
}
.cid-ugfa1HXZJ0 .mbr-section-btn {
  margin-top: 34px;
}
.cid-ugfa2SVDLJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d9e0dd;
}
.cid-ugfa2SVDLJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugfa2SVDLJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugfa2SVDLJ .container,
.cid-ugfa2SVDLJ .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ugfa2SVDLJ .container,
  .cid-ugfa2SVDLJ .container-fluid {
    padding: 0 20px;
  }
}
.cid-ugfa2SVDLJ .row {
  position: relative;
  padding: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ugfa2SVDLJ .row {
    padding: 0;
    margin: 0;
  }
}
.cid-ugfa2SVDLJ .text-wrapper {
  padding: 50px 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-ugfa2SVDLJ .text-wrapper {
    padding: 20px 0;
  }
}
.cid-ugfa2SVDLJ .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugfa2SVDLJ .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-ugbfyvDb8J {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d9e0dd;
  overflow: hidden;
}
.cid-ugbfyvDb8J .mbr-text {
  color: #131313;
}
.cid-ugbaa7sw1J {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugbaa7sw1J nav.navbar {
  position: fixed;
}
.cid-ugbaa7sw1J .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugbaa7sw1J .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugbaa7sw1J .dropdown-item:hover,
.cid-ugbaa7sw1J .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-ugbaa7sw1J .dropdown-item:hover span {
  color: white;
}
.cid-ugbaa7sw1J .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugbaa7sw1J .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugbaa7sw1J .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugbaa7sw1J .nav-link {
  position: relative;
}
.cid-ugbaa7sw1J .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .container {
    flex-wrap: nowrap;
  }
}
.cid-ugbaa7sw1J .navbar-nav {
  margin: 0 auto;
}
.cid-ugbaa7sw1J .dropdown-menu,
.cid-ugbaa7sw1J .navbar.opened {
  background: #d9e0dd !important;
}
.cid-ugbaa7sw1J .nav-item:focus,
.cid-ugbaa7sw1J .nav-link:focus {
  outline: none;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugbaa7sw1J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugbaa7sw1J .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d9e0dd;
  border: none !important;
  box-shadow: none !important;
}
.cid-ugbaa7sw1J .navbar.opened {
  transition: all 0.3s;
}
.cid-ugbaa7sw1J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugbaa7sw1J .navbar .navbar-logo img {
  width: auto;
}
.cid-ugbaa7sw1J .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugbaa7sw1J .navbar.collapsed {
  justify-content: center;
}
.cid-ugbaa7sw1J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugbaa7sw1J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ugbaa7sw1J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugbaa7sw1J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ugbaa7sw1J .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugbaa7sw1J .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugbaa7sw1J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugbaa7sw1J .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugbaa7sw1J .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugbaa7sw1J .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugbaa7sw1J .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugbaa7sw1J .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugbaa7sw1J .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugbaa7sw1J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugbaa7sw1J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugbaa7sw1J .dropdown-item.active,
.cid-ugbaa7sw1J .dropdown-item:active {
  background-color: transparent;
}
.cid-ugbaa7sw1J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugbaa7sw1J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9e0dd;
}
.cid-ugbaa7sw1J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugbaa7sw1J .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugbaa7sw1J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugbaa7sw1J .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugbaa7sw1J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugbaa7sw1J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugbaa7sw1J .navbar {
    height: 70px;
  }
  .cid-ugbaa7sw1J .navbar.opened {
    height: auto;
  }
  .cid-ugbaa7sw1J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugbaa7sw1J .container,
.cid-ugbaa7sw1J .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .container:before,
  .cid-ugbaa7sw1J .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-ugbaa7sw1J .navbar-short {
  background-color: #d9e0dd !important;
}
.cid-ugbaa7sw1J .navbar-short .container,
.cid-ugbaa7sw1J .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-ugbaa7sw1J .navbar-short .container:before,
.cid-ugbaa7sw1J .navbar-short .container-fluid:before {
  display: none;
}
.cid-ugbaa7sw1J .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-ugbaa7sw1J .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-ugbaa7sw1J .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .navbar {
    overflow: hidden;
  }
  .cid-ugbaa7sw1J .container,
  .cid-ugbaa7sw1J .container-fluid {
    min-height: 85px;
  }
  .cid-ugbaa7sw1J .navbar-brand {
    min-height: 85px;
  }
  .cid-ugbaa7sw1J .navbar-short .container,
  .cid-ugbaa7sw1J .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-ugbaa7sw1J .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-ugbaa7sw1J .navbar.navbar-short {
    background-color: #d9e0dd !important;
  }
  .cid-ugbaa7sw1J .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-ugbaa7sw1J .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-ugbaa7sw1J .mbr-section-btn {
    text-align: left;
  }
  .cid-ugbaa7sw1J .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-ugbaa7sw1J .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #d9e0dd;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-ugfbetSdQW {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugfbetSdQW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugfbetSdQW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugfbetSdQW .container-small,
.cid-ugfbetSdQW .container-fluid {
  padding: 0 !important;
}
.cid-ugfbetSdQW .container-small {
  max-width: 1440px;
}
.cid-ugfbetSdQW .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #a6d8b5;
}
@media (max-width: 991px) {
  .cid-ugfbetSdQW .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-ugfbetSdQW .text-box {
    padding: 50px 10px;
  }
}
.cid-ugfbetSdQW .mbr-section-title {
  color: #131313;
}
.cid-ugfbetSdQW .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-ugfbetSdQW .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-ugfbetSdQW .mbr-text {
    margin-top: 20px;
  }
}
.cid-ugfbetSdQW .mbr-text a {
  text-decoration: underline;
}
.cid-ugfbetSdQW .mbr-section-btn {
  margin-top: 34px;
}
.cid-ugfbfoH7Zj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d9e0dd;
}
.cid-ugfbfoH7Zj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugfbfoH7Zj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugfbfoH7Zj .container,
.cid-ugfbfoH7Zj .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ugfbfoH7Zj .container,
  .cid-ugfbfoH7Zj .container-fluid {
    padding: 0 20px;
  }
}
.cid-ugfbfoH7Zj .row {
  position: relative;
  padding: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ugfbfoH7Zj .row {
    padding: 0;
    margin: 0;
  }
}
.cid-ugfbfoH7Zj .text-wrapper {
  padding: 50px 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-ugfbfoH7Zj .text-wrapper {
    padding: 20px 0;
  }
}
.cid-ugfbfoH7Zj .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugfbfoH7Zj .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-ugbfyvDb8J {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d9e0dd;
  overflow: hidden;
}
.cid-ugbfyvDb8J .mbr-text {
  color: #131313;
}
.cid-ugbaa7sw1J {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugbaa7sw1J nav.navbar {
  position: fixed;
}
.cid-ugbaa7sw1J .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugbaa7sw1J .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugbaa7sw1J .dropdown-item:hover,
.cid-ugbaa7sw1J .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-ugbaa7sw1J .dropdown-item:hover span {
  color: white;
}
.cid-ugbaa7sw1J .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugbaa7sw1J .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugbaa7sw1J .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugbaa7sw1J .nav-link {
  position: relative;
}
.cid-ugbaa7sw1J .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .container {
    flex-wrap: nowrap;
  }
}
.cid-ugbaa7sw1J .navbar-nav {
  margin: 0 auto;
}
.cid-ugbaa7sw1J .dropdown-menu,
.cid-ugbaa7sw1J .navbar.opened {
  background: #d9e0dd !important;
}
.cid-ugbaa7sw1J .nav-item:focus,
.cid-ugbaa7sw1J .nav-link:focus {
  outline: none;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugbaa7sw1J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugbaa7sw1J .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d9e0dd;
  border: none !important;
  box-shadow: none !important;
}
.cid-ugbaa7sw1J .navbar.opened {
  transition: all 0.3s;
}
.cid-ugbaa7sw1J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugbaa7sw1J .navbar .navbar-logo img {
  width: auto;
}
.cid-ugbaa7sw1J .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugbaa7sw1J .navbar.collapsed {
  justify-content: center;
}
.cid-ugbaa7sw1J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugbaa7sw1J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ugbaa7sw1J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugbaa7sw1J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ugbaa7sw1J .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugbaa7sw1J .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugbaa7sw1J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugbaa7sw1J .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugbaa7sw1J .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugbaa7sw1J .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugbaa7sw1J .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugbaa7sw1J .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugbaa7sw1J .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugbaa7sw1J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugbaa7sw1J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugbaa7sw1J .dropdown-item.active,
.cid-ugbaa7sw1J .dropdown-item:active {
  background-color: transparent;
}
.cid-ugbaa7sw1J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugbaa7sw1J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9e0dd;
}
.cid-ugbaa7sw1J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugbaa7sw1J .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugbaa7sw1J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugbaa7sw1J .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugbaa7sw1J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugbaa7sw1J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugbaa7sw1J .navbar {
    height: 70px;
  }
  .cid-ugbaa7sw1J .navbar.opened {
    height: auto;
  }
  .cid-ugbaa7sw1J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugbaa7sw1J .container,
.cid-ugbaa7sw1J .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .container:before,
  .cid-ugbaa7sw1J .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-ugbaa7sw1J .navbar-short {
  background-color: #d9e0dd !important;
}
.cid-ugbaa7sw1J .navbar-short .container,
.cid-ugbaa7sw1J .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-ugbaa7sw1J .navbar-short .container:before,
.cid-ugbaa7sw1J .navbar-short .container-fluid:before {
  display: none;
}
.cid-ugbaa7sw1J .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-ugbaa7sw1J .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-ugbaa7sw1J .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .navbar {
    overflow: hidden;
  }
  .cid-ugbaa7sw1J .container,
  .cid-ugbaa7sw1J .container-fluid {
    min-height: 85px;
  }
  .cid-ugbaa7sw1J .navbar-brand {
    min-height: 85px;
  }
  .cid-ugbaa7sw1J .navbar-short .container,
  .cid-ugbaa7sw1J .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-ugbaa7sw1J .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-ugbaa7sw1J .navbar.navbar-short {
    background-color: #d9e0dd !important;
  }
  .cid-ugbaa7sw1J .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-ugbaa7sw1J .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-ugbaa7sw1J .mbr-section-btn {
    text-align: left;
  }
  .cid-ugbaa7sw1J .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-ugbaa7sw1J .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #d9e0dd;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-ugfccQOl3Z {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugfccQOl3Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugfccQOl3Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugfccQOl3Z .container-small,
.cid-ugfccQOl3Z .container-fluid {
  padding: 0 !important;
}
.cid-ugfccQOl3Z .container-small {
  max-width: 1440px;
}
.cid-ugfccQOl3Z .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #a6d8b5;
}
@media (max-width: 991px) {
  .cid-ugfccQOl3Z .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-ugfccQOl3Z .text-box {
    padding: 50px 10px;
  }
}
.cid-ugfccQOl3Z .mbr-section-title {
  color: #131313;
}
.cid-ugfccQOl3Z .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-ugfccQOl3Z .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-ugfccQOl3Z .mbr-text {
    margin-top: 20px;
  }
}
.cid-ugfccQOl3Z .mbr-text a {
  text-decoration: underline;
}
.cid-ugfccQOl3Z .mbr-section-btn {
  margin-top: 34px;
}
.cid-ugfcdEPmyv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d9e0dd;
}
.cid-ugfcdEPmyv .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugfcdEPmyv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugfcdEPmyv .container,
.cid-ugfcdEPmyv .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ugfcdEPmyv .container,
  .cid-ugfcdEPmyv .container-fluid {
    padding: 0 20px;
  }
}
.cid-ugfcdEPmyv .row {
  position: relative;
  padding: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ugfcdEPmyv .row {
    padding: 0;
    margin: 0;
  }
}
.cid-ugfcdEPmyv .text-wrapper {
  padding: 50px 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-ugfcdEPmyv .text-wrapper {
    padding: 20px 0;
  }
}
.cid-ugfcdEPmyv .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugfcdEPmyv .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-ugbfyvDb8J {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d9e0dd;
  overflow: hidden;
}
.cid-ugbfyvDb8J .mbr-text {
  color: #131313;
}
.cid-ugbaa7sw1J {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugbaa7sw1J nav.navbar {
  position: fixed;
}
.cid-ugbaa7sw1J .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugbaa7sw1J .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugbaa7sw1J .dropdown-item:hover,
.cid-ugbaa7sw1J .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-ugbaa7sw1J .dropdown-item:hover span {
  color: white;
}
.cid-ugbaa7sw1J .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugbaa7sw1J .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugbaa7sw1J .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugbaa7sw1J .nav-link {
  position: relative;
}
.cid-ugbaa7sw1J .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .container {
    flex-wrap: nowrap;
  }
}
.cid-ugbaa7sw1J .navbar-nav {
  margin: 0 auto;
}
.cid-ugbaa7sw1J .dropdown-menu,
.cid-ugbaa7sw1J .navbar.opened {
  background: #d9e0dd !important;
}
.cid-ugbaa7sw1J .nav-item:focus,
.cid-ugbaa7sw1J .nav-link:focus {
  outline: none;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugbaa7sw1J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugbaa7sw1J .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d9e0dd;
  border: none !important;
  box-shadow: none !important;
}
.cid-ugbaa7sw1J .navbar.opened {
  transition: all 0.3s;
}
.cid-ugbaa7sw1J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugbaa7sw1J .navbar .navbar-logo img {
  width: auto;
}
.cid-ugbaa7sw1J .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugbaa7sw1J .navbar.collapsed {
  justify-content: center;
}
.cid-ugbaa7sw1J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugbaa7sw1J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ugbaa7sw1J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugbaa7sw1J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ugbaa7sw1J .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugbaa7sw1J .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugbaa7sw1J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugbaa7sw1J .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugbaa7sw1J .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugbaa7sw1J .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugbaa7sw1J .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugbaa7sw1J .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugbaa7sw1J .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugbaa7sw1J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugbaa7sw1J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugbaa7sw1J .dropdown-item.active,
.cid-ugbaa7sw1J .dropdown-item:active {
  background-color: transparent;
}
.cid-ugbaa7sw1J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugbaa7sw1J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9e0dd;
}
.cid-ugbaa7sw1J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugbaa7sw1J .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugbaa7sw1J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugbaa7sw1J .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugbaa7sw1J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugbaa7sw1J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugbaa7sw1J .navbar {
    height: 70px;
  }
  .cid-ugbaa7sw1J .navbar.opened {
    height: auto;
  }
  .cid-ugbaa7sw1J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugbaa7sw1J .container,
.cid-ugbaa7sw1J .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .container:before,
  .cid-ugbaa7sw1J .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-ugbaa7sw1J .navbar-short {
  background-color: #d9e0dd !important;
}
.cid-ugbaa7sw1J .navbar-short .container,
.cid-ugbaa7sw1J .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-ugbaa7sw1J .navbar-short .container:before,
.cid-ugbaa7sw1J .navbar-short .container-fluid:before {
  display: none;
}
.cid-ugbaa7sw1J .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-ugbaa7sw1J .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-ugbaa7sw1J .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .navbar {
    overflow: hidden;
  }
  .cid-ugbaa7sw1J .container,
  .cid-ugbaa7sw1J .container-fluid {
    min-height: 85px;
  }
  .cid-ugbaa7sw1J .navbar-brand {
    min-height: 85px;
  }
  .cid-ugbaa7sw1J .navbar-short .container,
  .cid-ugbaa7sw1J .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-ugbaa7sw1J .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-ugbaa7sw1J .navbar.navbar-short {
    background-color: #d9e0dd !important;
  }
  .cid-ugbaa7sw1J .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-ugbaa7sw1J .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-ugbaa7sw1J .mbr-section-btn {
    text-align: left;
  }
  .cid-ugbaa7sw1J .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-ugbaa7sw1J .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #d9e0dd;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-ugfdfVibq3 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugfdfVibq3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugfdfVibq3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugfdfVibq3 .container-small,
.cid-ugfdfVibq3 .container-fluid {
  padding: 0 !important;
}
.cid-ugfdfVibq3 .container-small {
  max-width: 1440px;
}
.cid-ugfdfVibq3 .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #a6d8b5;
}
@media (max-width: 991px) {
  .cid-ugfdfVibq3 .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-ugfdfVibq3 .text-box {
    padding: 50px 10px;
  }
}
.cid-ugfdfVibq3 .mbr-section-title {
  color: #131313;
}
.cid-ugfdfVibq3 .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-ugfdfVibq3 .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-ugfdfVibq3 .mbr-text {
    margin-top: 20px;
  }
}
.cid-ugfdfVibq3 .mbr-text a {
  text-decoration: underline;
}
.cid-ugfdfVibq3 .mbr-section-btn {
  margin-top: 34px;
}
.cid-ugfdgHy1cL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d9e0dd;
}
.cid-ugfdgHy1cL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugfdgHy1cL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugfdgHy1cL .container,
.cid-ugfdgHy1cL .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ugfdgHy1cL .container,
  .cid-ugfdgHy1cL .container-fluid {
    padding: 0 20px;
  }
}
.cid-ugfdgHy1cL .row {
  position: relative;
  padding: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ugfdgHy1cL .row {
    padding: 0;
    margin: 0;
  }
}
.cid-ugfdgHy1cL .text-wrapper {
  padding: 50px 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-ugfdgHy1cL .text-wrapper {
    padding: 20px 0;
  }
}
.cid-ugfdgHy1cL .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugfdgHy1cL .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-ugbfyvDb8J {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d9e0dd;
  overflow: hidden;
}
.cid-ugbfyvDb8J .mbr-text {
  color: #131313;
}
.cid-ugbaa7sw1J {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugbaa7sw1J nav.navbar {
  position: fixed;
}
.cid-ugbaa7sw1J .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugbaa7sw1J .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugbaa7sw1J .dropdown-item:hover,
.cid-ugbaa7sw1J .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-ugbaa7sw1J .dropdown-item:hover span {
  color: white;
}
.cid-ugbaa7sw1J .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugbaa7sw1J .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugbaa7sw1J .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugbaa7sw1J .nav-link {
  position: relative;
}
.cid-ugbaa7sw1J .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .container {
    flex-wrap: nowrap;
  }
}
.cid-ugbaa7sw1J .navbar-nav {
  margin: 0 auto;
}
.cid-ugbaa7sw1J .dropdown-menu,
.cid-ugbaa7sw1J .navbar.opened {
  background: #d9e0dd !important;
}
.cid-ugbaa7sw1J .nav-item:focus,
.cid-ugbaa7sw1J .nav-link:focus {
  outline: none;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugbaa7sw1J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugbaa7sw1J .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d9e0dd;
  border: none !important;
  box-shadow: none !important;
}
.cid-ugbaa7sw1J .navbar.opened {
  transition: all 0.3s;
}
.cid-ugbaa7sw1J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugbaa7sw1J .navbar .navbar-logo img {
  width: auto;
}
.cid-ugbaa7sw1J .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugbaa7sw1J .navbar.collapsed {
  justify-content: center;
}
.cid-ugbaa7sw1J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugbaa7sw1J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ugbaa7sw1J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugbaa7sw1J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ugbaa7sw1J .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugbaa7sw1J .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugbaa7sw1J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugbaa7sw1J .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugbaa7sw1J .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugbaa7sw1J .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugbaa7sw1J .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugbaa7sw1J .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugbaa7sw1J .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugbaa7sw1J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugbaa7sw1J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugbaa7sw1J .dropdown-item.active,
.cid-ugbaa7sw1J .dropdown-item:active {
  background-color: transparent;
}
.cid-ugbaa7sw1J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugbaa7sw1J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9e0dd;
}
.cid-ugbaa7sw1J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugbaa7sw1J .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugbaa7sw1J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugbaa7sw1J .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugbaa7sw1J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugbaa7sw1J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugbaa7sw1J .navbar {
    height: 70px;
  }
  .cid-ugbaa7sw1J .navbar.opened {
    height: auto;
  }
  .cid-ugbaa7sw1J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugbaa7sw1J .container,
.cid-ugbaa7sw1J .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .container:before,
  .cid-ugbaa7sw1J .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-ugbaa7sw1J .navbar-short {
  background-color: #d9e0dd !important;
}
.cid-ugbaa7sw1J .navbar-short .container,
.cid-ugbaa7sw1J .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-ugbaa7sw1J .navbar-short .container:before,
.cid-ugbaa7sw1J .navbar-short .container-fluid:before {
  display: none;
}
.cid-ugbaa7sw1J .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-ugbaa7sw1J .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-ugbaa7sw1J .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .navbar {
    overflow: hidden;
  }
  .cid-ugbaa7sw1J .container,
  .cid-ugbaa7sw1J .container-fluid {
    min-height: 85px;
  }
  .cid-ugbaa7sw1J .navbar-brand {
    min-height: 85px;
  }
  .cid-ugbaa7sw1J .navbar-short .container,
  .cid-ugbaa7sw1J .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-ugbaa7sw1J .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-ugbaa7sw1J .navbar.navbar-short {
    background-color: #d9e0dd !important;
  }
  .cid-ugbaa7sw1J .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-ugbaa7sw1J .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-ugbaa7sw1J .mbr-section-btn {
    text-align: left;
  }
  .cid-ugbaa7sw1J .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-ugbaa7sw1J .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #d9e0dd;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-ugfm7EdT5O {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugfm7EdT5O .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugfm7EdT5O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugfm7EdT5O .container-small,
.cid-ugfm7EdT5O .container-fluid {
  padding: 0 !important;
}
.cid-ugfm7EdT5O .container-small {
  max-width: 1440px;
}
.cid-ugfm7EdT5O .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #a6d8b5;
}
@media (max-width: 991px) {
  .cid-ugfm7EdT5O .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-ugfm7EdT5O .text-box {
    padding: 50px 10px;
  }
}
.cid-ugfm7EdT5O .mbr-section-title {
  color: #131313;
}
.cid-ugfm7EdT5O .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-ugfm7EdT5O .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-ugfm7EdT5O .mbr-text {
    margin-top: 20px;
  }
}
.cid-ugfm7EdT5O .mbr-text a {
  text-decoration: underline;
}
.cid-ugfm7EdT5O .mbr-section-btn {
  margin-top: 34px;
}
.cid-ugfm8M4Dz6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d9e0dd;
}
.cid-ugfm8M4Dz6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugfm8M4Dz6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugfm8M4Dz6 .container,
.cid-ugfm8M4Dz6 .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ugfm8M4Dz6 .container,
  .cid-ugfm8M4Dz6 .container-fluid {
    padding: 0 20px;
  }
}
.cid-ugfm8M4Dz6 .row {
  position: relative;
  padding: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ugfm8M4Dz6 .row {
    padding: 0;
    margin: 0;
  }
}
.cid-ugfm8M4Dz6 .text-wrapper {
  padding: 50px 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-ugfm8M4Dz6 .text-wrapper {
    padding: 20px 0;
  }
}
.cid-ugfm8M4Dz6 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugfm8M4Dz6 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-ugbfyvDb8J {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d9e0dd;
  overflow: hidden;
}
.cid-ugbfyvDb8J .mbr-text {
  color: #131313;
}
.cid-ugbaa7sw1J {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ugbaa7sw1J nav.navbar {
  position: fixed;
}
.cid-ugbaa7sw1J .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugbaa7sw1J .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugbaa7sw1J .dropdown-item:hover,
.cid-ugbaa7sw1J .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-ugbaa7sw1J .dropdown-item:hover span {
  color: white;
}
.cid-ugbaa7sw1J .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugbaa7sw1J .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugbaa7sw1J .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugbaa7sw1J .nav-link {
  position: relative;
}
.cid-ugbaa7sw1J .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .container {
    flex-wrap: nowrap;
  }
}
.cid-ugbaa7sw1J .navbar-nav {
  margin: 0 auto;
}
.cid-ugbaa7sw1J .dropdown-menu,
.cid-ugbaa7sw1J .navbar.opened {
  background: #d9e0dd !important;
}
.cid-ugbaa7sw1J .nav-item:focus,
.cid-ugbaa7sw1J .nav-link:focus {
  outline: none;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugbaa7sw1J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugbaa7sw1J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugbaa7sw1J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugbaa7sw1J .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d9e0dd;
  border: none !important;
  box-shadow: none !important;
}
.cid-ugbaa7sw1J .navbar.opened {
  transition: all 0.3s;
}
.cid-ugbaa7sw1J .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugbaa7sw1J .navbar .navbar-logo img {
  width: auto;
}
.cid-ugbaa7sw1J .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugbaa7sw1J .navbar.collapsed {
  justify-content: center;
}
.cid-ugbaa7sw1J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugbaa7sw1J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ugbaa7sw1J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugbaa7sw1J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugbaa7sw1J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ugbaa7sw1J .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugbaa7sw1J .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugbaa7sw1J .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugbaa7sw1J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugbaa7sw1J .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugbaa7sw1J .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugbaa7sw1J .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugbaa7sw1J .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugbaa7sw1J .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugbaa7sw1J .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugbaa7sw1J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugbaa7sw1J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugbaa7sw1J .dropdown-item.active,
.cid-ugbaa7sw1J .dropdown-item:active {
  background-color: transparent;
}
.cid-ugbaa7sw1J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugbaa7sw1J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugbaa7sw1J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9e0dd;
}
.cid-ugbaa7sw1J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugbaa7sw1J .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugbaa7sw1J ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugbaa7sw1J .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugbaa7sw1J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugbaa7sw1J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugbaa7sw1J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugbaa7sw1J .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugbaa7sw1J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugbaa7sw1J .navbar {
    height: 70px;
  }
  .cid-ugbaa7sw1J .navbar.opened {
    height: auto;
  }
  .cid-ugbaa7sw1J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugbaa7sw1J .container,
.cid-ugbaa7sw1J .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-ugbaa7sw1J .container:before,
  .cid-ugbaa7sw1J .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-ugbaa7sw1J .navbar-short {
  background-color: #d9e0dd !important;
}
.cid-ugbaa7sw1J .navbar-short .container,
.cid-ugbaa7sw1J .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-ugbaa7sw1J .navbar-short .container:before,
.cid-ugbaa7sw1J .navbar-short .container-fluid:before {
  display: none;
}
.cid-ugbaa7sw1J .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-ugbaa7sw1J .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-ugbaa7sw1J .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-ugbaa7sw1J .navbar {
    overflow: hidden;
  }
  .cid-ugbaa7sw1J .container,
  .cid-ugbaa7sw1J .container-fluid {
    min-height: 85px;
  }
  .cid-ugbaa7sw1J .navbar-brand {
    min-height: 85px;
  }
  .cid-ugbaa7sw1J .navbar-short .container,
  .cid-ugbaa7sw1J .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-ugbaa7sw1J .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-ugbaa7sw1J .navbar.navbar-short {
    background-color: #d9e0dd !important;
  }
  .cid-ugbaa7sw1J .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-ugbaa7sw1J .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-ugbaa7sw1J .mbr-section-btn {
    text-align: left;
  }
  .cid-ugbaa7sw1J .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-ugbaa7sw1J .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #d9e0dd;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-uqgOb0zLgX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uqgOb0zLgX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqgOb0zLgX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqgOb0zLgX .col-title {
  padding-top: 5.5%;
}
@media (max-width: 991px) {
  .cid-uqgOb0zLgX .col-title {
    padding-top: 0;
  }
}
.cid-uqgOb0zLgX .col-text {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .cid-uqgOb0zLgX .col-text {
    padding-left: 110px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uqgOb0zLgX .col-text {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .cid-uqgOb0zLgX .col-text {
    padding-top: 20px;
  }
}
.cid-uqgOb0zLgX .mbr-section-title {
  margin-bottom: 0;
  color: #131313;
}
.cid-uqgOb0zLgX .mbr-section-subtitle {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-uqgOb0zLgX .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-uqgOb0zLgX .mbr-text {
  color: #131313;
}
.cid-uqgOb0zLgX .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .cid-uqgOb0zLgX .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-uqgOb0zLgX .mbr-section-btn .btn-white:hover {
  color: #fc7942 !important;
}
.cid-uqgN6J6Muz {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uqgN6J6Muz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqgN6J6Muz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqgN6J6Muz .row {
  margin: 0 !important;
  row-gap: 30px;
}
.cid-uqgN6J6Muz .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uqgN6J6Muz .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uqgN6J6Muz .item-img {
    width: 100%;
  }
}
.cid-uqgN6J6Muz .item-text {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uqgN6J6Muz .item-text {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uqgN6J6Muz .item-text {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uqgN6J6Muz .item-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uqgN6J6Muz .card-title {
  color: #131313;
}
.cid-uqgN6J6Muz .content-box {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .cid-uqgN6J6Muz .content-box {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .cid-uqgN6J6Muz .content-box {
    margin-top: 20px;
  }
}
.cid-uqgN6J6Muz .content-item {
  width: 100%;
}
.cid-uqgN6J6Muz .card-subtitle {
  color: #131313;
}
.cid-uqgN6J6Muz .card-subtitle a {
  pointer-events: none;
}
.cid-uqgN6J6Muz .card-text {
  margin-top: 20px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-uqgN6J6Muz .card-text {
    margin-top: 15px;
  }
}
.cid-uqgN6J6Muz .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .cid-uqgN6J6Muz .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uqh2C3AtdB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uqh2C3AtdB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqh2C3AtdB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqh2C3AtdB .col-title {
  padding-top: 5.5%;
}
@media (max-width: 991px) {
  .cid-uqh2C3AtdB .col-title {
    padding-top: 0;
  }
}
.cid-uqh2C3AtdB .col-text {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .cid-uqh2C3AtdB .col-text {
    padding-left: 110px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uqh2C3AtdB .col-text {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .cid-uqh2C3AtdB .col-text {
    padding-top: 20px;
  }
}
.cid-uqh2C3AtdB .mbr-section-title {
  margin-bottom: 0;
  color: #131313;
  text-align: center;
}
.cid-uqh2C3AtdB .mbr-section-subtitle {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-uqh2C3AtdB .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-uqh2C3AtdB .mbr-text {
  color: #131313;
}
.cid-uqh2C3AtdB .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .cid-uqh2C3AtdB .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-uqh2C3AtdB .mbr-section-btn .btn-white:hover {
  color: #fc7942 !important;
}
.cid-uqh2YaPcq6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uqh2YaPcq6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqh2YaPcq6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqh2YaPcq6 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uqh2YaPcq6 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uqh2YaPcq6 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uqh2YaPcq6 .mbr-section-title {
  color: #ef5311;
}
.cid-uqh2YaPcq6 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uqh2YaPcq6 .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-uqh2YaPcq6 .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-uqh2YaPcq6 .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-uqh2YaPcq6 .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-uqh2YaPcq6 .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uqh2YaPcq6 .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 674/calc(145 * 3);
}
.cid-uqh2YaPcq6 .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 130px;
}
@media (max-width: 1199px) {
  .cid-uqh2YaPcq6 .item-content {
    margin-top: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uqh2YaPcq6 .item-content {
    margin-top: 20px;
  }
}
.cid-uqh2YaPcq6 .card-title {
  color: #131313;
}
.cid-uqh2YaPcq6 .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-uqh2YaPcq6 .link-text {
  margin-top: 14px;
  color: #FC7942;
}
@media (max-width: 991px) {
  .cid-uqh2YaPcq6 .link-text {
    margin-top: 10px;
  }
}
.cid-uqh2YaPcq6 .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-uqh2YaPcq6 .mbr-section-btn {
  margin-top: 5px;
}
.cid-uqsuMzL9NF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uqsuMzL9NF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqsuMzL9NF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqsuMzL9NF .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uqsuMzL9NF .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uqsuMzL9NF .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uqsuMzL9NF .mbr-section-title {
  color: #131313;
}
.cid-uqsuMzL9NF .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uqsuMzL9NF .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-uqsuMzL9NF .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-uqsuMzL9NF .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-uqsuMzL9NF .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-uqsuMzL9NF .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uqsuMzL9NF .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 674/calc(145 * 3);
}
.cid-uqsuMzL9NF .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 130px;
}
@media (max-width: 1199px) {
  .cid-uqsuMzL9NF .item-content {
    margin-top: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uqsuMzL9NF .item-content {
    margin-top: 20px;
  }
}
.cid-uqsuMzL9NF .card-title {
  color: #131313;
}
.cid-uqsuMzL9NF .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-uqsuMzL9NF .link-text {
  margin-top: 14px;
  color: #FC7942;
}
@media (max-width: 991px) {
  .cid-uqsuMzL9NF .link-text {
    margin-top: 10px;
  }
}
.cid-uqsuMzL9NF .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-uqsuMzL9NF .mbr-section-btn {
  margin-top: 5px;
}
.cid-uqwdzIgAOa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uqwdzIgAOa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqwdzIgAOa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqwdzIgAOa .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uqwdzIgAOa .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uqwdzIgAOa .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uqwdzIgAOa .mbr-section-title {
  color: #131313;
}
.cid-uqwdzIgAOa .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uqwdzIgAOa .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-uqwdzIgAOa .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-uqwdzIgAOa .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-uqwdzIgAOa .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-uqwdzIgAOa .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uqwdzIgAOa .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 674/calc(145 * 3);
}
.cid-uqwdzIgAOa .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 130px;
}
@media (max-width: 1199px) {
  .cid-uqwdzIgAOa .item-content {
    margin-top: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uqwdzIgAOa .item-content {
    margin-top: 20px;
  }
}
.cid-uqwdzIgAOa .card-title {
  color: #131313;
}
.cid-uqwdzIgAOa .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-uqwdzIgAOa .link-text {
  margin-top: 14px;
  color: #FC7942;
}
@media (max-width: 991px) {
  .cid-uqwdzIgAOa .link-text {
    margin-top: 10px;
  }
}
.cid-uqwdzIgAOa .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-uqwdzIgAOa .mbr-section-btn {
  margin-top: 5px;
}
.cid-uqgNaL5JIk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uqgNaL5JIk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqgNaL5JIk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqgNaL5JIk .container,
.cid-uqgNaL5JIk .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uqgNaL5JIk .container,
  .cid-uqgNaL5JIk .container-fluid {
    padding: 0 20px;
  }
}
.cid-uqgNaL5JIk .row {
  position: relative;
  justify-content: center;
  padding: 50px 10px;
  overflow: hidden;
  margin: 0;
  border: 1px solid #3d4045;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uqgNaL5JIk .row {
    padding: 85px 8px;
  }
}
.cid-uqgNaL5JIk .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uqgNaL5JIk .title-wrapper {
    padding: 0;
  }
}
.cid-uqgNaL5JIk .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .cid-uqgNaL5JIk .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uqgNaL5JIk .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uqgNaL5JIk .image-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 1200px) {
  .cid-uqgNaL5JIk .image-wrapper {
    margin-bottom: 50px;
    height: auto;
  }
}
.cid-uqgNaL5JIk .image-wrapper img {
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uqgNaL5JIk .image-wrapper img {
    height: 300px;
  }
}
.cid-uqgNaL5JIk .mbr-section-title {
  color: #3d4045;
}
.cid-uqgNaL5JIk .mbr-text {
  color: #3d4045;
}
.cid-uqgNaL5JIk .mbr-section-title,
.cid-uqgNaL5JIk .mbr-section-btn {
  color: #3c5284;
}
.cid-uqwg0HhFla {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uqwg0HhFla .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqwg0HhFla .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqwg0HhFla .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uqwg0HhFla .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uqwg0HhFla .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uqwg0HhFla .mbr-section-title {
  color: #131313;
}
.cid-uqwg0HhFla .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uqwg0HhFla .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-uqwg0HhFla .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-uqwg0HhFla .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-uqwg0HhFla .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-uqwg0HhFla .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uqwg0HhFla .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 674/calc(145 * 3);
}
.cid-uqwg0HhFla .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 130px;
}
@media (max-width: 1199px) {
  .cid-uqwg0HhFla .item-content {
    margin-top: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uqwg0HhFla .item-content {
    margin-top: 20px;
  }
}
.cid-uqwg0HhFla .card-title {
  color: #131313;
}
.cid-uqwg0HhFla .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-uqwg0HhFla .link-text {
  margin-top: 14px;
  color: #FC7942;
}
@media (max-width: 991px) {
  .cid-uqwg0HhFla .link-text {
    margin-top: 10px;
  }
}
.cid-uqwg0HhFla .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-uqwg0HhFla .mbr-section-btn {
  margin-top: 5px;
}
.cid-uqwlb03szj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uqwlb03szj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqwlb03szj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqwlb03szj .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uqwlb03szj .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uqwlb03szj .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uqwlb03szj .mbr-section-title {
  color: #131313;
}
.cid-uqwlb03szj .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uqwlb03szj .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-uqwlb03szj .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-uqwlb03szj .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-uqwlb03szj .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-uqwlb03szj .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uqwlb03szj .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 674/calc(145 * 3);
}
.cid-uqwlb03szj .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 130px;
}
@media (max-width: 1199px) {
  .cid-uqwlb03szj .item-content {
    margin-top: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uqwlb03szj .item-content {
    margin-top: 20px;
  }
}
.cid-uqwlb03szj .card-title {
  color: #131313;
}
.cid-uqwlb03szj .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-uqwlb03szj .link-text {
  margin-top: 14px;
  color: #FC7942;
}
@media (max-width: 991px) {
  .cid-uqwlb03szj .link-text {
    margin-top: 10px;
  }
}
.cid-uqwlb03szj .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-uqwlb03szj .mbr-section-btn {
  margin-top: 5px;
}
.cid-uqwnkNe9pb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uqwnkNe9pb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqwnkNe9pb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqwnkNe9pb .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uqwnkNe9pb .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uqwnkNe9pb .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uqwnkNe9pb .mbr-section-title {
  color: #131313;
}
.cid-uqwnkNe9pb .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uqwnkNe9pb .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-uqwnkNe9pb .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-uqwnkNe9pb .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-uqwnkNe9pb .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-uqwnkNe9pb .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uqwnkNe9pb .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 674/calc(145 * 3);
}
.cid-uqwnkNe9pb .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 130px;
}
@media (max-width: 1199px) {
  .cid-uqwnkNe9pb .item-content {
    margin-top: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uqwnkNe9pb .item-content {
    margin-top: 20px;
  }
}
.cid-uqwnkNe9pb .card-title {
  color: #131313;
}
.cid-uqwnkNe9pb .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-uqwnkNe9pb .link-text {
  margin-top: 14px;
  color: #FC7942;
}
@media (max-width: 991px) {
  .cid-uqwnkNe9pb .link-text {
    margin-top: 10px;
  }
}
.cid-uqwnkNe9pb .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-uqwnkNe9pb .mbr-section-btn {
  margin-top: 5px;
}
.cid-uqgNca6CEJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uqgNca6CEJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqgNca6CEJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqgNca6CEJ .container,
.cid-uqgNca6CEJ .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uqgNca6CEJ .container,
  .cid-uqgNca6CEJ .container-fluid {
    padding: 0 20px;
  }
}
.cid-uqgNca6CEJ .row {
  position: relative;
  justify-content: center;
  padding: 50px 10px;
  overflow: hidden;
  margin: 0;
  border: 1px solid #3d4045;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uqgNca6CEJ .row {
    padding: 85px 8px;
  }
}
.cid-uqgNca6CEJ .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uqgNca6CEJ .title-wrapper {
    padding: 0;
  }
}
.cid-uqgNca6CEJ .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .cid-uqgNca6CEJ .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uqgNca6CEJ .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uqgNca6CEJ .image-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 1200px) {
  .cid-uqgNca6CEJ .image-wrapper {
    margin-bottom: 50px;
    height: auto;
  }
}
.cid-uqgNca6CEJ .image-wrapper img {
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uqgNca6CEJ .image-wrapper img {
    height: 300px;
  }
}
.cid-uqgNca6CEJ .mbr-section-title {
  color: #3d4045;
}
.cid-uqgNca6CEJ .mbr-text {
  color: #3d4045;
}
.cid-uqgNca6CEJ .mbr-section-title,
.cid-uqgNca6CEJ .mbr-section-btn {
  color: #3c5284;
}
.cid-uqgMEHiyZm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d9e0dd;
}
.cid-uqgMEHiyZm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqgMEHiyZm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqgMEHiyZm .container,
.cid-uqgMEHiyZm .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uqgMEHiyZm .container,
  .cid-uqgMEHiyZm .container-fluid {
    padding: 0 20px;
  }
}
.cid-uqgMEHiyZm .row {
  position: relative;
  padding: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uqgMEHiyZm .row {
    padding: 0;
    margin: 0;
  }
}
.cid-uqgMEHiyZm .text-wrapper {
  padding: 50px 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-uqgMEHiyZm .text-wrapper {
    padding: 20px 0;
  }
}
.cid-uqgMEHiyZm .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqgMEHiyZm .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-ugbfyvDb8J {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d9e0dd;
  overflow: hidden;
}
.cid-ugbfyvDb8J .mbr-text {
  color: #131313;
}
.cid-urt9yONte0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-urt9yONte0 nav.navbar {
  position: fixed;
}
.cid-urt9yONte0 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urt9yONte0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-urt9yONte0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-urt9yONte0 .dropdown-item:hover,
.cid-urt9yONte0 .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-urt9yONte0 .dropdown-item:hover span {
  color: white;
}
.cid-urt9yONte0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-urt9yONte0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-urt9yONte0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-urt9yONte0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-urt9yONte0 .nav-link {
  position: relative;
}
.cid-urt9yONte0 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-urt9yONte0 .container {
    flex-wrap: nowrap;
  }
}
.cid-urt9yONte0 .navbar-nav {
  margin: 0 auto;
}
.cid-urt9yONte0 .dropdown-menu,
.cid-urt9yONte0 .navbar.opened {
  background: #d9e0dd !important;
}
.cid-urt9yONte0 .nav-item:focus,
.cid-urt9yONte0 .nav-link:focus {
  outline: none;
}
.cid-urt9yONte0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urt9yONte0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urt9yONte0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urt9yONte0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urt9yONte0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urt9yONte0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urt9yONte0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d9e0dd;
  border: none !important;
  box-shadow: none !important;
}
.cid-urt9yONte0 .navbar.opened {
  transition: all 0.3s;
}
.cid-urt9yONte0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-urt9yONte0 .navbar .navbar-logo img {
  width: auto;
}
.cid-urt9yONte0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-urt9yONte0 .navbar.collapsed {
  justify-content: center;
}
.cid-urt9yONte0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urt9yONte0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-urt9yONte0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-urt9yONte0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urt9yONte0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urt9yONte0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-urt9yONte0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urt9yONte0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-urt9yONte0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urt9yONte0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urt9yONte0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urt9yONte0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urt9yONte0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-urt9yONte0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urt9yONte0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urt9yONte0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-urt9yONte0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urt9yONte0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-urt9yONte0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-urt9yONte0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-urt9yONte0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urt9yONte0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urt9yONte0 .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urt9yONte0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urt9yONte0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urt9yONte0 .dropdown-item.active,
.cid-urt9yONte0 .dropdown-item:active {
  background-color: transparent;
}
.cid-urt9yONte0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urt9yONte0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urt9yONte0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urt9yONte0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9e0dd;
}
.cid-urt9yONte0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urt9yONte0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urt9yONte0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-urt9yONte0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urt9yONte0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-urt9yONte0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-urt9yONte0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urt9yONte0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urt9yONte0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urt9yONte0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urt9yONte0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urt9yONte0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urt9yONte0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urt9yONte0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urt9yONte0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-urt9yONte0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-urt9yONte0 .navbar {
    height: 70px;
  }
  .cid-urt9yONte0 .navbar.opened {
    height: auto;
  }
  .cid-urt9yONte0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urt9yONte0 .container,
.cid-urt9yONte0 .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-urt9yONte0 .container:before,
  .cid-urt9yONte0 .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-urt9yONte0 .navbar-short {
  background-color: #d9e0dd !important;
}
.cid-urt9yONte0 .navbar-short .container,
.cid-urt9yONte0 .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-urt9yONte0 .navbar-short .container:before,
.cid-urt9yONte0 .navbar-short .container-fluid:before {
  display: none;
}
.cid-urt9yONte0 .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-urt9yONte0 .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-urt9yONte0 .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-urt9yONte0 .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-urt9yONte0 .navbar {
    overflow: hidden;
  }
  .cid-urt9yONte0 .container,
  .cid-urt9yONte0 .container-fluid {
    min-height: 85px;
  }
  .cid-urt9yONte0 .navbar-brand {
    min-height: 85px;
  }
  .cid-urt9yONte0 .navbar-short .container,
  .cid-urt9yONte0 .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-urt9yONte0 .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-urt9yONte0 .navbar.navbar-short {
    background-color: #d9e0dd !important;
  }
  .cid-urt9yONte0 .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-urt9yONte0 .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-urt9yONte0 .mbr-section-btn {
    text-align: left;
  }
  .cid-urt9yONte0 .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-urt9yONte0 .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #d9e0dd;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-urt9yPzrNO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-urt9yPzrNO .mbr-fallback-image.disabled {
  display: none;
}
.cid-urt9yPzrNO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urt9yPzrNO .col-title {
  padding-top: 5.5%;
}
@media (max-width: 991px) {
  .cid-urt9yPzrNO .col-title {
    padding-top: 0;
  }
}
.cid-urt9yPzrNO .col-text {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .cid-urt9yPzrNO .col-text {
    padding-left: 110px !important;
  }
}
@media (max-width: 1199px) {
  .cid-urt9yPzrNO .col-text {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .cid-urt9yPzrNO .col-text {
    padding-top: 20px;
  }
}
.cid-urt9yPzrNO .mbr-section-title {
  margin-bottom: 0;
  color: #131313;
}
.cid-urt9yPzrNO .mbr-section-subtitle {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-urt9yPzrNO .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-urt9yPzrNO .mbr-text {
  color: #131313;
}
.cid-urt9yPzrNO .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .cid-urt9yPzrNO .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-urt9yPzrNO .mbr-section-btn .btn-white:hover {
  color: #fc7942 !important;
}
.cid-urt9yQcK5U {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-urt9yQcK5U .mbr-fallback-image.disabled {
  display: none;
}
.cid-urt9yQcK5U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urt9yQcK5U .row {
  margin: 0 !important;
  row-gap: 30px;
}
.cid-urt9yQcK5U .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-urt9yQcK5U .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-urt9yQcK5U .item-img {
    width: 100%;
  }
}
.cid-urt9yQcK5U .item-text {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-urt9yQcK5U .item-text {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-urt9yQcK5U .item-text {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-urt9yQcK5U .item-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-urt9yQcK5U .card-title {
  color: #131313;
}
.cid-urt9yQcK5U .content-box {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .cid-urt9yQcK5U .content-box {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .cid-urt9yQcK5U .content-box {
    margin-top: 20px;
  }
}
.cid-urt9yQcK5U .content-item {
  width: 100%;
}
.cid-urt9yQcK5U .card-subtitle {
  color: #131313;
}
.cid-urt9yQcK5U .card-subtitle a {
  pointer-events: none;
}
.cid-urt9yQcK5U .card-text {
  margin-top: 20px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-urt9yQcK5U .card-text {
    margin-top: 15px;
  }
}
.cid-urt9yQcK5U .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .cid-urt9yQcK5U .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-urup2ZKlDg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #535353;
}
.cid-urup2ZKlDg .mbr-fallback-image.disabled {
  display: none;
}
.cid-urup2ZKlDg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urup2ZKlDg .row {
  margin: 0 !important;
  row-gap: 30px;
  flex-direction: row-reverse;
}
.cid-urup2ZKlDg .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
  justify-content: flex-end;
}
.cid-urup2ZKlDg .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-urup2ZKlDg .item-img {
    width: 100%;
  }
}
.cid-urup2ZKlDg .item-text {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-urup2ZKlDg .item-text {
    padding-left: 40px !important;
    padding-left: 0 !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-urup2ZKlDg .item-text {
    padding-left: 25px !important;
    padding-left: 0 !important;
    padding-right: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-urup2ZKlDg .item-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-urup2ZKlDg .card-title {
  color: #131313;
}
.cid-urup2ZKlDg .content-box {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .cid-urup2ZKlDg .content-box {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .cid-urup2ZKlDg .content-box {
    margin-top: 20px;
  }
}
.cid-urup2ZKlDg .content-item {
  width: 100%;
}
.cid-urup2ZKlDg .card-subtitle {
  color: #131313;
}
.cid-urup2ZKlDg .card-subtitle a {
  pointer-events: none;
}
.cid-urup2ZKlDg .card-text {
  margin-top: 20px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-urup2ZKlDg .card-text {
    margin-top: 15px;
  }
}
.cid-urup2ZKlDg .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .cid-urup2ZKlDg .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-urup2ZKlDg .card-title,
.cid-urup2ZKlDg .mbr-section-btn {
  color: #ffffff;
}
.cid-uruoqLAdqb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-uruoqLAdqb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uruoqLAdqb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uruoqLAdqb .container,
.cid-uruoqLAdqb .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uruoqLAdqb .container,
  .cid-uruoqLAdqb .container-fluid {
    padding: 0 20px;
  }
}
.cid-uruoqLAdqb .row {
  position: relative;
  justify-content: center;
  padding: 50px 10px;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uruoqLAdqb .row {
    padding: 85px 8px;
  }
}
.cid-uruoqLAdqb .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uruoqLAdqb .title-wrapper {
    padding: 0;
  }
}
.cid-uruoqLAdqb .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .cid-uruoqLAdqb .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uruoqLAdqb .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uruoqLAdqb .image-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 1200px) {
  .cid-uruoqLAdqb .image-wrapper {
    margin-bottom: 50px;
    height: auto;
  }
}
.cid-uruoqLAdqb .image-wrapper img {
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uruoqLAdqb .image-wrapper img {
    height: 300px;
  }
}
.cid-uruoqLAdqb .mbr-section-title {
  color: #3d4045;
}
.cid-uruoqLAdqb .mbr-text {
  color: #000000;
}
.cid-uruoqLAdqb .mbr-section-title,
.cid-uruoqLAdqb .mbr-section-btn {
  color: #000000;
}
.cid-urt9yR4AD2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-urt9yR4AD2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urt9yR4AD2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urt9yR4AD2 .col-title {
  padding-top: 5.5%;
}
@media (max-width: 991px) {
  .cid-urt9yR4AD2 .col-title {
    padding-top: 0;
  }
}
.cid-urt9yR4AD2 .col-text {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .cid-urt9yR4AD2 .col-text {
    padding-left: 110px !important;
  }
}
@media (max-width: 1199px) {
  .cid-urt9yR4AD2 .col-text {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .cid-urt9yR4AD2 .col-text {
    padding-top: 20px;
  }
}
.cid-urt9yR4AD2 .mbr-section-title {
  margin-bottom: 0;
  color: #131313;
  text-align: center;
}
.cid-urt9yR4AD2 .mbr-section-subtitle {
  margin-top: 24px;
  color: #ef5311;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-urt9yR4AD2 .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-urt9yR4AD2 .mbr-text {
  color: #131313;
}
.cid-urt9yR4AD2 .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .cid-urt9yR4AD2 .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-urt9yR4AD2 .mbr-section-btn .btn-white:hover {
  color: #fc7942 !important;
}
.cid-urt9yRGupF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-urt9yRGupF .mbr-fallback-image.disabled {
  display: none;
}
.cid-urt9yRGupF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urt9yRGupF .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-urt9yRGupF .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-urt9yRGupF .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-urt9yRGupF .mbr-section-title {
  color: #000000;
}
.cid-urt9yRGupF .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-urt9yRGupF .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-urt9yRGupF .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-urt9yRGupF .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-urt9yRGupF .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-urt9yRGupF .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-urt9yRGupF .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 674/calc(145 * 3);
}
.cid-urt9yRGupF .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 130px;
}
@media (max-width: 1199px) {
  .cid-urt9yRGupF .item-content {
    margin-top: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-urt9yRGupF .item-content {
    margin-top: 20px;
  }
}
.cid-urt9yRGupF .card-title {
  color: #131313;
}
.cid-urt9yRGupF .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-urt9yRGupF .link-text {
  margin-top: 14px;
  color: #FC7942;
}
@media (max-width: 991px) {
  .cid-urt9yRGupF .link-text {
    margin-top: 10px;
  }
}
.cid-urt9yRGupF .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-urt9yRGupF .mbr-section-btn {
  margin-top: 5px;
}
.cid-urv0lebXLI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-urv0lebXLI .mbr-fallback-image.disabled {
  display: none;
}
.cid-urv0lebXLI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urv0lebXLI .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-urv0lebXLI .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-urv0lebXLI .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-urv0lebXLI .mbr-section-title {
  color: #131313;
}
.cid-urv0lebXLI .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-urv0lebXLI .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-urv0lebXLI .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-urv0lebXLI .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-urv0lebXLI .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-urv0lebXLI .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-urv0lebXLI .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 674/calc(145 * 3);
}
.cid-urv0lebXLI .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 130px;
}
@media (max-width: 1199px) {
  .cid-urv0lebXLI .item-content {
    margin-top: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-urv0lebXLI .item-content {
    margin-top: 20px;
  }
}
.cid-urv0lebXLI .card-title {
  color: #131313;
}
.cid-urv0lebXLI .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-urv0lebXLI .link-text {
  margin-top: 14px;
  color: #FC7942;
}
@media (max-width: 991px) {
  .cid-urv0lebXLI .link-text {
    margin-top: 10px;
  }
}
.cid-urv0lebXLI .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-urv0lebXLI .mbr-section-btn {
  margin-top: 5px;
}
.cid-urv16gOQ4f {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-urv16gOQ4f .mbr-fallback-image.disabled {
  display: none;
}
.cid-urv16gOQ4f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urv16gOQ4f .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-urv16gOQ4f .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-urv16gOQ4f .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-urv16gOQ4f .mbr-section-title {
  color: #131313;
}
.cid-urv16gOQ4f .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-urv16gOQ4f .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-urv16gOQ4f .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-urv16gOQ4f .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-urv16gOQ4f .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-urv16gOQ4f .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-urv16gOQ4f .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 674/calc(145 * 3);
}
.cid-urv16gOQ4f .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 130px;
}
@media (max-width: 1199px) {
  .cid-urv16gOQ4f .item-content {
    margin-top: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-urv16gOQ4f .item-content {
    margin-top: 20px;
  }
}
.cid-urv16gOQ4f .card-title {
  color: #131313;
}
.cid-urv16gOQ4f .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-urv16gOQ4f .link-text {
  margin-top: 14px;
  color: #FC7942;
}
@media (max-width: 991px) {
  .cid-urv16gOQ4f .link-text {
    margin-top: 10px;
  }
}
.cid-urv16gOQ4f .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-urv16gOQ4f .mbr-section-btn {
  margin-top: 5px;
}
.cid-urv1SrIW2v {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-urv1SrIW2v .mbr-fallback-image.disabled {
  display: none;
}
.cid-urv1SrIW2v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urv1SrIW2v .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-urv1SrIW2v .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-urv1SrIW2v .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-urv1SrIW2v .mbr-section-title {
  color: #131313;
}
.cid-urv1SrIW2v .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-urv1SrIW2v .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-urv1SrIW2v .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-urv1SrIW2v .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-urv1SrIW2v .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-urv1SrIW2v .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-urv1SrIW2v .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 674/calc(145 * 3);
}
.cid-urv1SrIW2v .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 130px;
}
@media (max-width: 1199px) {
  .cid-urv1SrIW2v .item-content {
    margin-top: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-urv1SrIW2v .item-content {
    margin-top: 20px;
  }
}
.cid-urv1SrIW2v .card-title {
  color: #131313;
}
.cid-urv1SrIW2v .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-urv1SrIW2v .link-text {
  margin-top: 14px;
  color: #FC7942;
}
@media (max-width: 991px) {
  .cid-urv1SrIW2v .link-text {
    margin-top: 10px;
  }
}
.cid-urv1SrIW2v .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-urv1SrIW2v .mbr-section-btn {
  margin-top: 5px;
}
.cid-urv2CI2XeX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-urv2CI2XeX .mbr-fallback-image.disabled {
  display: none;
}
.cid-urv2CI2XeX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urv2CI2XeX .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-urv2CI2XeX .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-urv2CI2XeX .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-urv2CI2XeX .mbr-section-title {
  color: #131313;
}
.cid-urv2CI2XeX .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-urv2CI2XeX .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-urv2CI2XeX .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-urv2CI2XeX .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-urv2CI2XeX .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-urv2CI2XeX .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-urv2CI2XeX .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 674/calc(145 * 3);
}
.cid-urv2CI2XeX .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 130px;
}
@media (max-width: 1199px) {
  .cid-urv2CI2XeX .item-content {
    margin-top: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-urv2CI2XeX .item-content {
    margin-top: 20px;
  }
}
.cid-urv2CI2XeX .card-title {
  color: #131313;
}
.cid-urv2CI2XeX .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-urv2CI2XeX .link-text {
  margin-top: 14px;
  color: #FC7942;
}
@media (max-width: 991px) {
  .cid-urv2CI2XeX .link-text {
    margin-top: 10px;
  }
}
.cid-urv2CI2XeX .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-urv2CI2XeX .mbr-section-btn {
  margin-top: 5px;
}
.cid-uryzL7rPFF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-uryzL7rPFF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uryzL7rPFF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uryzL7rPFF .row {
  margin: 0 !important;
  row-gap: 40px;
}
.cid-uryzL7rPFF .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uryzL7rPFF .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uryzL7rPFF .item-img {
    width: 100%;
  }
}
.cid-uryzL7rPFF .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uryzL7rPFF .item-content {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uryzL7rPFF .item-content {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uryzL7rPFF .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uryzL7rPFF .card-title {
  color: #131313;
}
.cid-uryzL7rPFF .card-text {
  margin-top: 25px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-uryzL7rPFF .card-text {
    margin-top: 20px;
  }
}
.cid-uryzL7rPFF .mbr-section-btn {
  margin-top: 34px;
}
@media (max-width: 991px) {
  .cid-uryzL7rPFF .mbr-section-btn {
    margin-top: 14px;
  }
}
@media (max-width: 767px) {
  .cid-uryzL7rPFF .mbr-section-btn {
    margin-top: 4px;
  }
}
.cid-urv6Oe0Tsr {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-urv6Oe0Tsr .mbr-fallback-image.disabled {
  display: none;
}
.cid-urv6Oe0Tsr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urv6Oe0Tsr .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-urv6Oe0Tsr .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-urv6Oe0Tsr .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-urv6Oe0Tsr .mbr-section-title {
  color: #131313;
}
.cid-urv6Oe0Tsr .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-urv6Oe0Tsr .items-row {
  row-gap: 24px;
}
.cid-urv6Oe0Tsr .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-urv6Oe0Tsr .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-urv6Oe0Tsr .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-urv6Oe0Tsr .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-urv6Oe0Tsr .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 3);
}
.cid-urv6Oe0Tsr .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-urv6Oe0Tsr .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-urv6Oe0Tsr .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-urv6Oe0Tsr .card-title {
  color: #131313;
}
.cid-urv6Oe0Tsr .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-urv6Oe0Tsr .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-urv6Oe0Tsr .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-urv6Oe0Tsr .link-text {
    margin-top: 5px;
  }
}
.cid-urv6Oe0Tsr .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-urv6Oe0Tsr .mbr-section-btn {
  margin-top: 5px;
}
.cid-uryCMdVa9a {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uryCMdVa9a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uryCMdVa9a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uryCMdVa9a .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uryCMdVa9a .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uryCMdVa9a .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uryCMdVa9a .mbr-section-title {
  color: #131313;
}
.cid-uryCMdVa9a .mbr-section-subtitle {
  margin-top: 18px;
  color: #000000;
}
.cid-uryCMdVa9a .items-row {
  row-gap: 24px;
}
.cid-uryCMdVa9a .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uryCMdVa9a .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uryCMdVa9a .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-uryCMdVa9a .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uryCMdVa9a .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 3);
}
.cid-uryCMdVa9a .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-uryCMdVa9a .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uryCMdVa9a .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-uryCMdVa9a .card-title {
  color: #131313;
}
.cid-uryCMdVa9a .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-uryCMdVa9a .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-uryCMdVa9a .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-uryCMdVa9a .link-text {
    margin-top: 5px;
  }
}
.cid-uryCMdVa9a .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-uryCMdVa9a .mbr-section-btn {
  margin-top: 5px;
}
.cid-uryEK4vPNf {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uryEK4vPNf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uryEK4vPNf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uryEK4vPNf .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uryEK4vPNf .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uryEK4vPNf .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uryEK4vPNf .mbr-section-title {
  color: #131313;
}
.cid-uryEK4vPNf .mbr-section-subtitle {
  margin-top: 18px;
  color: #000000;
}
.cid-uryEK4vPNf .items-row {
  row-gap: 24px;
}
.cid-uryEK4vPNf .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uryEK4vPNf .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uryEK4vPNf .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-uryEK4vPNf .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uryEK4vPNf .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 3);
}
.cid-uryEK4vPNf .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-uryEK4vPNf .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uryEK4vPNf .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-uryEK4vPNf .card-title {
  color: #131313;
}
.cid-uryEK4vPNf .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-uryEK4vPNf .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-uryEK4vPNf .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-uryEK4vPNf .link-text {
    margin-top: 5px;
  }
}
.cid-uryEK4vPNf .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-uryEK4vPNf .mbr-section-btn {
  margin-top: 5px;
}
.cid-uryELns32F {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uryELns32F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uryELns32F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uryELns32F .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uryELns32F .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uryELns32F .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uryELns32F .mbr-section-title {
  color: #131313;
}
.cid-uryELns32F .mbr-section-subtitle {
  margin-top: 18px;
  color: #000000;
}
.cid-uryELns32F .items-row {
  row-gap: 24px;
}
.cid-uryELns32F .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uryELns32F .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uryELns32F .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-uryELns32F .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uryELns32F .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 3);
}
.cid-uryELns32F .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-uryELns32F .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uryELns32F .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-uryELns32F .card-title {
  color: #131313;
}
.cid-uryELns32F .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-uryELns32F .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-uryELns32F .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-uryELns32F .link-text {
    margin-top: 5px;
  }
}
.cid-uryELns32F .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-uryELns32F .mbr-section-btn {
  margin-top: 5px;
}
.cid-uryEMyT8IS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uryEMyT8IS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uryEMyT8IS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uryEMyT8IS .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uryEMyT8IS .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uryEMyT8IS .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uryEMyT8IS .mbr-section-title {
  color: #131313;
}
.cid-uryEMyT8IS .mbr-section-subtitle {
  margin-top: 18px;
  color: #000000;
}
.cid-uryEMyT8IS .items-row {
  row-gap: 24px;
}
.cid-uryEMyT8IS .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uryEMyT8IS .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uryEMyT8IS .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-uryEMyT8IS .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uryEMyT8IS .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 3);
}
.cid-uryEMyT8IS .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-uryEMyT8IS .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uryEMyT8IS .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-uryEMyT8IS .card-title {
  color: #131313;
}
.cid-uryEMyT8IS .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-uryEMyT8IS .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-uryEMyT8IS .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-uryEMyT8IS .link-text {
    margin-top: 5px;
  }
}
.cid-uryEMyT8IS .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-uryEMyT8IS .mbr-section-btn {
  margin-top: 5px;
}
.cid-uryLd4KZ04 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-uryLd4KZ04 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uryLd4KZ04 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uryLd4KZ04 .row {
  margin: 0 !important;
  row-gap: 30px;
}
.cid-uryLd4KZ04 .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uryLd4KZ04 .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uryLd4KZ04 .item-img {
    width: 100%;
  }
}
.cid-uryLd4KZ04 .item-text {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uryLd4KZ04 .item-text {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uryLd4KZ04 .item-text {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uryLd4KZ04 .item-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uryLd4KZ04 .card-title {
  color: #131313;
}
.cid-uryLd4KZ04 .content-box {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .cid-uryLd4KZ04 .content-box {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .cid-uryLd4KZ04 .content-box {
    margin-top: 20px;
  }
}
.cid-uryLd4KZ04 .content-item {
  width: 100%;
}
.cid-uryLd4KZ04 .card-subtitle {
  color: #131313;
}
.cid-uryLd4KZ04 .card-subtitle a {
  pointer-events: none;
}
.cid-uryLd4KZ04 .card-text {
  margin-top: 20px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-uryLd4KZ04 .card-text {
    margin-top: 15px;
  }
}
.cid-uryLd4KZ04 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .cid-uryLd4KZ04 .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uryMwz7Rr5 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uryMwz7Rr5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uryMwz7Rr5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uryMwz7Rr5 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uryMwz7Rr5 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uryMwz7Rr5 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uryMwz7Rr5 .mbr-section-title {
  color: #000000;
}
.cid-uryMwz7Rr5 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uryMwz7Rr5 .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-uryMwz7Rr5 .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-uryMwz7Rr5 .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-uryMwz7Rr5 .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-uryMwz7Rr5 .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uryMwz7Rr5 .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 674/calc(145 * 3);
}
.cid-uryMwz7Rr5 .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 130px;
}
@media (max-width: 1199px) {
  .cid-uryMwz7Rr5 .item-content {
    margin-top: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uryMwz7Rr5 .item-content {
    margin-top: 20px;
  }
}
.cid-uryMwz7Rr5 .card-title {
  color: #131313;
}
.cid-uryMwz7Rr5 .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-uryMwz7Rr5 .link-text {
  margin-top: 14px;
  color: #FC7942;
}
@media (max-width: 991px) {
  .cid-uryMwz7Rr5 .link-text {
    margin-top: 10px;
  }
}
.cid-uryMwz7Rr5 .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-uryMwz7Rr5 .mbr-section-btn {
  margin-top: 5px;
}
.cid-uryMxtpGCC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uryMxtpGCC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uryMxtpGCC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uryMxtpGCC .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uryMxtpGCC .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uryMxtpGCC .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uryMxtpGCC .mbr-section-title {
  color: #131313;
}
.cid-uryMxtpGCC .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uryMxtpGCC .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-uryMxtpGCC .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-uryMxtpGCC .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-uryMxtpGCC .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-uryMxtpGCC .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uryMxtpGCC .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 674/calc(145 * 3);
}
.cid-uryMxtpGCC .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 130px;
}
@media (max-width: 1199px) {
  .cid-uryMxtpGCC .item-content {
    margin-top: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uryMxtpGCC .item-content {
    margin-top: 20px;
  }
}
.cid-uryMxtpGCC .card-title {
  color: #131313;
}
.cid-uryMxtpGCC .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-uryMxtpGCC .link-text {
  margin-top: 14px;
  color: #FC7942;
}
@media (max-width: 991px) {
  .cid-uryMxtpGCC .link-text {
    margin-top: 10px;
  }
}
.cid-uryMxtpGCC .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-uryMxtpGCC .mbr-section-btn {
  margin-top: 5px;
}
.cid-uryOCDKO6t {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uryOCDKO6t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uryOCDKO6t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uryOCDKO6t .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uryOCDKO6t .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uryOCDKO6t .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uryOCDKO6t .mbr-section-title {
  color: #000000;
}
.cid-uryOCDKO6t .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uryOCDKO6t .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-uryOCDKO6t .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-uryOCDKO6t .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-uryOCDKO6t .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-uryOCDKO6t .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uryOCDKO6t .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 674/calc(145 * 3);
}
.cid-uryOCDKO6t .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 130px;
}
@media (max-width: 1199px) {
  .cid-uryOCDKO6t .item-content {
    margin-top: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uryOCDKO6t .item-content {
    margin-top: 20px;
  }
}
.cid-uryOCDKO6t .card-title {
  color: #131313;
}
.cid-uryOCDKO6t .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-uryOCDKO6t .link-text {
  margin-top: 14px;
  color: #FC7942;
}
@media (max-width: 991px) {
  .cid-uryOCDKO6t .link-text {
    margin-top: 10px;
  }
}
.cid-uryOCDKO6t .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-uryOCDKO6t .mbr-section-btn {
  margin-top: 5px;
}
.cid-uryODXDX2e {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uryODXDX2e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uryODXDX2e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uryODXDX2e .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uryODXDX2e .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uryODXDX2e .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uryODXDX2e .mbr-section-title {
  color: #131313;
}
.cid-uryODXDX2e .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uryODXDX2e .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-uryODXDX2e .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-uryODXDX2e .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-uryODXDX2e .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-uryODXDX2e .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uryODXDX2e .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 674/calc(145 * 3);
}
.cid-uryODXDX2e .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 130px;
}
@media (max-width: 1199px) {
  .cid-uryODXDX2e .item-content {
    margin-top: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uryODXDX2e .item-content {
    margin-top: 20px;
  }
}
.cid-uryODXDX2e .card-title {
  color: #131313;
}
.cid-uryODXDX2e .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-uryODXDX2e .link-text {
  margin-top: 14px;
  color: #FC7942;
}
@media (max-width: 991px) {
  .cid-uryODXDX2e .link-text {
    margin-top: 10px;
  }
}
.cid-uryODXDX2e .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-uryODXDX2e .mbr-section-btn {
  margin-top: 5px;
}
.cid-urySAMBLi1 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-urySAMBLi1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urySAMBLi1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urySAMBLi1 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-urySAMBLi1 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-urySAMBLi1 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-urySAMBLi1 .mbr-section-title {
  color: #131313;
}
.cid-urySAMBLi1 .mbr-section-subtitle {
  margin-top: 18px;
  color: #000000;
}
.cid-urySAMBLi1 .items-row {
  row-gap: 24px;
}
.cid-urySAMBLi1 .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-urySAMBLi1 .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-urySAMBLi1 .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-urySAMBLi1 .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-urySAMBLi1 .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 3);
}
.cid-urySAMBLi1 .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-urySAMBLi1 .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-urySAMBLi1 .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-urySAMBLi1 .card-title {
  color: #131313;
}
.cid-urySAMBLi1 .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-urySAMBLi1 .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-urySAMBLi1 .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-urySAMBLi1 .link-text {
    margin-top: 5px;
  }
}
.cid-urySAMBLi1 .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-urySAMBLi1 .mbr-section-btn {
  margin-top: 5px;
}
.cid-urySBUFuhV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-urySBUFuhV .mbr-fallback-image.disabled {
  display: none;
}
.cid-urySBUFuhV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urySBUFuhV .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-urySBUFuhV .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-urySBUFuhV .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-urySBUFuhV .mbr-section-title {
  color: #131313;
}
.cid-urySBUFuhV .mbr-section-subtitle {
  margin-top: 18px;
  color: #000000;
}
.cid-urySBUFuhV .items-row {
  row-gap: 24px;
}
.cid-urySBUFuhV .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-urySBUFuhV .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-urySBUFuhV .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-urySBUFuhV .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-urySBUFuhV .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 3);
}
.cid-urySBUFuhV .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-urySBUFuhV .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-urySBUFuhV .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-urySBUFuhV .card-title {
  color: #131313;
}
.cid-urySBUFuhV .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-urySBUFuhV .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-urySBUFuhV .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-urySBUFuhV .link-text {
    margin-top: 5px;
  }
}
.cid-urySBUFuhV .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-urySBUFuhV .mbr-section-btn {
  margin-top: 5px;
}
.cid-urzhwwSw2U {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-urzhwwSw2U .mbr-fallback-image.disabled {
  display: none;
}
.cid-urzhwwSw2U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urzhwwSw2U .col-title {
  padding-top: 5.5%;
}
@media (max-width: 991px) {
  .cid-urzhwwSw2U .col-title {
    padding-top: 0;
  }
}
.cid-urzhwwSw2U .col-text {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .cid-urzhwwSw2U .col-text {
    padding-left: 110px !important;
  }
}
@media (max-width: 1199px) {
  .cid-urzhwwSw2U .col-text {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .cid-urzhwwSw2U .col-text {
    padding-top: 20px;
  }
}
.cid-urzhwwSw2U .mbr-section-title {
  margin-bottom: 0;
  color: #131313;
  text-align: center;
}
.cid-urzhwwSw2U .mbr-section-subtitle {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-urzhwwSw2U .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-urzhwwSw2U .mbr-text {
  color: #131313;
}
.cid-urzhwwSw2U .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .cid-urzhwwSw2U .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-urzhwwSw2U .mbr-section-btn .btn-white:hover {
  color: #fc7942 !important;
}
.cid-urzhKhonQF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-urzhKhonQF .mbr-fallback-image.disabled {
  display: none;
}
.cid-urzhKhonQF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urzhKhonQF .container,
.cid-urzhKhonQF .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-urzhKhonQF .container,
  .cid-urzhKhonQF .container-fluid {
    padding: 0 20px;
  }
}
.cid-urzhKhonQF .row {
  position: relative;
  justify-content: center;
  padding: 50px 10px;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-urzhKhonQF .row {
    padding: 85px 8px;
  }
}
.cid-urzhKhonQF .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-urzhKhonQF .title-wrapper {
    padding: 0;
  }
}
.cid-urzhKhonQF .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .cid-urzhKhonQF .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-urzhKhonQF .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-urzhKhonQF .image-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 1200px) {
  .cid-urzhKhonQF .image-wrapper {
    margin-bottom: 50px;
    height: auto;
  }
}
.cid-urzhKhonQF .image-wrapper img {
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-urzhKhonQF .image-wrapper img {
    height: 300px;
  }
}
.cid-urzhKhonQF .mbr-section-title {
  color: #3d4045;
}
.cid-urzhKhonQF .mbr-text {
  color: #3d4045;
}
.cid-urzhKhonQF .mbr-section-title,
.cid-urzhKhonQF .mbr-section-btn {
  color: #3c5284;
}
.cid-urzlMU1L00 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-urzlMU1L00 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urzlMU1L00 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urzlMU1L00 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-urzlMU1L00 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-urzlMU1L00 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-urzlMU1L00 .mbr-section-title {
  color: #131313;
}
.cid-urzlMU1L00 .mbr-section-subtitle {
  margin-top: 18px;
  color: #000000;
}
.cid-urzlMU1L00 .items-row {
  row-gap: 24px;
}
.cid-urzlMU1L00 .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-urzlMU1L00 .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-urzlMU1L00 .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-urzlMU1L00 .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-urzlMU1L00 .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 3);
}
.cid-urzlMU1L00 .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-urzlMU1L00 .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-urzlMU1L00 .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-urzlMU1L00 .card-title {
  color: #131313;
}
.cid-urzlMU1L00 .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-urzlMU1L00 .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-urzlMU1L00 .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-urzlMU1L00 .link-text {
    margin-top: 5px;
  }
}
.cid-urzlMU1L00 .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-urzlMU1L00 .mbr-section-btn {
  margin-top: 5px;
}
.cid-urzlOyADxC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-urzlOyADxC .mbr-fallback-image.disabled {
  display: none;
}
.cid-urzlOyADxC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urzlOyADxC .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-urzlOyADxC .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-urzlOyADxC .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-urzlOyADxC .mbr-section-title {
  color: #131313;
}
.cid-urzlOyADxC .mbr-section-subtitle {
  margin-top: 18px;
  color: #000000;
}
.cid-urzlOyADxC .items-row {
  row-gap: 24px;
}
.cid-urzlOyADxC .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-urzlOyADxC .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-urzlOyADxC .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-urzlOyADxC .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-urzlOyADxC .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 3);
}
.cid-urzlOyADxC .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-urzlOyADxC .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-urzlOyADxC .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-urzlOyADxC .card-title {
  color: #131313;
}
.cid-urzlOyADxC .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-urzlOyADxC .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-urzlOyADxC .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-urzlOyADxC .link-text {
    margin-top: 5px;
  }
}
.cid-urzlOyADxC .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-urzlOyADxC .mbr-section-btn {
  margin-top: 5px;
}
.cid-urzqedL3qn {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-urzqedL3qn .mbr-fallback-image.disabled {
  display: none;
}
.cid-urzqedL3qn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urzqedL3qn .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-urzqedL3qn .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-urzqedL3qn .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-urzqedL3qn .mbr-section-title {
  color: #131313;
}
.cid-urzqedL3qn .mbr-section-subtitle {
  margin-top: 18px;
  color: #000000;
}
.cid-urzqedL3qn .items-row {
  row-gap: 24px;
}
.cid-urzqedL3qn .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-urzqedL3qn .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-urzqedL3qn .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-urzqedL3qn .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-urzqedL3qn .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 3);
}
.cid-urzqedL3qn .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-urzqedL3qn .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-urzqedL3qn .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-urzqedL3qn .card-title {
  color: #131313;
}
.cid-urzqedL3qn .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-urzqedL3qn .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-urzqedL3qn .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-urzqedL3qn .link-text {
    margin-top: 5px;
  }
}
.cid-urzqedL3qn .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-urzqedL3qn .mbr-section-btn {
  margin-top: 5px;
}
.cid-urzqfsLNjK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-urzqfsLNjK .mbr-fallback-image.disabled {
  display: none;
}
.cid-urzqfsLNjK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urzqfsLNjK .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-urzqfsLNjK .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-urzqfsLNjK .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-urzqfsLNjK .mbr-section-title {
  color: #131313;
}
.cid-urzqfsLNjK .mbr-section-subtitle {
  margin-top: 18px;
  color: #000000;
}
.cid-urzqfsLNjK .items-row {
  row-gap: 24px;
}
.cid-urzqfsLNjK .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-urzqfsLNjK .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-urzqfsLNjK .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-urzqfsLNjK .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-urzqfsLNjK .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 3);
}
.cid-urzqfsLNjK .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-urzqfsLNjK .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-urzqfsLNjK .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-urzqfsLNjK .card-title {
  color: #131313;
}
.cid-urzqfsLNjK .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-urzqfsLNjK .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-urzqfsLNjK .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-urzqfsLNjK .link-text {
    margin-top: 5px;
  }
}
.cid-urzqfsLNjK .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-urzqfsLNjK .mbr-section-btn {
  margin-top: 5px;
}
.cid-urzqpitkvS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-urzqpitkvS .mbr-fallback-image.disabled {
  display: none;
}
.cid-urzqpitkvS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urzqpitkvS .container,
.cid-urzqpitkvS .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-urzqpitkvS .container,
  .cid-urzqpitkvS .container-fluid {
    padding: 0 20px;
  }
}
.cid-urzqpitkvS .row {
  position: relative;
  justify-content: center;
  padding: 50px 10px;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-urzqpitkvS .row {
    padding: 85px 8px;
  }
}
.cid-urzqpitkvS .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-urzqpitkvS .title-wrapper {
    padding: 0;
  }
}
.cid-urzqpitkvS .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .cid-urzqpitkvS .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-urzqpitkvS .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-urzqpitkvS .image-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 1200px) {
  .cid-urzqpitkvS .image-wrapper {
    margin-bottom: 50px;
    height: auto;
  }
}
.cid-urzqpitkvS .image-wrapper img {
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-urzqpitkvS .image-wrapper img {
    height: 300px;
  }
}
.cid-urzqpitkvS .mbr-section-title {
  color: #3d4045;
}
.cid-urzqpitkvS .mbr-text {
  color: #3d4045;
}
.cid-urzqpitkvS .mbr-section-title,
.cid-urzqpitkvS .mbr-section-btn {
  color: #3c5284;
}
.cid-urt9yY8VHk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-urt9yY8VHk .mbr-fallback-image.disabled {
  display: none;
}
.cid-urt9yY8VHk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urt9yY8VHk .container,
.cid-urt9yY8VHk .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-urt9yY8VHk .container,
  .cid-urt9yY8VHk .container-fluid {
    padding: 0 20px;
  }
}
.cid-urt9yY8VHk .row {
  position: relative;
  justify-content: center;
  padding: 50px 10px;
  overflow: hidden;
  margin: 0;
  border: 1px solid #3d4045;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-urt9yY8VHk .row {
    padding: 85px 8px;
  }
}
.cid-urt9yY8VHk .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-urt9yY8VHk .title-wrapper {
    padding: 0;
  }
}
.cid-urt9yY8VHk .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .cid-urt9yY8VHk .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-urt9yY8VHk .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-urt9yY8VHk .image-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 1200px) {
  .cid-urt9yY8VHk .image-wrapper {
    margin-bottom: 50px;
    height: auto;
  }
}
.cid-urt9yY8VHk .image-wrapper img {
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-urt9yY8VHk .image-wrapper img {
    height: 300px;
  }
}
.cid-urt9yY8VHk .mbr-section-title {
  color: #3d4045;
}
.cid-urt9yY8VHk .mbr-text {
  color: #3d4045;
}
.cid-urt9yY8VHk .mbr-section-title,
.cid-urt9yY8VHk .mbr-section-btn {
  color: #3c5284;
}
.cid-urztuRfbXR {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-urztuRfbXR .mbr-fallback-image.disabled {
  display: none;
}
.cid-urztuRfbXR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urztuRfbXR .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-urztuRfbXR .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-urztuRfbXR .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-urztuRfbXR .mbr-section-title {
  color: #000000;
}
.cid-urztuRfbXR .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-urztuRfbXR .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-urztuRfbXR .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-urztuRfbXR .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-urztuRfbXR .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-urztuRfbXR .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-urztuRfbXR .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 674/calc(145 * 3);
}
.cid-urztuRfbXR .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 130px;
}
@media (max-width: 1199px) {
  .cid-urztuRfbXR .item-content {
    margin-top: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-urztuRfbXR .item-content {
    margin-top: 20px;
  }
}
.cid-urztuRfbXR .card-title {
  color: #131313;
}
.cid-urztuRfbXR .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-urztuRfbXR .link-text {
  margin-top: 14px;
  color: #FC7942;
}
@media (max-width: 991px) {
  .cid-urztuRfbXR .link-text {
    margin-top: 10px;
  }
}
.cid-urztuRfbXR .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-urztuRfbXR .mbr-section-btn {
  margin-top: 5px;
}
.cid-urzvUhcoSE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3d4045;
}
.cid-urzvUhcoSE .mbr-fallback-image.disabled {
  display: none;
}
.cid-urzvUhcoSE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urzvUhcoSE .container,
.cid-urzvUhcoSE .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-urzvUhcoSE .container,
  .cid-urzvUhcoSE .container-fluid {
    padding: 0 20px;
  }
}
.cid-urzvUhcoSE .row {
  position: relative;
  padding: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-urzvUhcoSE .row {
    padding: 0;
    margin: 0;
  }
}
.cid-urzvUhcoSE .text-wrapper {
  padding: 50px 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-urzvUhcoSE .text-wrapper {
    padding: 20px 0;
  }
}
.cid-urzvUhcoSE .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-urzvUhcoSE .mbr-text {
  color: #8a9198;
  text-align: center;
}
.cid-urt9yZ1Odf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d9e0dd;
}
.cid-urt9yZ1Odf .mbr-fallback-image.disabled {
  display: none;
}
.cid-urt9yZ1Odf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urt9yZ1Odf .container,
.cid-urt9yZ1Odf .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-urt9yZ1Odf .container,
  .cid-urt9yZ1Odf .container-fluid {
    padding: 0 20px;
  }
}
.cid-urt9yZ1Odf .row {
  position: relative;
  padding: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-urt9yZ1Odf .row {
    padding: 0;
    margin: 0;
  }
}
.cid-urt9yZ1Odf .text-wrapper {
  padding: 50px 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-urt9yZ1Odf .text-wrapper {
    padding: 20px 0;
  }
}
.cid-urt9yZ1Odf .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-urt9yZ1Odf .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-urt9yZR096 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d9e0dd;
  overflow: hidden;
}
.cid-urt9yZR096 .mbr-text {
  color: #131313;
}
.cid-uv98xQmEtj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uv98xQmEtj nav.navbar {
  position: fixed;
}
.cid-uv98xQmEtj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uv98xQmEtj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uv98xQmEtj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uv98xQmEtj .dropdown-item:hover,
.cid-uv98xQmEtj .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-uv98xQmEtj .dropdown-item:hover span {
  color: white;
}
.cid-uv98xQmEtj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uv98xQmEtj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uv98xQmEtj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uv98xQmEtj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uv98xQmEtj .nav-link {
  position: relative;
}
.cid-uv98xQmEtj .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uv98xQmEtj .container {
    flex-wrap: nowrap;
  }
}
.cid-uv98xQmEtj .navbar-nav {
  margin: 0 auto;
}
.cid-uv98xQmEtj .dropdown-menu,
.cid-uv98xQmEtj .navbar.opened {
  background: #d9e0dd !important;
}
.cid-uv98xQmEtj .nav-item:focus,
.cid-uv98xQmEtj .nav-link:focus {
  outline: none;
}
.cid-uv98xQmEtj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uv98xQmEtj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uv98xQmEtj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uv98xQmEtj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uv98xQmEtj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uv98xQmEtj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uv98xQmEtj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d9e0dd;
  border: none !important;
  box-shadow: none !important;
}
.cid-uv98xQmEtj .navbar.opened {
  transition: all 0.3s;
}
.cid-uv98xQmEtj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uv98xQmEtj .navbar .navbar-logo img {
  width: auto;
}
.cid-uv98xQmEtj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uv98xQmEtj .navbar.collapsed {
  justify-content: center;
}
.cid-uv98xQmEtj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uv98xQmEtj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uv98xQmEtj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-uv98xQmEtj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uv98xQmEtj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uv98xQmEtj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uv98xQmEtj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uv98xQmEtj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uv98xQmEtj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uv98xQmEtj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uv98xQmEtj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uv98xQmEtj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uv98xQmEtj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uv98xQmEtj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uv98xQmEtj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uv98xQmEtj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uv98xQmEtj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uv98xQmEtj .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uv98xQmEtj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uv98xQmEtj .navbar.navbar-short {
  min-height: 60px;
}
.cid-uv98xQmEtj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uv98xQmEtj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uv98xQmEtj .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uv98xQmEtj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uv98xQmEtj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uv98xQmEtj .dropdown-item.active,
.cid-uv98xQmEtj .dropdown-item:active {
  background-color: transparent;
}
.cid-uv98xQmEtj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uv98xQmEtj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uv98xQmEtj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uv98xQmEtj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9e0dd;
}
.cid-uv98xQmEtj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uv98xQmEtj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uv98xQmEtj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uv98xQmEtj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uv98xQmEtj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uv98xQmEtj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-uv98xQmEtj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uv98xQmEtj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uv98xQmEtj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uv98xQmEtj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uv98xQmEtj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uv98xQmEtj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uv98xQmEtj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uv98xQmEtj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uv98xQmEtj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uv98xQmEtj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uv98xQmEtj .navbar {
    height: 70px;
  }
  .cid-uv98xQmEtj .navbar.opened {
    height: auto;
  }
  .cid-uv98xQmEtj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uv98xQmEtj .container,
.cid-uv98xQmEtj .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-uv98xQmEtj .container:before,
  .cid-uv98xQmEtj .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-uv98xQmEtj .navbar-short {
  background-color: #d9e0dd !important;
}
.cid-uv98xQmEtj .navbar-short .container,
.cid-uv98xQmEtj .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-uv98xQmEtj .navbar-short .container:before,
.cid-uv98xQmEtj .navbar-short .container-fluid:before {
  display: none;
}
.cid-uv98xQmEtj .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-uv98xQmEtj .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-uv98xQmEtj .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-uv98xQmEtj .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-uv98xQmEtj .navbar {
    overflow: hidden;
  }
  .cid-uv98xQmEtj .container,
  .cid-uv98xQmEtj .container-fluid {
    min-height: 85px;
  }
  .cid-uv98xQmEtj .navbar-brand {
    min-height: 85px;
  }
  .cid-uv98xQmEtj .navbar-short .container,
  .cid-uv98xQmEtj .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-uv98xQmEtj .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-uv98xQmEtj .navbar.navbar-short {
    background-color: #d9e0dd !important;
  }
  .cid-uv98xQmEtj .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-uv98xQmEtj .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-uv98xQmEtj .mbr-section-btn {
    text-align: left;
  }
  .cid-uv98xQmEtj .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-uv98xQmEtj .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #d9e0dd;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-uv98xR4kos {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uv98xR4kos .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv98xR4kos .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv98xR4kos .col-title {
  padding-top: 5.5%;
}
@media (max-width: 991px) {
  .cid-uv98xR4kos .col-title {
    padding-top: 0;
  }
}
.cid-uv98xR4kos .col-text {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .cid-uv98xR4kos .col-text {
    padding-left: 110px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uv98xR4kos .col-text {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .cid-uv98xR4kos .col-text {
    padding-top: 20px;
  }
}
.cid-uv98xR4kos .mbr-section-title {
  margin-bottom: 0;
  color: #131313;
}
.cid-uv98xR4kos .mbr-section-subtitle {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-uv98xR4kos .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-uv98xR4kos .mbr-text {
  color: #131313;
}
.cid-uv98xR4kos .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .cid-uv98xR4kos .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-uv98xR4kos .mbr-section-btn .btn-white:hover {
  color: #fc7942 !important;
}
.cid-uv98xRMaoQ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uv98xRMaoQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv98xRMaoQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv98xRMaoQ .row {
  margin: 0 !important;
  row-gap: 30px;
}
.cid-uv98xRMaoQ .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uv98xRMaoQ .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uv98xRMaoQ .item-img {
    width: 100%;
  }
}
.cid-uv98xRMaoQ .item-text {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uv98xRMaoQ .item-text {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uv98xRMaoQ .item-text {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uv98xRMaoQ .item-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uv98xRMaoQ .card-title {
  color: #131313;
}
.cid-uv98xRMaoQ .content-box {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .cid-uv98xRMaoQ .content-box {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .cid-uv98xRMaoQ .content-box {
    margin-top: 20px;
  }
}
.cid-uv98xRMaoQ .content-item {
  width: 100%;
}
.cid-uv98xRMaoQ .card-subtitle {
  color: #131313;
}
.cid-uv98xRMaoQ .card-subtitle a {
  pointer-events: none;
}
.cid-uv98xRMaoQ .card-text {
  margin-top: 20px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-uv98xRMaoQ .card-text {
    margin-top: 15px;
  }
}
.cid-uv98xRMaoQ .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .cid-uv98xRMaoQ .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uv98xSyOgF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uv98xSyOgF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv98xSyOgF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv98xSyOgF .col-title {
  padding-top: 5.5%;
}
@media (max-width: 991px) {
  .cid-uv98xSyOgF .col-title {
    padding-top: 0;
  }
}
.cid-uv98xSyOgF .col-text {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .cid-uv98xSyOgF .col-text {
    padding-left: 110px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uv98xSyOgF .col-text {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .cid-uv98xSyOgF .col-text {
    padding-top: 20px;
  }
}
.cid-uv98xSyOgF .mbr-section-title {
  margin-bottom: 0;
  color: #131313;
  text-align: center;
}
.cid-uv98xSyOgF .mbr-section-subtitle {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-uv98xSyOgF .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-uv98xSyOgF .mbr-text {
  color: #131313;
}
.cid-uv98xSyOgF .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .cid-uv98xSyOgF .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-uv98xSyOgF .mbr-section-btn .btn-white:hover {
  color: #fc7942 !important;
}
.cid-uv9dyv4mVp {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uv9dyv4mVp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv9dyv4mVp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv9dyv4mVp .row {
  margin: 0 !important;
  row-gap: 30px;
}
.cid-uv9dyv4mVp .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uv9dyv4mVp .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uv9dyv4mVp .item-img {
    width: 100%;
  }
}
.cid-uv9dyv4mVp .item-text {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uv9dyv4mVp .item-text {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uv9dyv4mVp .item-text {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uv9dyv4mVp .item-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uv9dyv4mVp .card-title {
  color: #131313;
}
.cid-uv9dyv4mVp .content-box {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .cid-uv9dyv4mVp .content-box {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .cid-uv9dyv4mVp .content-box {
    margin-top: 20px;
  }
}
.cid-uv9dyv4mVp .content-item {
  width: 100%;
}
.cid-uv9dyv4mVp .card-subtitle {
  color: #131313;
}
.cid-uv9dyv4mVp .card-subtitle a {
  pointer-events: none;
}
.cid-uv9dyv4mVp .card-text {
  margin-top: 20px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-uv9dyv4mVp .card-text {
    margin-top: 15px;
  }
}
.cid-uv9dyv4mVp .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .cid-uv9dyv4mVp .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uv9eqVkmuE {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uv9eqVkmuE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv9eqVkmuE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv9eqVkmuE .row {
  margin: 0 !important;
  row-gap: 30px;
}
.cid-uv9eqVkmuE .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uv9eqVkmuE .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uv9eqVkmuE .item-img {
    width: 100%;
  }
}
.cid-uv9eqVkmuE .item-text {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uv9eqVkmuE .item-text {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uv9eqVkmuE .item-text {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uv9eqVkmuE .item-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uv9eqVkmuE .card-title {
  color: #131313;
}
.cid-uv9eqVkmuE .content-box {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .cid-uv9eqVkmuE .content-box {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .cid-uv9eqVkmuE .content-box {
    margin-top: 20px;
  }
}
.cid-uv9eqVkmuE .content-item {
  width: 100%;
}
.cid-uv9eqVkmuE .card-subtitle {
  color: #131313;
}
.cid-uv9eqVkmuE .card-subtitle a {
  pointer-events: none;
}
.cid-uv9eqVkmuE .card-text {
  margin-top: 20px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-uv9eqVkmuE .card-text {
    margin-top: 15px;
  }
}
.cid-uv9eqVkmuE .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .cid-uv9eqVkmuE .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uv9f4ku7j6 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uv9f4ku7j6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv9f4ku7j6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv9f4ku7j6 .row {
  margin: 0 !important;
  row-gap: 30px;
}
.cid-uv9f4ku7j6 .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uv9f4ku7j6 .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uv9f4ku7j6 .item-img {
    width: 100%;
  }
}
.cid-uv9f4ku7j6 .item-text {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uv9f4ku7j6 .item-text {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uv9f4ku7j6 .item-text {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uv9f4ku7j6 .item-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uv9f4ku7j6 .card-title {
  color: #131313;
}
.cid-uv9f4ku7j6 .content-box {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .cid-uv9f4ku7j6 .content-box {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .cid-uv9f4ku7j6 .content-box {
    margin-top: 20px;
  }
}
.cid-uv9f4ku7j6 .content-item {
  width: 100%;
}
.cid-uv9f4ku7j6 .card-subtitle {
  color: #131313;
}
.cid-uv9f4ku7j6 .card-subtitle a {
  pointer-events: none;
}
.cid-uv9f4ku7j6 .card-text {
  margin-top: 20px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-uv9f4ku7j6 .card-text {
    margin-top: 15px;
  }
}
.cid-uv9f4ku7j6 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .cid-uv9f4ku7j6 .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uv9fCiJ1sC {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uv9fCiJ1sC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv9fCiJ1sC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv9fCiJ1sC .row {
  margin: 0 !important;
  row-gap: 30px;
}
.cid-uv9fCiJ1sC .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uv9fCiJ1sC .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uv9fCiJ1sC .item-img {
    width: 100%;
  }
}
.cid-uv9fCiJ1sC .item-text {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uv9fCiJ1sC .item-text {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uv9fCiJ1sC .item-text {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uv9fCiJ1sC .item-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uv9fCiJ1sC .card-title {
  color: #131313;
}
.cid-uv9fCiJ1sC .content-box {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .cid-uv9fCiJ1sC .content-box {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .cid-uv9fCiJ1sC .content-box {
    margin-top: 20px;
  }
}
.cid-uv9fCiJ1sC .content-item {
  width: 100%;
}
.cid-uv9fCiJ1sC .card-subtitle {
  color: #131313;
}
.cid-uv9fCiJ1sC .card-subtitle a {
  pointer-events: none;
}
.cid-uv9fCiJ1sC .card-text {
  margin-top: 20px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-uv9fCiJ1sC .card-text {
    margin-top: 15px;
  }
}
.cid-uv9fCiJ1sC .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .cid-uv9fCiJ1sC .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uv9gHd1pYQ {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uv9gHd1pYQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv9gHd1pYQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv9gHd1pYQ .row {
  margin: 0 !important;
  row-gap: 30px;
}
.cid-uv9gHd1pYQ .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uv9gHd1pYQ .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uv9gHd1pYQ .item-img {
    width: 100%;
  }
}
.cid-uv9gHd1pYQ .item-text {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uv9gHd1pYQ .item-text {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uv9gHd1pYQ .item-text {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uv9gHd1pYQ .item-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uv9gHd1pYQ .card-title {
  color: #131313;
}
.cid-uv9gHd1pYQ .content-box {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .cid-uv9gHd1pYQ .content-box {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .cid-uv9gHd1pYQ .content-box {
    margin-top: 20px;
  }
}
.cid-uv9gHd1pYQ .content-item {
  width: 100%;
}
.cid-uv9gHd1pYQ .card-subtitle {
  color: #131313;
}
.cid-uv9gHd1pYQ .card-subtitle a {
  pointer-events: none;
}
.cid-uv9gHd1pYQ .card-text {
  margin-top: 20px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-uv9gHd1pYQ .card-text {
    margin-top: 15px;
  }
}
.cid-uv9gHd1pYQ .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .cid-uv9gHd1pYQ .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uv98xVJjhY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uv98xVJjhY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv98xVJjhY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv98xVJjhY .container,
.cid-uv98xVJjhY .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uv98xVJjhY .container,
  .cid-uv98xVJjhY .container-fluid {
    padding: 0 20px;
  }
}
.cid-uv98xVJjhY .row {
  position: relative;
  justify-content: center;
  padding: 50px 10px;
  overflow: hidden;
  margin: 0;
  border: 1px solid #3d4045;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uv98xVJjhY .row {
    padding: 85px 8px;
  }
}
.cid-uv98xVJjhY .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uv98xVJjhY .title-wrapper {
    padding: 0;
  }
}
.cid-uv98xVJjhY .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .cid-uv98xVJjhY .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uv98xVJjhY .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uv98xVJjhY .image-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 1200px) {
  .cid-uv98xVJjhY .image-wrapper {
    margin-bottom: 50px;
    height: auto;
  }
}
.cid-uv98xVJjhY .image-wrapper img {
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uv98xVJjhY .image-wrapper img {
    height: 300px;
  }
}
.cid-uv98xVJjhY .mbr-section-title {
  color: #3d4045;
}
.cid-uv98xVJjhY .mbr-text {
  color: #3d4045;
}
.cid-uv98xVJjhY .mbr-section-title,
.cid-uv98xVJjhY .mbr-section-btn {
  color: #3c5284;
}
.cid-uvfs0VhW5d {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uvfs0VhW5d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfs0VhW5d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfs0VhW5d .col-title {
  padding-top: 5.5%;
}
@media (max-width: 991px) {
  .cid-uvfs0VhW5d .col-title {
    padding-top: 0;
  }
}
.cid-uvfs0VhW5d .col-text {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .cid-uvfs0VhW5d .col-text {
    padding-left: 110px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uvfs0VhW5d .col-text {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .cid-uvfs0VhW5d .col-text {
    padding-top: 20px;
  }
}
.cid-uvfs0VhW5d .mbr-section-title {
  margin-bottom: 0;
  color: #131313;
  text-align: center;
}
.cid-uvfs0VhW5d .mbr-section-subtitle {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-uvfs0VhW5d .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-uvfs0VhW5d .mbr-text {
  color: #131313;
}
.cid-uvfs0VhW5d .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .cid-uvfs0VhW5d .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-uvfs0VhW5d .mbr-section-btn .btn-white:hover {
  color: #fc7942 !important;
}
.cid-uv9oabO2Xu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uv9oabO2Xu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv9oabO2Xu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv9oabO2Xu .container,
.cid-uv9oabO2Xu .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uv9oabO2Xu .container,
  .cid-uv9oabO2Xu .container-fluid {
    padding: 0 20px;
  }
}
.cid-uv9oabO2Xu .row {
  position: relative;
  justify-content: center;
  padding: 50px 10px;
  overflow: hidden;
  margin: 0;
  border: 1px solid #3d4045;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uv9oabO2Xu .row {
    padding: 85px 8px;
  }
}
.cid-uv9oabO2Xu .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uv9oabO2Xu .title-wrapper {
    padding: 0;
  }
}
.cid-uv9oabO2Xu .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .cid-uv9oabO2Xu .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uv9oabO2Xu .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uv9oabO2Xu .image-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 1200px) {
  .cid-uv9oabO2Xu .image-wrapper {
    margin-bottom: 50px;
    height: auto;
  }
}
.cid-uv9oabO2Xu .image-wrapper img {
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uv9oabO2Xu .image-wrapper img {
    height: 300px;
  }
}
.cid-uv9oabO2Xu .mbr-section-title {
  color: #3d4045;
}
.cid-uv9oabO2Xu .mbr-text {
  color: #3d4045;
}
.cid-uv9oabO2Xu .mbr-section-title,
.cid-uv9oabO2Xu .mbr-section-btn {
  color: #3c5284;
}
.cid-uvfs2YsdHU {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uvfs2YsdHU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfs2YsdHU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfs2YsdHU .row {
  margin: 0 !important;
  row-gap: 30px;
  flex-direction: row-reverse;
}
.cid-uvfs2YsdHU .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
  justify-content: flex-end;
}
.cid-uvfs2YsdHU .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uvfs2YsdHU .item-img {
    width: 100%;
  }
}
.cid-uvfs2YsdHU .item-text {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uvfs2YsdHU .item-text {
    padding-left: 40px !important;
    padding-left: 0 !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uvfs2YsdHU .item-text {
    padding-left: 25px !important;
    padding-left: 0 !important;
    padding-right: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uvfs2YsdHU .item-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uvfs2YsdHU .card-title {
  color: #131313;
}
.cid-uvfs2YsdHU .content-box {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .cid-uvfs2YsdHU .content-box {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .cid-uvfs2YsdHU .content-box {
    margin-top: 20px;
  }
}
.cid-uvfs2YsdHU .content-item {
  width: 100%;
}
.cid-uvfs2YsdHU .card-subtitle {
  color: #131313;
}
.cid-uvfs2YsdHU .card-subtitle a {
  pointer-events: none;
}
.cid-uvfs2YsdHU .card-text {
  margin-top: 20px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-uvfs2YsdHU .card-text {
    margin-top: 15px;
  }
}
.cid-uvfs2YsdHU .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .cid-uvfs2YsdHU .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uv98xYHqmM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uv98xYHqmM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv98xYHqmM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv98xYHqmM .container,
.cid-uv98xYHqmM .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uv98xYHqmM .container,
  .cid-uv98xYHqmM .container-fluid {
    padding: 0 20px;
  }
}
.cid-uv98xYHqmM .row {
  position: relative;
  justify-content: center;
  padding: 50px 10px;
  overflow: hidden;
  margin: 0;
  border: 1px solid #3d4045;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uv98xYHqmM .row {
    padding: 85px 8px;
  }
}
.cid-uv98xYHqmM .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uv98xYHqmM .title-wrapper {
    padding: 0;
  }
}
.cid-uv98xYHqmM .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .cid-uv98xYHqmM .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uv98xYHqmM .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uv98xYHqmM .image-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 1200px) {
  .cid-uv98xYHqmM .image-wrapper {
    margin-bottom: 50px;
    height: auto;
  }
}
.cid-uv98xYHqmM .image-wrapper img {
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uv98xYHqmM .image-wrapper img {
    height: 300px;
  }
}
.cid-uv98xYHqmM .mbr-section-title {
  color: #3d4045;
}
.cid-uv98xYHqmM .mbr-text {
  color: #3d4045;
}
.cid-uv98xYHqmM .mbr-section-title,
.cid-uv98xYHqmM .mbr-section-btn {
  color: #3c5284;
}
.cid-uv98xZsRAg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d9e0dd;
}
.cid-uv98xZsRAg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv98xZsRAg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv98xZsRAg .container,
.cid-uv98xZsRAg .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uv98xZsRAg .container,
  .cid-uv98xZsRAg .container-fluid {
    padding: 0 20px;
  }
}
.cid-uv98xZsRAg .row {
  position: relative;
  padding: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uv98xZsRAg .row {
    padding: 0;
    margin: 0;
  }
}
.cid-uv98xZsRAg .text-wrapper {
  padding: 50px 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-uv98xZsRAg .text-wrapper {
    padding: 20px 0;
  }
}
.cid-uv98xZsRAg .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uv98xZsRAg .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uv98y085k9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d9e0dd;
  overflow: hidden;
}
.cid-uv98y085k9 .mbr-text {
  color: #131313;
}
.cid-uHimsNfWSR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uHimsNfWSR nav.navbar {
  position: fixed;
}
.cid-uHimsNfWSR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHimsNfWSR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHimsNfWSR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uHimsNfWSR .dropdown-item:hover,
.cid-uHimsNfWSR .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-uHimsNfWSR .dropdown-item:hover span {
  color: white;
}
.cid-uHimsNfWSR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHimsNfWSR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHimsNfWSR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHimsNfWSR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHimsNfWSR .nav-link {
  position: relative;
}
.cid-uHimsNfWSR .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHimsNfWSR .container {
    flex-wrap: nowrap;
  }
}
.cid-uHimsNfWSR .navbar-nav {
  margin: 0 auto;
}
.cid-uHimsNfWSR .dropdown-menu,
.cid-uHimsNfWSR .navbar.opened {
  background: #d9e0dd !important;
}
.cid-uHimsNfWSR .nav-item:focus,
.cid-uHimsNfWSR .nav-link:focus {
  outline: none;
}
.cid-uHimsNfWSR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHimsNfWSR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHimsNfWSR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHimsNfWSR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHimsNfWSR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHimsNfWSR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHimsNfWSR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d9e0dd;
  border: none !important;
  box-shadow: none !important;
}
.cid-uHimsNfWSR .navbar.opened {
  transition: all 0.3s;
}
.cid-uHimsNfWSR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHimsNfWSR .navbar .navbar-logo img {
  width: auto;
}
.cid-uHimsNfWSR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHimsNfWSR .navbar.collapsed {
  justify-content: center;
}
.cid-uHimsNfWSR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHimsNfWSR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHimsNfWSR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-uHimsNfWSR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHimsNfWSR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHimsNfWSR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uHimsNfWSR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHimsNfWSR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uHimsNfWSR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHimsNfWSR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHimsNfWSR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHimsNfWSR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHimsNfWSR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uHimsNfWSR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHimsNfWSR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHimsNfWSR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHimsNfWSR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHimsNfWSR .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHimsNfWSR .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHimsNfWSR .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHimsNfWSR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uHimsNfWSR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uHimsNfWSR .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uHimsNfWSR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHimsNfWSR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHimsNfWSR .dropdown-item.active,
.cid-uHimsNfWSR .dropdown-item:active {
  background-color: transparent;
}
.cid-uHimsNfWSR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHimsNfWSR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHimsNfWSR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHimsNfWSR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9e0dd;
}
.cid-uHimsNfWSR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHimsNfWSR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHimsNfWSR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHimsNfWSR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uHimsNfWSR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHimsNfWSR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-uHimsNfWSR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHimsNfWSR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHimsNfWSR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHimsNfWSR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHimsNfWSR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHimsNfWSR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHimsNfWSR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHimsNfWSR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHimsNfWSR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uHimsNfWSR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uHimsNfWSR .navbar {
    height: 70px;
  }
  .cid-uHimsNfWSR .navbar.opened {
    height: auto;
  }
  .cid-uHimsNfWSR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHimsNfWSR .container,
.cid-uHimsNfWSR .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-uHimsNfWSR .container:before,
  .cid-uHimsNfWSR .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-uHimsNfWSR .navbar-short {
  background-color: #d9e0dd !important;
}
.cid-uHimsNfWSR .navbar-short .container,
.cid-uHimsNfWSR .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-uHimsNfWSR .navbar-short .container:before,
.cid-uHimsNfWSR .navbar-short .container-fluid:before {
  display: none;
}
.cid-uHimsNfWSR .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-uHimsNfWSR .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-uHimsNfWSR .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-uHimsNfWSR .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-uHimsNfWSR .navbar {
    overflow: hidden;
  }
  .cid-uHimsNfWSR .container,
  .cid-uHimsNfWSR .container-fluid {
    min-height: 85px;
  }
  .cid-uHimsNfWSR .navbar-brand {
    min-height: 85px;
  }
  .cid-uHimsNfWSR .navbar-short .container,
  .cid-uHimsNfWSR .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-uHimsNfWSR .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-uHimsNfWSR .navbar.navbar-short {
    background-color: #d9e0dd !important;
  }
  .cid-uHimsNfWSR .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-uHimsNfWSR .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-uHimsNfWSR .mbr-section-btn {
    text-align: left;
  }
  .cid-uHimsNfWSR .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-uHimsNfWSR .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #d9e0dd;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-uPkh0yNuef {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-uPkh0yNuef .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPkh0yNuef .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPkh0yNuef .image-wrapper {
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
}
.cid-uPkh0yNuef img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
@media (max-width: 767px) {
  .cid-uPkh0yNuef img {
    min-height: 400px;
  }
}
.cid-uHimsNMkHB {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uHimsNMkHB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHimsNMkHB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHimsNMkHB .col-title {
  padding-top: 5.5%;
}
@media (max-width: 991px) {
  .cid-uHimsNMkHB .col-title {
    padding-top: 0;
  }
}
.cid-uHimsNMkHB .col-text {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .cid-uHimsNMkHB .col-text {
    padding-left: 110px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uHimsNMkHB .col-text {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .cid-uHimsNMkHB .col-text {
    padding-top: 20px;
  }
}
.cid-uHimsNMkHB .mbr-section-title {
  margin-bottom: 0;
  color: #131313;
}
.cid-uHimsNMkHB .mbr-section-subtitle {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-uHimsNMkHB .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-uHimsNMkHB .mbr-text {
  color: #131313;
}
.cid-uHimsNMkHB .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .cid-uHimsNMkHB .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-uHimsNMkHB .mbr-section-btn .btn-white:hover {
  color: #fc7942 !important;
}
.cid-uHimsOfzOV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uHimsOfzOV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHimsOfzOV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHimsOfzOV .row {
  margin: 0 !important;
  row-gap: 30px;
}
.cid-uHimsOfzOV .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uHimsOfzOV .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uHimsOfzOV .item-img {
    width: 100%;
  }
}
.cid-uHimsOfzOV .item-text {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uHimsOfzOV .item-text {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uHimsOfzOV .item-text {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uHimsOfzOV .item-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uHimsOfzOV .card-title {
  color: #131313;
}
.cid-uHimsOfzOV .content-box {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .cid-uHimsOfzOV .content-box {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .cid-uHimsOfzOV .content-box {
    margin-top: 20px;
  }
}
.cid-uHimsOfzOV .content-item {
  width: 100%;
}
.cid-uHimsOfzOV .card-subtitle {
  color: #131313;
}
.cid-uHimsOfzOV .card-subtitle a {
  pointer-events: none;
}
.cid-uHimsOfzOV .card-text {
  margin-top: 20px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-uHimsOfzOV .card-text {
    margin-top: 15px;
  }
}
.cid-uHimsOfzOV .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .cid-uHimsOfzOV .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uHimsQHvAQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uHimsQHvAQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHimsQHvAQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHimsQHvAQ .container,
.cid-uHimsQHvAQ .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uHimsQHvAQ .container,
  .cid-uHimsQHvAQ .container-fluid {
    padding: 0 20px;
  }
}
.cid-uHimsQHvAQ .row {
  position: relative;
  justify-content: center;
  padding: 50px 10px;
  overflow: hidden;
  margin: 0;
  border: 1px solid #3d4045;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uHimsQHvAQ .row {
    padding: 85px 8px;
  }
}
.cid-uHimsQHvAQ .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uHimsQHvAQ .title-wrapper {
    padding: 0;
  }
}
.cid-uHimsQHvAQ .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .cid-uHimsQHvAQ .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uHimsQHvAQ .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uHimsQHvAQ .image-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 1200px) {
  .cid-uHimsQHvAQ .image-wrapper {
    margin-bottom: 50px;
    height: auto;
  }
}
.cid-uHimsQHvAQ .image-wrapper img {
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uHimsQHvAQ .image-wrapper img {
    height: 300px;
  }
}
.cid-uHimsQHvAQ .mbr-section-title {
  color: #3d4045;
}
.cid-uHimsQHvAQ .mbr-text {
  color: #3d4045;
}
.cid-uHimsQHvAQ .mbr-section-title,
.cid-uHimsQHvAQ .mbr-section-btn {
  color: #3c5284;
}
.cid-uHj6bvNDJU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uHj6bvNDJU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHj6bvNDJU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHj6bvNDJU .container,
.cid-uHj6bvNDJU .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uHj6bvNDJU .container,
  .cid-uHj6bvNDJU .container-fluid {
    padding: 0 20px;
  }
}
.cid-uHj6bvNDJU .row {
  position: relative;
  justify-content: center;
  padding: 50px 10px;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uHj6bvNDJU .row {
    padding: 85px 8px;
  }
}
.cid-uHj6bvNDJU .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uHj6bvNDJU .title-wrapper {
    padding: 0;
  }
}
.cid-uHj6bvNDJU .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .cid-uHj6bvNDJU .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uHj6bvNDJU .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uHj6bvNDJU .image-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 1200px) {
  .cid-uHj6bvNDJU .image-wrapper {
    margin-bottom: 50px;
    height: auto;
  }
}
.cid-uHj6bvNDJU .image-wrapper img {
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uHj6bvNDJU .image-wrapper img {
    height: 300px;
  }
}
.cid-uHj6bvNDJU .mbr-section-title {
  color: #3d4045;
}
.cid-uHj6bvNDJU .mbr-text {
  color: #3d4045;
}
.cid-uHj6bvNDJU .mbr-section-title,
.cid-uHj6bvNDJU .mbr-section-btn {
  color: #3c5284;
}
.cid-uHimsSuJyv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uHimsSuJyv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHimsSuJyv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHimsSuJyv .container,
.cid-uHimsSuJyv .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uHimsSuJyv .container,
  .cid-uHimsSuJyv .container-fluid {
    padding: 0 20px;
  }
}
.cid-uHimsSuJyv .row {
  position: relative;
  justify-content: center;
  padding: 50px 10px;
  overflow: hidden;
  margin: 0;
  border: 1px solid #3d4045;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uHimsSuJyv .row {
    padding: 85px 8px;
  }
}
.cid-uHimsSuJyv .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uHimsSuJyv .title-wrapper {
    padding: 0;
  }
}
.cid-uHimsSuJyv .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .cid-uHimsSuJyv .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uHimsSuJyv .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uHimsSuJyv .image-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 1200px) {
  .cid-uHimsSuJyv .image-wrapper {
    margin-bottom: 50px;
    height: auto;
  }
}
.cid-uHimsSuJyv .image-wrapper img {
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uHimsSuJyv .image-wrapper img {
    height: 300px;
  }
}
.cid-uHimsSuJyv .mbr-section-title {
  color: #3d4045;
}
.cid-uHimsSuJyv .mbr-text {
  color: #3d4045;
}
.cid-uHimsSuJyv .mbr-section-title,
.cid-uHimsSuJyv .mbr-section-btn {
  color: #3c5284;
}
.cid-uI42M2Dsqw {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uI42M2Dsqw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uI42M2Dsqw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uI42M2Dsqw .row {
  margin: 0 !important;
  row-gap: 30px;
}
.cid-uI42M2Dsqw .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uI42M2Dsqw .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uI42M2Dsqw .item-img {
    width: 100%;
  }
}
.cid-uI42M2Dsqw .item-text {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uI42M2Dsqw .item-text {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uI42M2Dsqw .item-text {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uI42M2Dsqw .item-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uI42M2Dsqw .card-title {
  color: #131313;
}
.cid-uI42M2Dsqw .content-box {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .cid-uI42M2Dsqw .content-box {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .cid-uI42M2Dsqw .content-box {
    margin-top: 20px;
  }
}
.cid-uI42M2Dsqw .content-item {
  width: 100%;
}
.cid-uI42M2Dsqw .card-subtitle {
  color: #131313;
}
.cid-uI42M2Dsqw .card-subtitle a {
  pointer-events: none;
}
.cid-uI42M2Dsqw .card-text {
  margin-top: 20px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-uI42M2Dsqw .card-text {
    margin-top: 15px;
  }
}
.cid-uI42M2Dsqw .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .cid-uI42M2Dsqw .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uHimsSPZ9S {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d9e0dd;
}
.cid-uHimsSPZ9S .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHimsSPZ9S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHimsSPZ9S .container,
.cid-uHimsSPZ9S .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uHimsSPZ9S .container,
  .cid-uHimsSPZ9S .container-fluid {
    padding: 0 20px;
  }
}
.cid-uHimsSPZ9S .row {
  position: relative;
  padding: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uHimsSPZ9S .row {
    padding: 0;
    margin: 0;
  }
}
.cid-uHimsSPZ9S .text-wrapper {
  padding: 50px 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-uHimsSPZ9S .text-wrapper {
    padding: 20px 0;
  }
}
.cid-uHimsSPZ9S .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uHimsSPZ9S .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uHimsTbMPI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d9e0dd;
  overflow: hidden;
}
.cid-uHimsTbMPI .mbr-text {
  color: #131313;
}
.cid-v1pHe7FJMF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v1pHe7FJMF nav.navbar {
  position: fixed;
}
.cid-v1pHe7FJMF .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v1pHe7FJMF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v1pHe7FJMF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v1pHe7FJMF .dropdown-item:hover,
.cid-v1pHe7FJMF .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-v1pHe7FJMF .dropdown-item:hover span {
  color: white;
}
.cid-v1pHe7FJMF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v1pHe7FJMF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v1pHe7FJMF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v1pHe7FJMF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v1pHe7FJMF .nav-link {
  position: relative;
}
.cid-v1pHe7FJMF .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v1pHe7FJMF .container {
    flex-wrap: nowrap;
  }
}
.cid-v1pHe7FJMF .navbar-nav {
  margin: 0 auto;
}
.cid-v1pHe7FJMF .dropdown-menu,
.cid-v1pHe7FJMF .navbar.opened {
  background: #d9e0dd !important;
}
.cid-v1pHe7FJMF .nav-item:focus,
.cid-v1pHe7FJMF .nav-link:focus {
  outline: none;
}
.cid-v1pHe7FJMF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v1pHe7FJMF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v1pHe7FJMF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v1pHe7FJMF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v1pHe7FJMF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v1pHe7FJMF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v1pHe7FJMF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d9e0dd;
  border: none !important;
  box-shadow: none !important;
}
.cid-v1pHe7FJMF .navbar.opened {
  transition: all 0.3s;
}
.cid-v1pHe7FJMF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v1pHe7FJMF .navbar .navbar-logo img {
  width: auto;
}
.cid-v1pHe7FJMF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v1pHe7FJMF .navbar.collapsed {
  justify-content: center;
}
.cid-v1pHe7FJMF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v1pHe7FJMF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v1pHe7FJMF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.2rem);
  }
}
.cid-v1pHe7FJMF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v1pHe7FJMF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v1pHe7FJMF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v1pHe7FJMF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v1pHe7FJMF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-v1pHe7FJMF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v1pHe7FJMF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v1pHe7FJMF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v1pHe7FJMF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v1pHe7FJMF .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v1pHe7FJMF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v1pHe7FJMF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v1pHe7FJMF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v1pHe7FJMF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v1pHe7FJMF .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v1pHe7FJMF .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v1pHe7FJMF .navbar.navbar-short {
  min-height: 60px;
}
.cid-v1pHe7FJMF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v1pHe7FJMF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v1pHe7FJMF .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v1pHe7FJMF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v1pHe7FJMF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v1pHe7FJMF .dropdown-item.active,
.cid-v1pHe7FJMF .dropdown-item:active {
  background-color: transparent;
}
.cid-v1pHe7FJMF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v1pHe7FJMF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v1pHe7FJMF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v1pHe7FJMF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9e0dd;
}
.cid-v1pHe7FJMF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v1pHe7FJMF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v1pHe7FJMF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v1pHe7FJMF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v1pHe7FJMF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v1pHe7FJMF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-v1pHe7FJMF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v1pHe7FJMF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1pHe7FJMF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1pHe7FJMF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v1pHe7FJMF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1pHe7FJMF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v1pHe7FJMF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v1pHe7FJMF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1pHe7FJMF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v1pHe7FJMF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v1pHe7FJMF .navbar {
    height: 70px;
  }
  .cid-v1pHe7FJMF .navbar.opened {
    height: auto;
  }
  .cid-v1pHe7FJMF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v1pHe7FJMF .container,
.cid-v1pHe7FJMF .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-v1pHe7FJMF .container:before,
  .cid-v1pHe7FJMF .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-v1pHe7FJMF .navbar-short {
  background-color: #d9e0dd !important;
}
.cid-v1pHe7FJMF .navbar-short .container,
.cid-v1pHe7FJMF .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-v1pHe7FJMF .navbar-short .container:before,
.cid-v1pHe7FJMF .navbar-short .container-fluid:before {
  display: none;
}
.cid-v1pHe7FJMF .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-v1pHe7FJMF .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-v1pHe7FJMF .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-v1pHe7FJMF .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-v1pHe7FJMF .navbar {
    overflow: hidden;
  }
  .cid-v1pHe7FJMF .container,
  .cid-v1pHe7FJMF .container-fluid {
    min-height: 85px;
  }
  .cid-v1pHe7FJMF .navbar-brand {
    min-height: 85px;
  }
  .cid-v1pHe7FJMF .navbar-short .container,
  .cid-v1pHe7FJMF .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-v1pHe7FJMF .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-v1pHe7FJMF .navbar.navbar-short {
    background-color: #d9e0dd !important;
  }
  .cid-v1pHe7FJMF .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-v1pHe7FJMF .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-v1pHe7FJMF .mbr-section-btn {
    text-align: left;
  }
  .cid-v1pHe7FJMF .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-v1pHe7FJMF .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #d9e0dd;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-v1pHe8uBnZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v1pHe8uBnZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1pHe8uBnZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1pHe8uBnZ .col-title {
  padding-top: 5.5%;
}
@media (max-width: 991px) {
  .cid-v1pHe8uBnZ .col-title {
    padding-top: 0;
  }
}
.cid-v1pHe8uBnZ .col-text {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .cid-v1pHe8uBnZ .col-text {
    padding-left: 110px !important;
  }
}
@media (max-width: 1199px) {
  .cid-v1pHe8uBnZ .col-text {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .cid-v1pHe8uBnZ .col-text {
    padding-top: 20px;
  }
}
.cid-v1pHe8uBnZ .mbr-section-title {
  margin-bottom: 0;
  color: #131313;
  text-align: center;
}
.cid-v1pHe8uBnZ .mbr-section-subtitle {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-v1pHe8uBnZ .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-v1pHe8uBnZ .mbr-text {
  color: #131313;
}
.cid-v1pHe8uBnZ .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .cid-v1pHe8uBnZ .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-v1pHe8uBnZ .mbr-section-btn .btn-white:hover {
  color: #fc7942 !important;
}
.cid-v1pHe8LZON {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v1pHe8LZON .mbr-section-head {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .cid-v1pHe8LZON .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .cid-v1pHe8LZON .mbr-section-head {
    margin-bottom: 35px;
  }
}
.cid-v1pHe8LZON .mbr-section-title {
  color: #131313;
}
.cid-v1pHe8LZON .mbr-section-subtitle {
  margin-top: 16px;
  color: #131313;
}
.cid-v1pHe8LZON .items-row {
  column-gap: 120px;
}
@media (min-width: 992px) {
  .cid-v1pHe8LZON .items-row {
    margin: 0 !important;
  }
}
.cid-v1pHe8LZON .item {
  margin-bottom: 80px;
  width: calc(50% - 60px);
}
@media (min-width: 992px) {
  .cid-v1pHe8LZON .item {
    padding: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-v1pHe8LZON .item {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-v1pHe8LZON .item {
    margin-bottom: 40px;
  }
}
.cid-v1pHe8LZON .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.cid-v1pHe8LZON .item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-v1pHe8LZON .item-content {
  margin-top: 40px;
}
@media (max-width: 1439px) {
  .cid-v1pHe8LZON .item-content {
    margin-top: 20px;
  }
}
.cid-v1pHe8LZON .item-title {
  color: #131313;
}
.cid-v1pHe8LZON .mbr-text {
  margin-top: 14px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-v1pHe8LZON .mbr-text {
    margin-top: 8px;
  }
}
.cid-v1pHe8LZON .mbr-section-btn {
  margin-top: 6px;
}
@media (max-width: 767px) {
  .cid-v1pHe8LZON .mbr-section-btn {
    margin-top: 4px;
  }
}
.cid-v1pHe9489G {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-v1pHe9489G .mbr-section-head {
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .cid-v1pHe9489G .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .cid-v1pHe9489G .mbr-section-head {
    margin-bottom: 35px;
  }
}
.cid-v1pHe9489G .mbr-section-title {
  color: #131313;
}
.cid-v1pHe9489G .mbr-section-subtitle {
  margin-top: 16px;
  color: #131313;
}
.cid-v1pHe9489G .items-row {
  column-gap: 120px;
}
@media (min-width: 992px) {
  .cid-v1pHe9489G .items-row {
    margin: 0 !important;
  }
}
.cid-v1pHe9489G .item {
  margin-bottom: 80px;
  width: calc(50% - 60px);
}
@media (min-width: 992px) {
  .cid-v1pHe9489G .item {
    padding: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-v1pHe9489G .item {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-v1pHe9489G .item {
    margin-bottom: 40px;
  }
}
.cid-v1pHe9489G .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.cid-v1pHe9489G .item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-v1pHe9489G .item-content {
  margin-top: 40px;
}
@media (max-width: 1439px) {
  .cid-v1pHe9489G .item-content {
    margin-top: 20px;
  }
}
.cid-v1pHe9489G .item-title {
  color: #131313;
}
.cid-v1pHe9489G .mbr-text {
  margin-top: 14px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-v1pHe9489G .mbr-text {
    margin-top: 8px;
  }
}
.cid-v1pHe9489G .mbr-section-btn {
  margin-top: 6px;
}
@media (max-width: 767px) {
  .cid-v1pHe9489G .mbr-section-btn {
    margin-top: 4px;
  }
}
.cid-v1pHeaLsbA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #d9e0dd;
}
.cid-v1pHeaLsbA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1pHeaLsbA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1pHeaLsbA .container,
.cid-v1pHeaLsbA .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-v1pHeaLsbA .container,
  .cid-v1pHeaLsbA .container-fluid {
    padding: 0 20px;
  }
}
.cid-v1pHeaLsbA .row {
  position: relative;
  padding: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v1pHeaLsbA .row {
    padding: 0;
    margin: 0;
  }
}
.cid-v1pHeaLsbA .text-wrapper {
  padding: 50px 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-v1pHeaLsbA .text-wrapper {
    padding: 20px 0;
  }
}
.cid-v1pHeaLsbA .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v1pHeaLsbA .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-v1pHeb5l7u {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d9e0dd;
  overflow: hidden;
}
.cid-v1pHeb5l7u .mbr-text {
  color: #131313;
}
