@import url(https://fonts.googleapis.com/css?family=Jost:100,200,300,400,500,600,700,800,900,100i,200i,300i,400i,500i,600i,700i,800i,900i&display=swap);





body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #2299aa !important;
}
.bg-success {
  background-color: #2299aa !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #2299aa !important;
  border-color: #2299aa !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #145862 !important;
  border-color: #145862 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #145862 !important;
  border-color: #145862 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #2299aa !important;
  border-color: #2299aa !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #145862 !important;
  border-color: #145862 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #145862 !important;
  border-color: #145862 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #2299aa;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #145862 !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: #2299aa !important;
  border-color: #2299aa !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #2299aa;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #145862 !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: #2299aa !important;
  border-color: #2299aa !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #2299aa !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #2299aa !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #114c55 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #114c55 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  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]):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: #2299aa;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #2299aa;
  border-color: #2299aa;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #2299aa;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #6ad2e1;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #6ad2e1;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #2299aa !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #2299aa;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #2299aa;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #2299aa;
}
.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: #2299aa;
  border-bottom-color: #2299aa;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #2299aa !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: #ff6666 !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='%232299aa' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sofKUYV929 {
  background-image: url("../../../assets/images/20200829-114919-2000x1500.jpg");
}
.cid-sofKUYV929 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-sofT5FuItv {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #2299aa;
}
@media (max-width: 767px) {
  .cid-sofT5FuItv .content {
    text-align: center;
  }
  .cid-sofT5FuItv .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sofT5FuItv .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-sofT5FuItv .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sofT5FuItv .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-sofT5FuItv .google-map {
  height: 25rem;
  position: relative;
}
.cid-sofT5FuItv .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sofT5FuItv .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sofT5FuItv .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sofT5FuItv .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sofT5FuItv .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sofT5FuItv .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sofT5FuItv .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sofT5FuItv .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sofT5FuItv .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sofT5FuItv .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sofT5FuItv .list {
  list-style-type: none;
  padding: 0;
}
.cid-sqNMG3mNr8 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-sqNMG3mNr8 .container {
    max-width: 1400px;
  }
}
.cid-sqNMG3mNr8 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #e43f3f;
  margin-bottom: 2rem;
}
.cid-sqNMG3mNr8 .card-wrapper {
  margin-top: 3rem;
}
.cid-sqNMG3mNr8 .row {
  justify-content: center;
}
.cid-sqNMG3mNr8 .mbr-section-title {
  color: #2299aa;
}
.cid-sqNMG3mNr8 .card-title,
.cid-sqNMG3mNr8 .iconfont-wrapper {
  color: #2299aa;
}
.cid-sqNMG3mNr8 .mbr-section-subtitle {
  color: #2299aa;
}
.cid-sofXbXJwZo {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x837.jpeg");
}
.cid-sofXbXJwZo .mbr-overlay {
  background: #fafafa;
  opacity: 0.1;
}
.cid-sofXbXJwZo img,
.cid-sofXbXJwZo .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sofXbXJwZo .item:focus,
.cid-sofXbXJwZo span:focus {
  outline: none;
}
.cid-sofXbXJwZo .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sofXbXJwZo .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sofXbXJwZo .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sofXbXJwZo .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sofXbXJwZo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sofXbXJwZo .mbr-section-title {
  color: #2299aa;
}
.cid-spo5mxtKUy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-spo5mxtKUy .mbr-overlay {
  background: #fafafa;
  opacity: 0.1;
}
.cid-spo5mxtKUy img,
.cid-spo5mxtKUy .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-spo5mxtKUy .item:focus,
.cid-spo5mxtKUy span:focus {
  outline: none;
}
.cid-spo5mxtKUy .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-spo5mxtKUy .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-spo5mxtKUy .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-spo5mxtKUy .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-spo5mxtKUy .mbr-section-btn {
  margin-top: auto !important;
}
.cid-spo5mxtKUy .mbr-section-title {
  color: #2299aa;
}
.cid-sqwsmRFIVY {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-sqwsmRFIVY .container {
    max-width: 1400px;
  }
}
.cid-sqwsmRFIVY .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #e43f3f;
  margin-bottom: 2rem;
}
.cid-sqwsmRFIVY .card-wrapper {
  margin-top: 3rem;
}
.cid-sqwsmRFIVY .row {
  justify-content: center;
}
.cid-sqwsmRFIVY .mbr-section-title {
  color: #2299aa;
}
.cid-sqwsmRFIVY .card-title,
.cid-sqwsmRFIVY .iconfont-wrapper {
  color: #2299aa;
}
.cid-sqwsmRFIVY .mbr-section-subtitle {
  color: #2299aa;
}
.cid-sorO7JRYzx {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sorO7JRYzx .item {
  padding-bottom: 2rem;
}
.cid-sorO7JRYzx .item-wrapper {
  position: relative;
}
.cid-sorO7JRYzx .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sorO7JRYzx .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sorO7JRYzx .carousel-control,
.cid-sorO7JRYzx .close {
  background: #1b1b1b;
}
.cid-sorO7JRYzx .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sorO7JRYzx .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sorO7JRYzx .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sorO7JRYzx .carousel-control-next span {
  margin-left: 5px;
}
.cid-sorO7JRYzx .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sorO7JRYzx .close::before {
  content: '\e91a';
}
.cid-sorO7JRYzx .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sorO7JRYzx .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sorO7JRYzx .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sorO7JRYzx .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sorO7JRYzx .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sorO7JRYzx .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sorO7JRYzx .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sorO7JRYzx .carousel-indicators li.active,
.cid-sorO7JRYzx .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sorO7JRYzx .carousel-indicators li::after,
.cid-sorO7JRYzx .carousel-indicators li::before {
  content: none;
}
.cid-sorO7JRYzx .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sorO7JRYzx .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sorO7JRYzx .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sorO7JRYzx .carousel-indicators {
    display: none;
  }
}
.cid-sorO7JRYzx .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sorO7JRYzx .carousel-inner > .active {
  display: block;
}
.cid-sorO7JRYzx .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sorO7JRYzx .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sorO7JRYzx .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sorO7JRYzx .carousel-control,
  .cid-sorO7JRYzx .carousel-indicators,
  .cid-sorO7JRYzx .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sorO7JRYzx .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sorO7JRYzx .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sorO7JRYzx .carousel-indicators .active,
