body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Overpass', sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-2 {
  font-family: 'Lexend', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Zilla Slab', serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Lexend', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Zilla Slab', serif;
  font-size: 0.7rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 0.875rem;
}
/* ---- 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: 2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.75rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.525rem + (2.5 - 1.525) * ((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.56rem;
    font-size: calc( 0.895rem + (0.7 - 0.895) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.895rem + (0.7 - 0.895) * ((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: #e85a4f !important;
}
.bg-success {
  background-color: #40b0bf !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: #e85a4f !important;
  border-color: #e85a4f !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: #c6261a !important;
  border-color: #c6261a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #c6261a !important;
  border-color: #c6261a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #d8c3a5 !important;
  border-color: #d8c3a5 !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: #be9b69 !important;
  border-color: #be9b69 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #be9b69 !important;
  border-color: #be9b69 !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: #40b0bf !important;
  border-color: #40b0bf !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: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !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: #e85a4f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #c6261a !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: #e85a4f !important;
  border-color: #e85a4f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d8c3a5;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #be9b69 !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: #d8c3a5 !important;
  border-color: #d8c3a5 !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: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !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: #40b0bf !important;
  border-color: #40b0bf !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: #e85a4f !important;
}
.text-secondary {
  color: #d8c3a5 !important;
}
.text-success {
  color: #40b0bf !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: #b92418 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #b9945e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #e85a4f;
}
.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: #e85a4f;
  border-color: #e85a4f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e85a4f;
}
.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: #a0d8df;
}
.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: 'Zilla Slab', 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: #e85a4f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Zilla Slab', 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: #e85a4f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e85a4f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e85a4f;
}
.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: #e85a4f;
  border-bottom-color: #e85a4f;
}
.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: #e85a4f !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: #d8c3a5 !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='%23e85a4f' %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-tExjem5KKR {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tExjem5KKR .row {
  align-items: center;
  justify-content: center;
}
.cid-tExjem5KKR .shape_left {
  width: 25%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 0;
  background-color: #ebf2e9;
}
.cid-tExjem5KKR .shape_right {
  width: 25%;
  position: absolute;
  top: 20%;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-color: #fef2f2;
}
.cid-tExjem5KKR .content_box {
  position: relative;
  z-index: 1;
}
.cid-tExjem5KKR .mbr-section-title {
  margin-bottom: 21px;
  color: #202020;
}
.cid-tExjem5KKR .mbr-text {
  margin-bottom: 21px;
}
.cid-tExjem5KKR .image-wrapper,
.cid-tExjem5KKR img {
  width: 100%;
}
.cid-tExjem5KKR .image-wrapper {
  position: relative;
  z-index: 1;
}
@media (min-width: 991px) {
  .cid-tExjem5KKR .content_box {
    padding: 0 5rem 0 1rem;
  }
  .cid-tExjem5KKR .image_left {
    padding-top: 5rem;
  }
  .cid-tExjem5KKR .image_right {
    right: -2rem;
  }
}
@media (max-width: 767px) {
  .cid-tExjem5KKR .row {
    flex-direction: column;
  }
  .cid-tExjem5KKR .shape {
    display: none;
  }
  .cid-tExjem5KKR .content_box {
    padding: 2rem 0;
  }
}
.cid-sXp4AtR2KB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-sXp4AtR2KB .mbr-text,
.cid-sXp4AtR2KB .mbr-section-btn {
  color: #232323;
}
.cid-sXp4AtR2KB .card-title,
.cid-sXp4AtR2KB .card-box {
  color: #ffffff;
}
.cid-sXp4AtR2KB .mbr-text,
.cid-sXp4AtR2KB .link-wrap {
  color: #ffffff;
}
.cid-tDGCb3S21V {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tDGCb3S21V .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDGCb3S21V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDGCb3S21V .mbr-text {
  color: #767676;
}
.cid-tDGCb3S21V .mbr-section-subtitle {
  color: #767676;
}
.cid-tDGCb3S21V .title .num {
  width: 100%;
  display: block;
}
.cid-tDGCb3S21V .title .card-title {
  z-index: 1;
}
.cid-tDGCb3S21V .num {
  color: #6592e6;
}
@media (max-width: 767px) {
  .cid-tDGCb3S21V * {
    text-align: center !important;
  }
  .cid-tDGCb3S21V .content-column {
    margin-bottom: 2rem;
  }
}
.cid-tDGFSXBCZp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tDGFSXBCZp .mbr-text,
.cid-tDGFSXBCZp .mbr-section-btn {
  color: #232323;
}
.cid-tDGFSXBCZp .card-title,
.cid-tDGFSXBCZp .card-box {
  color: #ffffff;
}
.cid-tDGFSXBCZp .mbr-text,
.cid-tDGFSXBCZp .link-wrap {
  color: #ffffff;
}
.cid-tDGGRYBhFw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDGGRYBhFw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDGGRYBhFw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDGGRYBhFw .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-tDGGRYBhFw .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tDGGRYBhFw .embla__button--next,
.cid-tDGGRYBhFw .embla__button--prev {
  display: flex;
}
.cid-tDGGRYBhFw .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-tDGGRYBhFw .embla__button {
    display: none;
  }
}
.cid-tDGGRYBhFw .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tDGGRYBhFw .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tDGGRYBhFw .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDGGRYBhFw .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tDGGRYBhFw .embla__button {
    top: auto;
  }
}
.cid-tDGGRYBhFw .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-tDGGRYBhFw .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-tDGGRYBhFw .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-tDGGRYBhFw .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tDGGRYBhFw .embla {
  position: relative;
  width: 100%;
}
.cid-tDGGRYBhFw .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tDGGRYBhFw .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tDGGRYBhFw .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tDGGRYBhFw .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tErIBNZWxL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tErIBNZWxL .col-lg-2 {
    width: 20%;
  }
}
.cid-tErIBNZWxL .item {
  border-radius: 0;
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tErIBNZWxL .item:hover img,
.cid-tErIBNZWxL .item:hover .item-img {
  border-radius: 0;
}
.cid-tErIBNZWxL img {
  border: 2px solid gray;
}
.cid-tErIBNZWxL img:hover {
  border-color: #e85a4f;
}
.cid-tErIBNZWxL img,
.cid-tErIBNZWxL .item-img {
  width: 100%;
  transition: all 0.3s;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tErIBNZWxL h5 {
  margin: 0;
}
.cid-tErIBNZWxL .item:focus,
.cid-tErIBNZWxL span:focus {
  outline: none;
}
.cid-tErIBNZWxL .item-wrapper {
  position: relative;
  border-radius: 0px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tErIBNZWxL .item-content {
  padding-top: 1rem;
}
.cid-tErIBNZWxL .mbr-section-title {
  color: #121212;
  text-align: center;
}
.cid-tErIBNZWxL .item-title {
  color: #000000;
}
.cid-tErIBNZWxL .item-subtitle {
  color: #666666;
}
.cid-tErIBNZWxL .mbr-section-subtitle {
  color: #666666;
  text-align: center;
}
.cid-tDuHYuCanS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tDuHYuCanS .mbr-text,
.cid-tDuHYuCanS .mbr-section-btn {
  color: #232323;
}
.cid-tDuHYuCanS .card-title,
.cid-tDuHYuCanS .card-box {
  color: #ffffff;
}
.cid-tDuHYuCanS .mbr-text,
.cid-tDuHYuCanS .link-wrap {
  color: #ffffff;
}
.cid-tDH9LT9pJT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDH9LT9pJT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDH9LT9pJT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDH9LT9pJT .item {
  padding-bottom: 2rem;
}
.cid-tDH9LT9pJT .item-wrapper {
  position: relative;
}
.cid-tDH9LT9pJT .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-tDH9LT9pJT .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tDH9LT9pJT .carousel-control,
.cid-tDH9LT9pJT .close {
  background: #1b1b1b;
}
.cid-tDH9LT9pJT .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tDH9LT9pJT .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tDH9LT9pJT .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tDH9LT9pJT .carousel-control-next span {
  margin-left: 5px;
}
.cid-tDH9LT9pJT .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-tDH9LT9pJT .close::before {
  content: '\e91a';
}
.cid-tDH9LT9pJT .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tDH9LT9pJT .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-tDH9LT9pJT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDH9LT9pJT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDH9LT9pJT .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDH9LT9pJT .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tDH9LT9pJT .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-tDH9LT9pJT .carousel-indicators li.active,
.cid-tDH9LT9pJT .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDH9LT9pJT .carousel-indicators li::after,
.cid-tDH9LT9pJT .carousel-indicators li::before {
  content: none;
}
.cid-tDH9LT9pJT .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDH9LT9pJT .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tDH9LT9pJT .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tDH9LT9pJT .carousel-indicators {
    display: none;
  }
}
.cid-tDH9LT9pJT .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDH9LT9pJT .carousel-inner > .active {
  display: block;
}
.cid-tDH9LT9pJT .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDH9LT9pJT .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDH9LT9pJT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tDH9LT9pJT .carousel-control,
  .cid-tDH9LT9pJT .carousel-indicators,
  .cid-tDH9LT9pJT .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tDH9LT9pJT .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tDH9LT9pJT .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tDH9LT9pJT .carousel-indicators .active,
.cid-tDH9LT9pJT .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tDH9LT9pJT .carousel-indicators .active {
  background: #fff;
}
.cid-tDH9LT9pJT .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tDH9LT9pJT .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tDH9LT9pJT .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tDH9LT9pJT .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tDH9LT9pJT .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tDH9LT9pJT .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tDH9LT9pJT .carousel {
  width: 100%;
}
.cid-tDH9LT9pJT .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tDH9LT9pJT .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tDH9LT9pJT .modal.fade .modal-dialog,
.cid-tDH9LT9pJT .modal.in .modal-dialog {
  transform: none;
}
.cid-tDH9LT9pJT .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tDH9LT9pJT H6 {
  text-align: center;
}
.cid-tErIzZohF8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tErIzZohF8 .col-lg-2 {
    width: 20%;
  }
}
.cid-tErIzZohF8 .item {
  border-radius: 0;
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tErIzZohF8 .item:hover img,
.cid-tErIzZohF8 .item:hover .item-img {
  border-radius: 0;
}
.cid-tErIzZohF8 img {
  border: 2px solid gray;
}
.cid-tErIzZohF8 img:hover {
  border-color: #e85a4f;
}
.cid-tErIzZohF8 img,
.cid-tErIzZohF8 .item-img {
  width: 100%;
  transition: all 0.3s;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tErIzZohF8 h5 {
  margin: 0;
}
.cid-tErIzZohF8 .item:focus,
.cid-tErIzZohF8 span:focus {
  outline: none;
}
.cid-tErIzZohF8 .item-wrapper {
  position: relative;
  border-radius: 0px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tErIzZohF8 .item-content {
  padding-top: 1rem;
}
.cid-tErIzZohF8 .mbr-section-title {
  color: #121212;
  text-align: center;
}
.cid-tErIzZohF8 .item-title {
  color: #000000;
}
.cid-tErIzZohF8 .item-subtitle {
  color: #666666;
}
.cid-tErIzZohF8 .mbr-section-subtitle {
  color: #666666;
}
.cid-tDvr8ojRmO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tDvr8ojRmO .mbr-text,
.cid-tDvr8ojRmO .mbr-section-btn {
  color: #232323;
}
.cid-tDvr8ojRmO .card-title,
.cid-tDvr8ojRmO .card-box {
  color: #ffffff;
}
.cid-tDvr8ojRmO .mbr-text,
.cid-tDvr8ojRmO .link-wrap {
  color: #ffffff;
}
.cid-tDGHe48gq3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDGHe48gq3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDGHe48gq3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDGHe48gq3 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-tDGHe48gq3 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tDGHe48gq3 .embla__button--next,
.cid-tDGHe48gq3 .embla__button--prev {
  display: flex;
}
.cid-tDGHe48gq3 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-tDGHe48gq3 .embla__button {
    display: none;
  }
}
.cid-tDGHe48gq3 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tDGHe48gq3 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tDGHe48gq3 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDGHe48gq3 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tDGHe48gq3 .embla__button {
    top: auto;
  }
}
.cid-tDGHe48gq3 .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-tDGHe48gq3 .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-tDGHe48gq3 .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-tDGHe48gq3 .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tDGHe48gq3 .embla {
  position: relative;
  width: 100%;
}
.cid-tDGHe48gq3 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tDGHe48gq3 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tDGHe48gq3 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tDGHe48gq3 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-sXp4DNEJ1b {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-sXp4DNEJ1b .mbr-text,
.cid-sXp4DNEJ1b .mbr-section-btn {
  color: #232323;
}
.cid-sXp4DNEJ1b .card-title,
.cid-sXp4DNEJ1b .card-box {
  color: #ffffff;
}
.cid-sXp4DNEJ1b .mbr-text,
.cid-sXp4DNEJ1b .link-wrap {
  color: #ffffff;
}
.cid-tDvrY03HVz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tDvrY03HVz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDvrY03HVz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tDvrY03HVz .text-wrapper {
    padding: 2rem;
  }
}
.cid-tDvrY03HVz .mbr-section-title {
  color: #4479d9;
}
.cid-tDvrY03HVz .mbr-text {
  color: #111111;
}
.cid-tEmhlqJujK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tEmhlqJujK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEmhlqJujK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEmhlqJujK .item {
  padding-bottom: 2rem;
}
.cid-tEmhlqJujK .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tEmhlqJujK .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tEmhlqJujK .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-tEmhlqJujK .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tEmhlqJujK .carousel-control,
.cid-tEmhlqJujK .close {
  background: #1b1b1b;
}
.cid-tEmhlqJujK .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tEmhlqJujK .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tEmhlqJujK .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tEmhlqJujK .carousel-control-next span {
  margin-left: 5px;
}
.cid-tEmhlqJujK .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-tEmhlqJujK .close::before {
  content: '\e91a';
}
.cid-tEmhlqJujK .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tEmhlqJujK .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-tEmhlqJujK .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tEmhlqJujK .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tEmhlqJujK .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tEmhlqJujK .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tEmhlqJujK .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-tEmhlqJujK .carousel-indicators li.active,
.cid-tEmhlqJujK .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tEmhlqJujK .carousel-indicators li::after,
.cid-tEmhlqJujK .carousel-indicators li::before {
  content: none;
}
.cid-tEmhlqJujK .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tEmhlqJujK .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tEmhlqJujK .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tEmhlqJujK .carousel-indicators {
    display: none;
  }
}
.cid-tEmhlqJujK .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tEmhlqJujK .carousel-inner > .active {
  display: block;
}
.cid-tEmhlqJujK .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tEmhlqJujK .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tEmhlqJujK .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tEmhlqJujK .carousel-control,
  .cid-tEmhlqJujK .carousel-indicators,
  .cid-tEmhlqJujK .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tEmhlqJujK .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tEmhlqJujK .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tEmhlqJujK .carousel-indicators .active,
.cid-tEmhlqJujK .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tEmhlqJujK .carousel-indicators .active {
  background: #fff;
}
.cid-tEmhlqJujK .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tEmhlqJujK .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tEmhlqJujK .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tEmhlqJujK .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tEmhlqJujK .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tEmhlqJujK .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tEmhlqJujK .carousel {
  width: 100%;
}
.cid-tEmhlqJujK .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tEmhlqJujK .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tEmhlqJujK .modal.fade .modal-dialog,
.cid-tEmhlqJujK .modal.in .modal-dialog {
  transform: none;
}
.cid-tEmhlqJujK .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tEmhlqJujK H6 {
  text-align: center;
}
.cid-tEmcp6DJFi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tEmcp6DJFi .mbr-text,
.cid-tEmcp6DJFi .mbr-section-btn {
  color: #232323;
}
.cid-tEmcp6DJFi .card-title,
.cid-tEmcp6DJFi .card-box {
  color: #ffffff;
}
.cid-tEmcp6DJFi .mbr-text,
.cid-tEmcp6DJFi .link-wrap {
  color: #ffffff;
}
.cid-tDvuyyD2Hy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tDvuyyD2Hy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDvuyyD2Hy img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tDvuyyD2Hy .text-wrapper {
    padding: 2rem;
  }
}
.cid-tDvuyyD2Hy .mbr-section-title {
  color: #4479d9;
}
.cid-tDvuyyD2Hy .mbr-text {
  color: #111111;
}
.cid-tEmhnPZu27 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tEmhnPZu27 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEmhnPZu27 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEmhnPZu27 .item {
  padding-bottom: 2rem;
}
.cid-tEmhnPZu27 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tEmhnPZu27 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tEmhnPZu27 .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-tEmhnPZu27 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tEmhnPZu27 .carousel-control,
.cid-tEmhnPZu27 .close {
  background: #1b1b1b;
}
.cid-tEmhnPZu27 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tEmhnPZu27 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tEmhnPZu27 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tEmhnPZu27 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tEmhnPZu27 .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-tEmhnPZu27 .close::before {
  content: '\e91a';
}
.cid-tEmhnPZu27 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tEmhnPZu27 .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-tEmhnPZu27 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tEmhnPZu27 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tEmhnPZu27 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tEmhnPZu27 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tEmhnPZu27 .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-tEmhnPZu27 .carousel-indicators li.active,
.cid-tEmhnPZu27 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tEmhnPZu27 .carousel-indicators li::after,
.cid-tEmhnPZu27 .carousel-indicators li::before {
  content: none;
}
.cid-tEmhnPZu27 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tEmhnPZu27 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tEmhnPZu27 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tEmhnPZu27 .carousel-indicators {
    display: none;
  }
}
.cid-tEmhnPZu27 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tEmhnPZu27 .carousel-inner > .active {
  display: block;
}
.cid-tEmhnPZu27 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tEmhnPZu27 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tEmhnPZu27 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tEmhnPZu27 .carousel-control,
  .cid-tEmhnPZu27 .carousel-indicators,
  .cid-tEmhnPZu27 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tEmhnPZu27 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tEmhnPZu27 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tEmhnPZu27 .carousel-indicators .active,
.cid-tEmhnPZu27 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tEmhnPZu27 .carousel-indicators .active {
  background: #fff;
}
.cid-tEmhnPZu27 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tEmhnPZu27 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tEmhnPZu27 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tEmhnPZu27 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tEmhnPZu27 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tEmhnPZu27 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tEmhnPZu27 .carousel {
  width: 100%;
}
.cid-tEmhnPZu27 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tEmhnPZu27 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tEmhnPZu27 .modal.fade .modal-dialog,
.cid-tEmhnPZu27 .modal.in .modal-dialog {
  transform: none;
}
.cid-tEmhnPZu27 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tEmhnPZu27 H6 {
  text-align: center;
}
.cid-tDvtbgSOCj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tDvtbgSOCj .mbr-text,
.cid-tDvtbgSOCj .mbr-section-btn {
  color: #232323;
}
.cid-tDvtbgSOCj .card-title,
.cid-tDvtbgSOCj .card-box {
  color: #ffffff;
}
.cid-tDvtbgSOCj .mbr-text,
.cid-tDvtbgSOCj .link-wrap {
  color: #ffffff;
}
.cid-tDvtdJAEK6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tDvtdJAEK6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDvtdJAEK6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tDvtdJAEK6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tDvtdJAEK6 .mbr-section-title {
  color: #4479d9;
}
.cid-tDvtdJAEK6 .mbr-text {
  color: #111111;
}
.cid-tEmhpuv11z {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tEmhpuv11z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEmhpuv11z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEmhpuv11z .item {
  padding-bottom: 2rem;
}
.cid-tEmhpuv11z .item-wrapper {
  position: relative;
}
.cid-tEmhpuv11z .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-tEmhpuv11z .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tEmhpuv11z .carousel-control,
.cid-tEmhpuv11z .close {
  background: #1b1b1b;
}
.cid-tEmhpuv11z .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tEmhpuv11z .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tEmhpuv11z .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tEmhpuv11z .carousel-control-next span {
  margin-left: 5px;
}
.cid-tEmhpuv11z .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-tEmhpuv11z .close::before {
  content: '\e91a';
}
.cid-tEmhpuv11z .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tEmhpuv11z .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-tEmhpuv11z .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tEmhpuv11z .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tEmhpuv11z .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tEmhpuv11z .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tEmhpuv11z .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-tEmhpuv11z .carousel-indicators li.active,
.cid-tEmhpuv11z .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tEmhpuv11z .carousel-indicators li::after,
.cid-tEmhpuv11z .carousel-indicators li::before {
  content: none;
}
.cid-tEmhpuv11z .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tEmhpuv11z .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tEmhpuv11z .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tEmhpuv11z .carousel-indicators {
    display: none;
  }
}
.cid-tEmhpuv11z .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tEmhpuv11z .carousel-inner > .active {
  display: block;
}
.cid-tEmhpuv11z .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tEmhpuv11z .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tEmhpuv11z .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tEmhpuv11z .carousel-control,
  .cid-tEmhpuv11z .carousel-indicators,
  .cid-tEmhpuv11z .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tEmhpuv11z .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tEmhpuv11z .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tEmhpuv11z .carousel-indicators .active,
.cid-tEmhpuv11z .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tEmhpuv11z .carousel-indicators .active {
  background: #fff;
}
.cid-tEmhpuv11z .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tEmhpuv11z .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tEmhpuv11z .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tEmhpuv11z .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tEmhpuv11z .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tEmhpuv11z .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tEmhpuv11z .carousel {
  width: 100%;
}
.cid-tEmhpuv11z .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tEmhpuv11z .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tEmhpuv11z .modal.fade .modal-dialog,
.cid-tEmhpuv11z .modal.in .modal-dialog {
  transform: none;
}
.cid-tEmhpuv11z .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tEmhpuv11z H6 {
  text-align: center;
}
.cid-tDvtCq3oUw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tDvtCq3oUw .mbr-text,
.cid-tDvtCq3oUw .mbr-section-btn {
  color: #232323;
}
.cid-tDvtCq3oUw .card-title,
.cid-tDvtCq3oUw .card-box {
  color: #ffffff;
}
.cid-tDvtCq3oUw .mbr-text,
.cid-tDvtCq3oUw .link-wrap {
  color: #ffffff;
}
.cid-tEmdiENcs4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tEmdiENcs4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tEmdiENcs4 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tEmdiENcs4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tEmdiENcs4 .mbr-section-title {
  color: #4479d9;
}
.cid-tEmdiENcs4 .mbr-text {
  color: #111111;
}
.cid-tEmdsLy201 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tEmdsLy201 .mbr-text,
.cid-tEmdsLy201 .mbr-section-btn {
  color: #232323;
}
.cid-tEmdsLy201 .card-title,
.cid-tEmdsLy201 .card-box {
  color: #ffffff;
}
.cid-tEmdsLy201 .mbr-text,
.cid-tEmdsLy201 .link-wrap {
  color: #ffffff;
}
.cid-tEmdkSlFtL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tEmdkSlFtL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tEmdkSlFtL img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tEmdkSlFtL .text-wrapper {
    padding: 2rem;
  }
}
.cid-tEmdkSlFtL .mbr-section-title {
  color: #4479d9;
}
.cid-tEmdkSlFtL .mbr-text {
  color: #111111;
}
.cid-tEmdwxYH1g {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tEmdwxYH1g .mbr-text,
.cid-tEmdwxYH1g .mbr-section-btn {
  color: #232323;
}
.cid-tEmdwxYH1g .card-title,
.cid-tEmdwxYH1g .card-box {
  color: #ffffff;
}
.cid-tEmdwxYH1g .mbr-text,
.cid-tEmdwxYH1g .link-wrap {
  color: #ffffff;
}
.cid-tEmdlWsJFh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tEmdlWsJFh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tEmdlWsJFh img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tEmdlWsJFh .text-wrapper {
    padding: 2rem;
  }
}
.cid-tEmdlWsJFh .mbr-section-title {
  color: #4479d9;
}
.cid-tEmdlWsJFh .mbr-text {
  color: #111111;
}
.cid-tEmdtNgLjv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tEmdtNgLjv .mbr-text,
.cid-tEmdtNgLjv .mbr-section-btn {
  color: #232323;
}
.cid-tEmdtNgLjv .card-title,
.cid-tEmdtNgLjv .card-box {
  color: #ffffff;
}
.cid-tEmdtNgLjv .mbr-text,
.cid-tEmdtNgLjv .link-wrap {
  color: #ffffff;
}
.cid-tEmdn7yQZe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tEmdn7yQZe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tEmdn7yQZe img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tEmdn7yQZe .text-wrapper {
    padding: 2rem;
  }
}
.cid-tEmdn7yQZe .mbr-section-title {
  color: #4479d9;
}
.cid-tEmdn7yQZe .mbr-text {
  color: #111111;
}
.cid-tEmduV5acc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tEmduV5acc .mbr-text,
.cid-tEmduV5acc .mbr-section-btn {
  color: #232323;
}
.cid-tEmduV5acc .card-title,
.cid-tEmduV5acc .card-box {
  color: #ffffff;
}
.cid-tEmduV5acc .mbr-text,
.cid-tEmduV5acc .link-wrap {
  color: #ffffff;
}
.cid-tEm9YcHIVP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tEm9YcHIVP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tEm9YcHIVP img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tEm9YcHIVP .text-wrapper {
    padding: 2rem;
  }
}
.cid-tEm9YcHIVP .mbr-section-title {
  color: #4479d9;
  text-align: center;
}
.cid-tEm9YcHIVP .mbr-text {
  color: #111111;
}
.cid-tDvtDc27ML {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tDvtDc27ML .mbr-text,
.cid-tDvtDc27ML .mbr-section-btn {
  color: #232323;
}
.cid-tDvtDc27ML .card-title,
.cid-tDvtDc27ML .card-box {
  color: #ffffff;
}
.cid-tDvtDc27ML .mbr-text,
.cid-tDvtDc27ML .link-wrap {
  color: #ffffff;
}
.cid-tEmezFWINa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tEmezFWINa .mbr-text,
.cid-tEmezFWINa .mbr-section-btn {
  color: #232323;
}
.cid-tEmezFWINa .card-title,
.cid-tEmezFWINa .card-box {
  color: #ffffff;
}
.cid-tEmezFWINa .mbr-text,
.cid-tEmezFWINa .link-wrap {
  color: #ffffff;
}
.cid-tDvtAIXJF5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tDvtAIXJF5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDvtAIXJF5 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tDvtAIXJF5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tDvtAIXJF5 .mbr-section-title {
  color: #4479d9;
}
.cid-tDvtAIXJF5 .mbr-text {
  color: #111111;
}
.cid-tDvtBtr5NS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDvtBtr5NS .item {
  padding-bottom: 2rem;
}
.cid-tDvtBtr5NS .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tDvtBtr5NS .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tDvtBtr5NS .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-tDvtBtr5NS .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tDvtBtr5NS .carousel-control,
.cid-tDvtBtr5NS .close {
  background: #1b1b1b;
}
.cid-tDvtBtr5NS .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tDvtBtr5NS .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tDvtBtr5NS .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tDvtBtr5NS .carousel-control-next span {
  margin-left: 5px;
}
.cid-tDvtBtr5NS .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-tDvtBtr5NS .close::before {
  content: '\e91a';
}
.cid-tDvtBtr5NS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tDvtBtr5NS .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-tDvtBtr5NS .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDvtBtr5NS .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDvtBtr5NS .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDvtBtr5NS .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tDvtBtr5NS .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-tDvtBtr5NS .carousel-indicators li.active,
.cid-tDvtBtr5NS .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDvtBtr5NS .carousel-indicators li::after,
.cid-tDvtBtr5NS .carousel-indicators li::before {
  content: none;
}
.cid-tDvtBtr5NS .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDvtBtr5NS .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tDvtBtr5NS .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tDvtBtr5NS .carousel-indicators {
    display: none;
  }
}
.cid-tDvtBtr5NS .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDvtBtr5NS .carousel-inner > .active {
  display: block;
}
.cid-tDvtBtr5NS .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDvtBtr5NS .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDvtBtr5NS .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tDvtBtr5NS .carousel-control,
  .cid-tDvtBtr5NS .carousel-indicators,
  .cid-tDvtBtr5NS .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tDvtBtr5NS .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tDvtBtr5NS .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tDvtBtr5NS .carousel-indicators .active,
.cid-tDvtBtr5NS .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tDvtBtr5NS .carousel-indicators .active {
  background: #fff;
}
.cid-tDvtBtr5NS .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tDvtBtr5NS .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tDvtBtr5NS .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tDvtBtr5NS .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tDvtBtr5NS .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tDvtBtr5NS .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tDvtBtr5NS .carousel {
  width: 100%;
}
.cid-tDvtBtr5NS .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tDvtBtr5NS .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tDvtBtr5NS .modal.fade .modal-dialog,
.cid-tDvtBtr5NS .modal.in .modal-dialog {
  transform: none;
}
.cid-tDvtBtr5NS .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tDvtBtr5NS H6 {
  text-align: center;
}
.cid-tEmeQwupwQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tEmeQwupwQ .mbr-text,
.cid-tEmeQwupwQ .mbr-section-btn {
  color: #232323;
}
.cid-tEmeQwupwQ .card-title,
.cid-tEmeQwupwQ .card-box {
  color: #ffffff;
}
.cid-tEmeQwupwQ .mbr-text,
.cid-tEmeQwupwQ .link-wrap {
  color: #ffffff;
}
.cid-tEmexgNGIs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tEmexgNGIs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tEmexgNGIs img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tEmexgNGIs .text-wrapper {
    padding: 2rem;
  }
}
.cid-tEmexgNGIs .mbr-section-title {
  color: #111111;
  text-align: center;
}
.cid-tEmexgNGIs .mbr-text {
  color: #111111;
}
.cid-tErP0tFMp1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tErP0tFMp1 .col-lg-2 {
    width: 20%;
  }
}
.cid-tErP0tFMp1 .item {
  border-radius: 0;
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tErP0tFMp1 .item:hover img,
.cid-tErP0tFMp1 .item:hover .item-img {
  border-radius: 0;
}
.cid-tErP0tFMp1 img {
  border: 2px solid gray;
}
.cid-tErP0tFMp1 img:hover {
  border-color: #e85a4f;
}
.cid-tErP0tFMp1 img,
.cid-tErP0tFMp1 .item-img {
  width: 100%;
  transition: all 0.3s;
  height: 100%;
  object-fit: cover;
}
.cid-tErP0tFMp1 h5 {
  margin: 0;
}
.cid-tErP0tFMp1 .item:focus,
.cid-tErP0tFMp1 span:focus {
  outline: none;
}
.cid-tErP0tFMp1 .item-wrapper {
  position: relative;
  border-radius: 0px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tErP0tFMp1 .item-content {
  padding-top: 1rem;
}
.cid-tErP0tFMp1 .mbr-section-title {
  color: #121212;
  text-align: center;
}
.cid-tErP0tFMp1 .item-title {
  color: #000000;
}
.cid-tErP0tFMp1 .item-subtitle {
  color: #666666;
}
.cid-tErP0tFMp1 .mbr-section-subtitle {
  color: #666666;
}
.cid-tEmaie6H02 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tEmaie6H02 .mbr-text,
.cid-tEmaie6H02 .mbr-section-btn {
  color: #232323;
}
.cid-tEmaie6H02 .card-title,
.cid-tEmaie6H02 .card-box {
  color: #ffffff;
}
.cid-tEmaie6H02 .mbr-text,
.cid-tEmaie6H02 .link-wrap {
  color: #ffffff;
}
.cid-tDvtEi5tlf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tDvtEi5tlf .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDvtEi5tlf img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tDvtEi5tlf .text-wrapper {
    padding: 2rem;
  }
}
.cid-tDvtEi5tlf .mbr-section-title {
  color: #4479d9;
}
.cid-tDvtEi5tlf .mbr-text {
  color: #111111;
}
.cid-tErPl8X6I6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tErPl8X6I6 .col-lg-2 {
    width: 20%;
  }
}
.cid-tErPl8X6I6 .item {
  border-radius: 0;
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tErPl8X6I6 .item:hover img,
.cid-tErPl8X6I6 .item:hover .item-img {
  border-radius: 0;
}
.cid-tErPl8X6I6 img {
  border: 2px solid gray;
}
.cid-tErPl8X6I6 img:hover {
  border-color: #e85a4f;
}
.cid-tErPl8X6I6 img,
.cid-tErPl8X6I6 .item-img {
  width: 100%;
  transition: all 0.3s;
  height: 100%;
  object-fit: cover;
}
.cid-tErPl8X6I6 h5 {
  margin: 0;
}
.cid-tErPl8X6I6 .item:focus,
.cid-tErPl8X6I6 span:focus {
  outline: none;
}
.cid-tErPl8X6I6 .item-wrapper {
  position: relative;
  border-radius: 0px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tErPl8X6I6 .item-content {
  padding-top: 1rem;
}
.cid-tErPl8X6I6 .mbr-section-title {
  color: #121212;
  text-align: center;
}
.cid-tErPl8X6I6 .item-title {
  color: #000000;
}
.cid-tErPl8X6I6 .item-subtitle {
  color: #666666;
}
.cid-tErPl8X6I6 .mbr-section-subtitle {
  color: #666666;
}
.cid-tDvtGUygW6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tDvtGUygW6 .mbr-text,
.cid-tDvtGUygW6 .mbr-section-btn {
  color: #232323;
}
.cid-tDvtGUygW6 .card-title,
.cid-tDvtGUygW6 .card-box {
  color: #ffffff;
}
.cid-tDvtGUygW6 .mbr-text,
.cid-tDvtGUygW6 .link-wrap {
  color: #ffffff;
}
.cid-tEmelRD9um {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tEmelRD9um .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tEmelRD9um img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tEmelRD9um .text-wrapper {
    padding: 2rem;
  }
}
.cid-tEmelRD9um .mbr-section-title {
  color: #111111;
  text-align: center;
}
.cid-tEmelRD9um .mbr-text {
  color: #111111;
}
.cid-tErNy2PWej {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tErNy2PWej .col-lg-2 {
    width: 20%;
  }
}
.cid-tErNy2PWej .item {
  border-radius: 0;
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tErNy2PWej .item:hover img,
.cid-tErNy2PWej .item:hover .item-img {
  border-radius: 0;
}
.cid-tErNy2PWej img {
  border: 2px solid gray;
}
.cid-tErNy2PWej img:hover {
  border-color: #e85a4f;
}
.cid-tErNy2PWej img,
.cid-tErNy2PWej .item-img {
  width: 100%;
  transition: all 0.3s;
  height: 100%;
  object-fit: cover;
}
.cid-tErNy2PWej h5 {
  margin: 0;
}
.cid-tErNy2PWej .item:focus,
.cid-tErNy2PWej span:focus {
  outline: none;
}
.cid-tErNy2PWej .item-wrapper {
  position: relative;
  border-radius: 0px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tErNy2PWej .item-content {
  padding-top: 1rem;
}
.cid-tErNy2PWej .mbr-section-title {
  color: #121212;
  text-align: center;
}
.cid-tErNy2PWej .item-title {
  color: #000000;
}
.cid-tErNy2PWej .item-subtitle {
  color: #666666;
}
.cid-tErNy2PWej .mbr-section-subtitle {
  color: #666666;
}
.cid-tEmepMqd6X {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tEmepMqd6X .mbr-text,
.cid-tEmepMqd6X .mbr-section-btn {
  color: #232323;
}
.cid-tEmepMqd6X .card-title,
.cid-tEmepMqd6X .card-box {
  color: #ffffff;
}
.cid-tEmepMqd6X .mbr-text,
.cid-tEmepMqd6X .link-wrap {
  color: #ffffff;
}
.cid-tDvvRFus4u {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tDvvRFus4u .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDvvRFus4u img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tDvvRFus4u .text-wrapper {
    padding: 2rem;
  }
}
.cid-tDvvRFus4u .mbr-section-title {
  color: #4479d9;
}
.cid-tDvvRFus4u .mbr-text {
  color: #111111;
}
.cid-tDvvSvyVdT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDvvSvyVdT .item {
  padding-bottom: 2rem;
}
.cid-tDvvSvyVdT .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tDvvSvyVdT .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tDvvSvyVdT .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-tDvvSvyVdT .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tDvvSvyVdT .carousel-control,
.cid-tDvvSvyVdT .close {
  background: #1b1b1b;
}
.cid-tDvvSvyVdT .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tDvvSvyVdT .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tDvvSvyVdT .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tDvvSvyVdT .carousel-control-next span {
  margin-left: 5px;
}
.cid-tDvvSvyVdT .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-tDvvSvyVdT .close::before {
  content: '\e91a';
}
.cid-tDvvSvyVdT .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tDvvSvyVdT .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-tDvvSvyVdT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDvvSvyVdT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tDvvSvyVdT .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tDvvSvyVdT .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tDvvSvyVdT .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-tDvvSvyVdT .carousel-indicators li.active,
.cid-tDvvSvyVdT .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tDvvSvyVdT .carousel-indicators li::after,
.cid-tDvvSvyVdT .carousel-indicators li::before {
  content: none;
}
.cid-tDvvSvyVdT .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tDvvSvyVdT .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tDvvSvyVdT .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tDvvSvyVdT .carousel-indicators {
    display: none;
  }
}
.cid-tDvvSvyVdT .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tDvvSvyVdT .carousel-inner > .active {
  display: block;
}
.cid-tDvvSvyVdT .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tDvvSvyVdT .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tDvvSvyVdT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tDvvSvyVdT .carousel-control,
  .cid-tDvvSvyVdT .carousel-indicators,
  .cid-tDvvSvyVdT .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tDvvSvyVdT .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tDvvSvyVdT .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tDvvSvyVdT .carousel-indicators .active,
.cid-tDvvSvyVdT .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tDvvSvyVdT .carousel-indicators .active {
  background: #fff;
}
.cid-tDvvSvyVdT .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tDvvSvyVdT .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tDvvSvyVdT .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tDvvSvyVdT .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tDvvSvyVdT .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tDvvSvyVdT .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tDvvSvyVdT .carousel {
  width: 100%;
}
.cid-tDvvSvyVdT .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tDvvSvyVdT .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tDvvSvyVdT .modal.fade .modal-dialog,
.cid-tDvvSvyVdT .modal.in .modal-dialog {
  transform: none;
}
.cid-tDvvSvyVdT .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tDvvSvyVdT H6 {
  text-align: center;
}
.cid-tEmdD13Wti {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tEmdD13Wti .mbr-text,
.cid-tEmdD13Wti .mbr-section-btn {
  color: #232323;
}
.cid-tEmdD13Wti .card-title,
.cid-tEmdD13Wti .card-box {
  color: #ffffff;
}
.cid-tEmdD13Wti .mbr-text,
.cid-tEmdD13Wti .link-wrap {
  color: #ffffff;
}
.cid-tDGRtUgZKm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tDGRtUgZKm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDGRtUgZKm img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tDGRtUgZKm .text-wrapper {
    padding: 2rem;
  }
}
.cid-tDGRtUgZKm .mbr-section-title {
  color: #4479d9;
}
.cid-tDGRtUgZKm .mbr-text {
  color: #111111;
}
.cid-tEmdLsAEWs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tEmdLsAEWs .mbr-text,
.cid-tEmdLsAEWs .mbr-section-btn {
  color: #232323;
}
.cid-tEmdLsAEWs .card-title,
.cid-tEmdLsAEWs .card-box {
  color: #ffffff;
}
.cid-tEmdLsAEWs .mbr-text,
.cid-tEmdLsAEWs .link-wrap {
  color: #ffffff;
}
.cid-tDvEEtVpjA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tDvEEtVpjA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDvEEtVpjA img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tDvEEtVpjA .text-wrapper {
    padding: 2rem;
  }
}
.cid-tDvEEtVpjA .mbr-section-title {
  color: #4479d9;
}
.cid-tDvEEtVpjA .mbr-text {
  color: #111111;
}
.cid-tEmdHreeTJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tEmdHreeTJ .mbr-text,
.cid-tEmdHreeTJ .mbr-section-btn {
  color: #232323;
}
.cid-tEmdHreeTJ .card-title,
.cid-tEmdHreeTJ .card-box {
  color: #ffffff;
}
.cid-tEmdHreeTJ .mbr-text,
.cid-tEmdHreeTJ .link-wrap {
  color: #ffffff;
}
.cid-tDGRXa4wpS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tDGRXa4wpS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDGRXa4wpS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tDGRXa4wpS .text-wrapper {
    padding: 2rem;
  }
}
.cid-tDGRXa4wpS .mbr-section-title {
  color: #4479d9;
}
.cid-tDGRXa4wpS .mbr-text {
  color: #111111;
}
.cid-tEmfxpho7r {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tEmfxpho7r .mbr-text,
.cid-tEmfxpho7r .mbr-section-btn {
  color: #232323;
}
.cid-tEmfxpho7r .card-title,
.cid-tEmfxpho7r .card-box {
  color: #ffffff;
}
.cid-tEmfxpho7r .mbr-text,
.cid-tEmfxpho7r .link-wrap {
  color: #ffffff;
}
.cid-tErCLSwYYQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tErCLSwYYQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tErCLSwYYQ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tErCLSwYYQ .text-wrapper {
    padding: 2rem;
  }
}
.cid-tErCLSwYYQ .mbr-section-title {
  color: #111111;
  text-align: center;
}
.cid-tErCLSwYYQ .mbr-text {
  color: #111111;
}
.cid-tErO0rk3bi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tErO0rk3bi .col-lg-2 {
    width: 20%;
  }
}
.cid-tErO0rk3bi .item {
  border-radius: 0;
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tErO0rk3bi .item:hover img,
.cid-tErO0rk3bi .item:hover .item-img {
  border-radius: 0;
}
.cid-tErO0rk3bi img {
  border: 2px solid gray;
}
.cid-tErO0rk3bi img:hover {
  border-color: #e85a4f;
}
.cid-tErO0rk3bi img,
.cid-tErO0rk3bi .item-img {
  width: 100%;
  transition: all 0.3s;
  height: 100%;
  object-fit: cover;
}
.cid-tErO0rk3bi h5 {
  margin: 0;
}
.cid-tErO0rk3bi .item:focus,
.cid-tErO0rk3bi span:focus {
  outline: none;
}
.cid-tErO0rk3bi .item-wrapper {
  position: relative;
  border-radius: 0px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tErO0rk3bi .item-content {
  padding-top: 1rem;
}
.cid-tErO0rk3bi .mbr-section-title {
  color: #121212;
  text-align: center;
}
.cid-tErO0rk3bi .item-title {
  color: #000000;
}
.cid-tErO0rk3bi .item-subtitle {
  color: #666666;
}
.cid-tErO0rk3bi .mbr-section-subtitle {
  color: #666666;
}
.cid-tErCP1FG9v {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tErCP1FG9v .mbr-text,
.cid-tErCP1FG9v .mbr-section-btn {
  color: #232323;
}
.cid-tErCP1FG9v .card-title,
.cid-tErCP1FG9v .card-box {
  color: #ffffff;
}
.cid-tErCP1FG9v .mbr-text,
.cid-tErCP1FG9v .link-wrap {
  color: #ffffff;
}
.cid-tGvUd0JSmM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tGvUd0JSmM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tGvUd0JSmM img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tGvUd0JSmM .text-wrapper {
    padding: 2rem;
  }
}
.cid-tGvUd0JSmM .mbr-section-title {
  color: #4479d9;
}
.cid-tGvUd0JSmM .mbr-text {
  color: #111111;
}
.cid-tGvUfCkC84 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tGvUfCkC84 .item {
  padding-bottom: 2rem;
}
.cid-tGvUfCkC84 .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tGvUfCkC84 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tGvUfCkC84 .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-tGvUfCkC84 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tGvUfCkC84 .carousel-control,
.cid-tGvUfCkC84 .close {
  background: #1b1b1b;
}
.cid-tGvUfCkC84 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tGvUfCkC84 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tGvUfCkC84 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tGvUfCkC84 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tGvUfCkC84 .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-tGvUfCkC84 .close::before {
  content: '\e91a';
}
.cid-tGvUfCkC84 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tGvUfCkC84 .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-tGvUfCkC84 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGvUfCkC84 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tGvUfCkC84 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tGvUfCkC84 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tGvUfCkC84 .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-tGvUfCkC84 .carousel-indicators li.active,
.cid-tGvUfCkC84 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tGvUfCkC84 .carousel-indicators li::after,
.cid-tGvUfCkC84 .carousel-indicators li::before {
  content: none;
}
.cid-tGvUfCkC84 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tGvUfCkC84 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tGvUfCkC84 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tGvUfCkC84 .carousel-indicators {
    display: none;
  }
}
.cid-tGvUfCkC84 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tGvUfCkC84 .carousel-inner > .active {
  display: block;
}
.cid-tGvUfCkC84 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGvUfCkC84 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tGvUfCkC84 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tGvUfCkC84 .carousel-control,
  .cid-tGvUfCkC84 .carousel-indicators,
  .cid-tGvUfCkC84 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tGvUfCkC84 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tGvUfCkC84 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tGvUfCkC84 .carousel-indicators .active,
.cid-tGvUfCkC84 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tGvUfCkC84 .carousel-indicators .active {
  background: #fff;
}
.cid-tGvUfCkC84 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tGvUfCkC84 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tGvUfCkC84 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tGvUfCkC84 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tGvUfCkC84 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tGvUfCkC84 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tGvUfCkC84 .carousel {
  width: 100%;
}
.cid-tGvUfCkC84 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tGvUfCkC84 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tGvUfCkC84 .modal.fade .modal-dialog,
.cid-tGvUfCkC84 .modal.in .modal-dialog {
  transform: none;
}
.cid-tGvUfCkC84 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tGvUfCkC84 H6 {
  text-align: center;
}
.cid-tGvUhRqhvP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tGvUhRqhvP .mbr-text,
.cid-tGvUhRqhvP .mbr-section-btn {
  color: #232323;
}
.cid-tGvUhRqhvP .card-title,
.cid-tGvUhRqhvP .card-box {
  color: #ffffff;
}
.cid-tGvUhRqhvP .mbr-text,
.cid-tGvUhRqhvP .link-wrap {
  color: #ffffff;
}
.cid-tErARFtsmS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tErARFtsmS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tErARFtsmS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tErARFtsmS .text-wrapper {
    padding: 2rem;
  }
}
.cid-tErARFtsmS .mbr-section-title {
  color: #4479d9;
}
.cid-tErARFtsmS .mbr-text {
  color: #111111;
}
.cid-tErATQHlIN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tErATQHlIN .mbr-text,
.cid-tErATQHlIN .mbr-section-btn {
  color: #232323;
}
.cid-tErATQHlIN .card-title,
.cid-tErATQHlIN .card-box {
  color: #ffffff;
}
.cid-tErATQHlIN .mbr-text,
.cid-tErATQHlIN .link-wrap {
  color: #ffffff;
}
.cid-tEe6jqb71g {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tEe6jqb71g .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tEe6jqb71g img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tEe6jqb71g .text-wrapper {
    padding: 2rem;
  }
}
.cid-tEe6jqb71g .mbr-section-title {
  color: #111111;
  text-align: center;
}
.cid-tEe6jqb71g .mbr-text {
  color: #111111;
}
.cid-tErPNFxssR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tErPNFxssR .col-lg-2 {
    width: 20%;
  }
}
.cid-tErPNFxssR .item {
  border-radius: 0;
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tErPNFxssR .item:hover img,
.cid-tErPNFxssR .item:hover .item-img {
  border-radius: 0;
}
.cid-tErPNFxssR img {
  border: 2px solid gray;
}
.cid-tErPNFxssR img:hover {
  border-color: #e85a4f;
}
.cid-tErPNFxssR img,
.cid-tErPNFxssR .item-img {
  width: 100%;
  transition: all 0.3s;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tErPNFxssR h5 {
  margin: 0;
}
.cid-tErPNFxssR .item:focus,
.cid-tErPNFxssR span:focus {
  outline: none;
}
.cid-tErPNFxssR .item-wrapper {
  position: relative;
  border-radius: 0px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tErPNFxssR .item-content {
  padding-top: 1rem;
}
.cid-tErPNFxssR .mbr-section-title {
  color: #121212;
  text-align: center;
}
.cid-tErPNFxssR .item-title {
  color: #000000;
}
.cid-tErPNFxssR .item-subtitle {
  color: #666666;
}
.cid-tErPNFxssR .mbr-section-subtitle {
  color: #666666;
}
.cid-tEe4jvneFg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tEe4jvneFg .mbr-text,
.cid-tEe4jvneFg .mbr-section-btn {
  color: #232323;
}
.cid-tEe4jvneFg .card-title,
.cid-tEe4jvneFg .card-box {
  color: #ffffff;
}
.cid-tEe4jvneFg .mbr-text,
.cid-tEe4jvneFg .link-wrap {
  color: #ffffff;
}
.cid-tEe3gVVsZQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tEe3gVVsZQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEe3gVVsZQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEe3gVVsZQ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-tEe3gVVsZQ .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tEe3gVVsZQ .embla__button--next,
.cid-tEe3gVVsZQ .embla__button--prev {
  display: flex;
}
.cid-tEe3gVVsZQ .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-tEe3gVVsZQ .embla__button {
    display: none;
  }
}
.cid-tEe3gVVsZQ .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tEe3gVVsZQ .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tEe3gVVsZQ .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tEe3gVVsZQ .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tEe3gVVsZQ .embla__button {
    top: auto;
  }
}
.cid-tEe3gVVsZQ .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-tEe3gVVsZQ .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-tEe3gVVsZQ .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-tEe3gVVsZQ .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tEe3gVVsZQ .embla {
  position: relative;
  width: 100%;
}
.cid-tEe3gVVsZQ .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tEe3gVVsZQ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tEe3gVVsZQ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tEe3gVVsZQ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tEe3mfXZeq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tEe3mfXZeq .mbr-text,
.cid-tEe3mfXZeq .mbr-section-btn {
  color: #232323;
}
.cid-tEe3mfXZeq .card-title,
.cid-tEe3mfXZeq .card-box {
  color: #ffffff;
}
.cid-tEe3mfXZeq .mbr-text,
.cid-tEe3mfXZeq .link-wrap {
  color: #ffffff;
}
.cid-tDN4SjYx9g {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tDN4SjYx9g .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDN4SjYx9g img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tDN4SjYx9g .text-wrapper {
    padding: 2rem;
  }
}
.cid-tDN4SjYx9g .mbr-section-title {
  color: #111111;
}
.cid-tDN4SjYx9g .mbr-text {
  color: #111111;
}
.cid-tDN5UR3BxQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tDN5UR3BxQ .mbr-text,
.cid-tDN5UR3BxQ .mbr-section-btn {
  color: #232323;
}
.cid-tDN5UR3BxQ .card-title,
.cid-tDN5UR3BxQ .card-box {
  color: #ffffff;
}
.cid-tDN5UR3BxQ .mbr-text,
.cid-tDN5UR3BxQ .link-wrap {
  color: #ffffff;
}
.cid-tE8U2weP14 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tE8U2weP14 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tE8U2weP14 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tE8U2weP14 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tE8U2weP14 .mbr-section-title {
  color: #111111;
}
.cid-tE8U2weP14 .mbr-text {
  color: #111111;
}
.cid-tDN5VBKFs3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tDN5VBKFs3 .mbr-text,
.cid-tDN5VBKFs3 .mbr-section-btn {
  color: #232323;
}
.cid-tDN5VBKFs3 .card-title,
.cid-tDN5VBKFs3 .card-box {
  color: #ffffff;
}
.cid-tDN5VBKFs3 .mbr-text,
.cid-tDN5VBKFs3 .link-wrap {
  color: #ffffff;
}
.cid-tE8U3SKaDk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tE8U3SKaDk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tE8U3SKaDk img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tE8U3SKaDk .text-wrapper {
    padding: 2rem;
  }
}
.cid-tE8U3SKaDk .mbr-section-title {
  color: #111111;
}
.cid-tE8U3SKaDk .mbr-text {
  color: #111111;
}
.cid-tDN5WfXAou {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tDN5WfXAou .mbr-text,
.cid-tDN5WfXAou .mbr-section-btn {
  color: #232323;
}
.cid-tDN5WfXAou .card-title,
.cid-tDN5WfXAou .card-box {
  color: #ffffff;
}
.cid-tDN5WfXAou .mbr-text,
.cid-tDN5WfXAou .link-wrap {
  color: #ffffff;
}
.cid-tEe5KCcrth {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tEe5KCcrth .mbr-text,
.cid-tEe5KCcrth .mbr-section-btn {
  color: #232323;
}
.cid-tEe5KCcrth .card-title,
.cid-tEe5KCcrth .card-box {
  color: #ffffff;
}
.cid-tEe5KCcrth .mbr-text,
.cid-tEe5KCcrth .link-wrap {
  color: #ffffff;
}
.cid-tE8VovxfzA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tE8VovxfzA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tE8VovxfzA img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tE8VovxfzA .text-wrapper {
    padding: 2rem;
  }
}
.cid-tE8VovxfzA .mbr-section-title {
  color: #111111;
}
.cid-tE8VovxfzA .mbr-text {
  color: #111111;
}
.cid-tE8W8D7agu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tE8W8D7agu .mbr-text,
.cid-tE8W8D7agu .mbr-section-btn {
  color: #232323;
}
.cid-tE8W8D7agu .card-title,
.cid-tE8W8D7agu .card-box {
  color: #ffffff;
}
.cid-tE8W8D7agu .mbr-text,
.cid-tE8W8D7agu .link-wrap {
  color: #ffffff;
}
.cid-tErK1mzJqc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tErK1mzJqc .col-lg-2 {
    width: 20%;
  }
}
.cid-tErK1mzJqc .item {
  border-radius: 0;
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tErK1mzJqc .item:hover img,
.cid-tErK1mzJqc .item:hover .item-img {
  border-radius: 0;
}
.cid-tErK1mzJqc img {
  border: 2px solid gray;
}
.cid-tErK1mzJqc img:hover {
  border-color: #e85a4f;
}
.cid-tErK1mzJqc img,
.cid-tErK1mzJqc .item-img {
  width: 100%;
  transition: all 0.3s;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tErK1mzJqc h5 {
  margin: 0;
}
.cid-tErK1mzJqc .item:focus,
.cid-tErK1mzJqc span:focus {
  outline: none;
}
.cid-tErK1mzJqc .item-wrapper {
  position: relative;
  border-radius: 0px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tErK1mzJqc .item-content {
  padding-top: 1rem;
}
.cid-tErK1mzJqc .mbr-section-title {
  color: #121212;
  text-align: center;
}
.cid-tErK1mzJqc .item-title {
  color: #000000;
}
.cid-tErK1mzJqc .item-subtitle {
  color: #666666;
}
.cid-tErK1mzJqc .mbr-section-subtitle {
  color: #666666;
}
.cid-tEmdFtpHvY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tEmdFtpHvY .mbr-text,
.cid-tEmdFtpHvY .mbr-section-btn {
  color: #232323;
}
.cid-tEmdFtpHvY .card-title,
.cid-tEmdFtpHvY .card-box {
  color: #ffffff;
}
.cid-tEmdFtpHvY .mbr-text,
.cid-tEmdFtpHvY .link-wrap {
  color: #ffffff;
}
.cid-tExHFJBYwT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tExHFJBYwT .col-lg-2 {
    width: 20%;
  }
}
.cid-tExHFJBYwT .item {
  border-radius: 0;
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tExHFJBYwT .item:hover img,
.cid-tExHFJBYwT .item:hover .item-img {
  border-radius: 0;
}
.cid-tExHFJBYwT img {
  border: 2px solid gray;
}
.cid-tExHFJBYwT img:hover {
  border-color: #e85a4f;
}
.cid-tExHFJBYwT img,
.cid-tExHFJBYwT .item-img {
  width: 100%;
  transition: all 0.3s;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tExHFJBYwT h5 {
  margin: 0;
}
.cid-tExHFJBYwT .item:focus,
.cid-tExHFJBYwT span:focus {
  outline: none;
}
.cid-tExHFJBYwT .item-wrapper {
  position: relative;
  border-radius: 0px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tExHFJBYwT .item-content {
  padding-top: 1rem;
}
.cid-tExHFJBYwT .mbr-section-title {
  color: #121212;
}
.cid-tExHFJBYwT .item-title {
  color: #000000;
}
.cid-tExHFJBYwT .item-subtitle {
  color: #666666;
}
.cid-tExHFJBYwT .mbr-section-subtitle {
  color: #666666;
}
.cid-tExHFJBYwT .mbr-section-title DIV {
  text-align: center;
}
.cid-tExHHIToFE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tExHHIToFE .mbr-text,
.cid-tExHHIToFE .mbr-section-btn {
  color: #232323;
}
.cid-tExHHIToFE .card-title,
.cid-tExHHIToFE .card-box {
  color: #ffffff;
}
.cid-tExHHIToFE .mbr-text,
.cid-tExHHIToFE .link-wrap {
  color: #ffffff;
}
.cid-sXp7iyVCTs {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sXp7iyVCTs .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-sXp7iyVCTs .container {
    max-width: 1400px;
  }
}
.cid-sXp7iyVCTs .card {
  margin: auto;
}
.cid-sXp7iyVCTs .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0095ff;
  margin-bottom: 2rem;
}
.cid-sXp7iyVCTs .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sXp7iyVCTs .row {
  justify-content: center;
}
.cid-sXp7iyVCTs .card-title,
.cid-sXp7iyVCTs .card-box {
  text-align: center;
}
.cid-sXp7iyVCTs H2 {
  color: #4479d9;
}
.cid-tEmdpirQMK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tEmdpirQMK .mbr-text,
.cid-tEmdpirQMK .mbr-section-btn {
  color: #232323;
}
.cid-tEmdpirQMK .card-title,
.cid-tEmdpirQMK .card-box {
  color: #ffffff;
}
.cid-tEmdpirQMK .mbr-text,
.cid-tEmdpirQMK .link-wrap {
  color: #ffffff;
}