.cid-sorO7JRYzx .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sorO7JRYzx .carousel-indicators .active {
  background: #fff;
}
.cid-sorO7JRYzx .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sorO7JRYzx .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sorO7JRYzx .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sorO7JRYzx .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sorO7JRYzx .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sorO7JRYzx .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sorO7JRYzx .carousel {
  width: 100%;
}
.cid-sorO7JRYzx .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sorO7JRYzx .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sorO7JRYzx .modal.fade .modal-dialog,
.cid-sorO7JRYzx .modal.in .modal-dialog {
  transform: none;
}
.cid-sorO7JRYzx .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sorO7JRYzx H6 {
  text-align: center;
  color: #000000;
}
.cid-sorO7JRYzx H3 {
  color: #2299aa;
}
.cid-sorO9qNpU6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sorO9qNpU6 .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-sorO9qNpU6 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-sorO9qNpU6 .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-sorO9qNpU6 .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #2299aa;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sqwpgKLDJP {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-sqwpgKLDJP .container {
    max-width: 1400px;
  }
}
.cid-sqwpgKLDJP .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #e43f3f;
  margin-bottom: 2rem;
}
.cid-sqwpgKLDJP .card-wrapper {
  margin-top: 3rem;
}
.cid-sqwpgKLDJP .row {
  justify-content: center;
}
.cid-sqwpgKLDJP .mbr-section-title {
  color: #2299aa;
}
.cid-sqwpgKLDJP .card-title,
.cid-sqwpgKLDJP .iconfont-wrapper {
  color: #2299aa;
}
.cid-sqwpgKLDJP .mbr-section-subtitle {
  color: #2299aa;
}
.cid-sp6J0XFcA8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sp6J0XFcA8 img,
.cid-sp6J0XFcA8 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sp6J0XFcA8 .item:focus,
.cid-sp6J0XFcA8 span:focus {
  outline: none;
}
.cid-sp6J0XFcA8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sp6J0XFcA8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ff9966;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sp6J0XFcA8 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sp6J0XFcA8 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sp6J0XFcA8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sp6J0XFcA8 .mbr-section-title {
  color: #2299aa;
}
.cid-sw3psXEDA2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sw3psXEDA2 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sw3psXEDA2 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sw3psXEDA2 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sw3psXEDA2 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sw3psXEDA2 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sw3psXEDA2 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sw3psXEDA2 .carousel-control,
.cid-sw3psXEDA2 .close {
  background: #1b1b1b;
}
.cid-sw3psXEDA2 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sw3psXEDA2 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sw3psXEDA2 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sw3psXEDA2 .carousel-control-next span {
  margin-left: 5px;
}
.cid-sw3psXEDA2 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sw3psXEDA2 .close::before {
  content: '\e91a';
}
.cid-sw3psXEDA2 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sw3psXEDA2 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sw3psXEDA2 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sw3psXEDA2 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sw3psXEDA2 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sw3psXEDA2 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sw3psXEDA2 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sw3psXEDA2 .carousel-indicators li.active,
.cid-sw3psXEDA2 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sw3psXEDA2 .carousel-indicators li::after,
.cid-sw3psXEDA2 .carousel-indicators li::before {
  content: none;
}
.cid-sw3psXEDA2 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sw3psXEDA2 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sw3psXEDA2 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sw3psXEDA2 .carousel-indicators {
    display: none;
  }
}
.cid-sw3psXEDA2 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sw3psXEDA2 .carousel-inner > .active {
  display: block;
}
.cid-sw3psXEDA2 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sw3psXEDA2 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sw3psXEDA2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sw3psXEDA2 .carousel-control,
  .cid-sw3psXEDA2 .carousel-indicators,
  .cid-sw3psXEDA2 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sw3psXEDA2 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sw3psXEDA2 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sw3psXEDA2 .carousel-indicators .active,
.cid-sw3psXEDA2 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sw3psXEDA2 .carousel-indicators .active {
  background: #fff;
}
.cid-sw3psXEDA2 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sw3psXEDA2 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sw3psXEDA2 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sw3psXEDA2 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sw3psXEDA2 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sw3psXEDA2 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sw3psXEDA2 .carousel {
  width: 100%;
}
.cid-sw3psXEDA2 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sw3psXEDA2 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sw3psXEDA2 .modal.fade .modal-dialog,
.cid-sw3psXEDA2 .modal.in .modal-dialog {
  transform: none;
}
.cid-sw3psXEDA2 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sw3psXEDA2 H6 {
  text-align: center;
}
.cid-sw3psXEDA2 H3 {
  color: #2299aa;
}
.cid-sw3qitHclF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sw3qitHclF .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sw3qitHclF .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sw3qitHclF .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sw3qitHclF .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sw3qitHclF .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sw3qitHclF .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sw3qitHclF .carousel-control,
.cid-sw3qitHclF .close {
  background: #1b1b1b;
}
.cid-sw3qitHclF .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sw3qitHclF .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sw3qitHclF .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sw3qitHclF .carousel-control-next span {
  margin-left: 5px;
}
.cid-sw3qitHclF .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sw3qitHclF .close::before {
  content: '\e91a';
}
.cid-sw3qitHclF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sw3qitHclF .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sw3qitHclF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sw3qitHclF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sw3qitHclF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sw3qitHclF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sw3qitHclF .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sw3qitHclF .carousel-indicators li.active,
.cid-sw3qitHclF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sw3qitHclF .carousel-indicators li::after,
.cid-sw3qitHclF .carousel-indicators li::before {
  content: none;
}
.cid-sw3qitHclF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sw3qitHclF .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sw3qitHclF .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sw3qitHclF .carousel-indicators {
    display: none;
  }
}
.cid-sw3qitHclF .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sw3qitHclF .carousel-inner > .active {
  display: block;
}
.cid-sw3qitHclF .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sw3qitHclF .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sw3qitHclF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sw3qitHclF .carousel-control,
  .cid-sw3qitHclF .carousel-indicators,
  .cid-sw3qitHclF .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sw3qitHclF .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sw3qitHclF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sw3qitHclF .carousel-indicators .active,
.cid-sw3qitHclF .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sw3qitHclF .carousel-indicators .active {
  background: #fff;
}
.cid-sw3qitHclF .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sw3qitHclF .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sw3qitHclF .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sw3qitHclF .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sw3qitHclF .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sw3qitHclF .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sw3qitHclF .carousel {
  width: 100%;
}
.cid-sw3qitHclF .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sw3qitHclF .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sw3qitHclF .modal.fade .modal-dialog,
.cid-sw3qitHclF .modal.in .modal-dialog {
  transform: none;
}
.cid-sw3qitHclF .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sw3qitHclF H6 {
  text-align: center;
}
.cid-swyaB6GE7t {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-swyaB6GE7t .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-swyaB6GE7t .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-swyaB6GE7t .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-swyaB6GE7t .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-swyaB6GE7t .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-swyaB6GE7t .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-swyaB6GE7t .carousel-control,
.cid-swyaB6GE7t .close {
  background: #1b1b1b;
}
.cid-swyaB6GE7t .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-swyaB6GE7t .carousel-control-prev span {
  margin-right: 5px;
}
.cid-swyaB6GE7t .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-swyaB6GE7t .carousel-control-next span {
  margin-left: 5px;
}
.cid-swyaB6GE7t .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-swyaB6GE7t .close::before {
  content: '\e91a';
}
.cid-swyaB6GE7t .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-swyaB6GE7t .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-swyaB6GE7t .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-swyaB6GE7t .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-swyaB6GE7t .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-swyaB6GE7t .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-swyaB6GE7t .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-swyaB6GE7t .carousel-indicators li.active,
.cid-swyaB6GE7t .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-swyaB6GE7t .carousel-indicators li::after,
.cid-swyaB6GE7t .carousel-indicators li::before {
  content: none;
}
.cid-swyaB6GE7t .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-swyaB6GE7t .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-swyaB6GE7t .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-swyaB6GE7t .carousel-indicators {
    display: none;
  }
}
.cid-swyaB6GE7t .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-swyaB6GE7t .carousel-inner > .active {
  display: block;
}
.cid-swyaB6GE7t .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-swyaB6GE7t .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-swyaB6GE7t .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-swyaB6GE7t .carousel-control,
  .cid-swyaB6GE7t .carousel-indicators,
  .cid-swyaB6GE7t .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-swyaB6GE7t .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-swyaB6GE7t .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-swyaB6GE7t .carousel-indicators .active,
.cid-swyaB6GE7t .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-swyaB6GE7t .carousel-indicators .active {
  background: #fff;
}
.cid-swyaB6GE7t .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-swyaB6GE7t .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-swyaB6GE7t .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-swyaB6GE7t .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-swyaB6GE7t .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-swyaB6GE7t .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-swyaB6GE7t .carousel {
  width: 100%;
}
.cid-swyaB6GE7t .modal-backdrop.in {
  opacity: 0.8;
}
.cid-swyaB6GE7t .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-swyaB6GE7t .modal.fade .modal-dialog,
.cid-swyaB6GE7t .modal.in .modal-dialog {
  transform: none;
}
.cid-swyaB6GE7t .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-swyaB6GE7t H6 {
  text-align: center;
}
.cid-sw4fastHxc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sw4fastHxc .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sw4fastHxc .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sw4fastHxc .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sw4fastHxc .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sw4fastHxc .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sw4fastHxc .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sw4fastHxc .carousel-control,
.cid-sw4fastHxc .close {
  background: #1b1b1b;
}
.cid-sw4fastHxc .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sw4fastHxc .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sw4fastHxc .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sw4fastHxc .carousel-control-next span {
  margin-left: 5px;
}
.cid-sw4fastHxc .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sw4fastHxc .close::before {
  content: '\e91a';
}
.cid-sw4fastHxc .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sw4fastHxc .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sw4fastHxc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sw4fastHxc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sw4fastHxc .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sw4fastHxc .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sw4fastHxc .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sw4fastHxc .carousel-indicators li.active,
.cid-sw4fastHxc .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sw4fastHxc .carousel-indicators li::after,
.cid-sw4fastHxc .carousel-indicators li::before {
  content: none;
}
.cid-sw4fastHxc .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sw4fastHxc .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sw4fastHxc .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sw4fastHxc .carousel-indicators {
    display: none;
  }
}
.cid-sw4fastHxc .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sw4fastHxc .carousel-inner > .active {
  display: block;
}
.cid-sw4fastHxc .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sw4fastHxc .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sw4fastHxc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sw4fastHxc .carousel-control,
  .cid-sw4fastHxc .carousel-indicators,
  .cid-sw4fastHxc .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sw4fastHxc .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sw4fastHxc .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sw4fastHxc .carousel-indicators .active,
.cid-sw4fastHxc .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sw4fastHxc .carousel-indicators .active {
  background: #fff;
}
.cid-sw4fastHxc .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sw4fastHxc .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sw4fastHxc .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sw4fastHxc .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sw4fastHxc .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sw4fastHxc .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sw4fastHxc .carousel {
  width: 100%;
}
.cid-sw4fastHxc .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sw4fastHxc .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sw4fastHxc .modal.fade .modal-dialog,
.cid-sw4fastHxc .modal.in .modal-dialog {
  transform: none;
}
.cid-sw4fastHxc .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sw4fastHxc H6 {
  text-align: center;
}
.cid-sw4fWVrifI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sw4fWVrifI .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sw4fWVrifI .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-sw4fWVrifI .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-sw4fWVrifI .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sw4fWVrifI .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sw4fWVrifI .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sw4fWVrifI .carousel-control,
.cid-sw4fWVrifI .close {
  background: #1b1b1b;
}
.cid-sw4fWVrifI .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sw4fWVrifI .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sw4fWVrifI .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sw4fWVrifI .carousel-control-next span {
  margin-left: 5px;
}
.cid-sw4fWVrifI .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sw4fWVrifI .close::before {
  content: '\e91a';
}
.cid-sw4fWVrifI .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sw4fWVrifI .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sw4fWVrifI .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sw4fWVrifI .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sw4fWVrifI .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sw4fWVrifI .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sw4fWVrifI .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sw4fWVrifI .carousel-indicators li.active,
.cid-sw4fWVrifI .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sw4fWVrifI .carousel-indicators li::after,
.cid-sw4fWVrifI .carousel-indicators li::before {
  content: none;
}
.cid-sw4fWVrifI .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sw4fWVrifI .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sw4fWVrifI .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sw4fWVrifI .carousel-indicators {
    display: none;
  }
}
.cid-sw4fWVrifI .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sw4fWVrifI .carousel-inner > .active {
  display: block;
}
.cid-sw4fWVrifI .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sw4fWVrifI .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sw4fWVrifI .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sw4fWVrifI .carousel-control,
  .cid-sw4fWVrifI .carousel-indicators,
  .cid-sw4fWVrifI .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sw4fWVrifI .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sw4fWVrifI .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sw4fWVrifI .carousel-indicators .active,
.cid-sw4fWVrifI .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sw4fWVrifI .carousel-indicators .active {
  background: #fff;
}
.cid-sw4fWVrifI .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sw4fWVrifI .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sw4fWVrifI .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sw4fWVrifI .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sw4fWVrifI .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sw4fWVrifI .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sw4fWVrifI .carousel {
  width: 100%;
}
.cid-sw4fWVrifI .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sw4fWVrifI .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sw4fWVrifI .modal.fade .modal-dialog,
.cid-sw4fWVrifI .modal.in .modal-dialog {
  transform: none;
}
.cid-sw4fWVrifI .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sw4fWVrifI H6 {
  text-align: center;
}
.cid-sw4gu1HxUh {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-sw4gu1HxUh .container {
    max-width: 1400px;
  }
}
.cid-sw4gu1HxUh .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #e43f3f;
  margin-bottom: 2rem;
}
.cid-sw4gu1HxUh .card-wrapper {
  margin-top: 3rem;
}
.cid-sw4gu1HxUh .row {
  justify-content: center;
}
.cid-sw4gu1HxUh .mbr-section-title {
  color: #2299aa;
}
.cid-sw4gu1HxUh .card-title,
.cid-sw4gu1HxUh .iconfont-wrapper {
  color: #2299aa;
}
.cid-sw4gu1HxUh .mbr-section-subtitle {
  color: #2299aa;
}
.cid-sp6KK1244K {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-sp6KK1244K .mbr-overlay {
  background: #fafafa;
  opacity: 0.1;
}
.cid-sp6KK1244K img,
.cid-sp6KK1244K .item-img {
  width: 100%;
}
.cid-sp6KK1244K .item:focus,
.cid-sp6KK1244K span:focus {
  outline: none;
}
.cid-sp6KK1244K .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sp6KK1244K .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sp6KK1244K .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sp6KK1244K .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sp6KK1244K .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sp6KK1244K .mbr-section-title {
  color: #2299aa;
}
.cid-sqwt5bhLAy {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-sqwt5bhLAy .container {
    max-width: 1400px;
  }
}
.cid-sqwt5bhLAy .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #e43f3f;
  margin-bottom: 2rem;
}
.cid-sqwt5bhLAy .card-wrapper {
  margin-top: 3rem;
}
.cid-sqwt5bhLAy .row {
  justify-content: center;
}
.cid-sqwt5bhLAy .mbr-section-title {
  color: #2299aa;
}
.cid-sqwt5bhLAy .card-title,
.cid-sqwt5bhLAy .iconfont-wrapper {
  color: #2299aa;
}
.cid-sqwt5bhLAy .mbr-section-subtitle {
  color: #2299aa;
}
