.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'PAPYRUS';
  font-size: 3rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'PAPYRUS';
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'calibri';
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'calibri';
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'calibri';
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #7f2200 !important;
}
.bg-success {
  background-color: #353535 !important;
}
.bg-info {
  background-color: #bbbbbb !important;
}
.bg-warning {
  background-color: #fafafa !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #7f2200 !important;
  border-color: #7f2200 !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: #280b00 !important;
  border-color: #280b00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #280b00 !important;
  border-color: #280b00 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #7f2200 !important;
  border-color: #7f2200 !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: #280b00 !important;
  border-color: #280b00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #280b00 !important;
  border-color: #280b00 !important;
}
.btn-info,
.btn-info:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !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: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
}
.btn-success,
.btn-success:active {
  background-color: #353535 !important;
  border-color: #353535 !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: #0a0a0a !important;
  border-color: #0a0a0a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-warning,
.btn-warning: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-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.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-warning.disabled,
.btn-warning:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !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: #7f2200;
  color: #7f2200;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #280b00 !important;
  background-color: transparent!important;
  border-color: #280b00 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #7f2200 !important;
  border-color: #7f2200 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #7f2200;
  color: #7f2200;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #280b00 !important;
  background-color: transparent!important;
  border-color: #280b00 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #7f2200 !important;
  border-color: #7f2200 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #bbbbbb;
  color: #bbbbbb;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #909090 !important;
  background-color: transparent!important;
  border-color: #909090 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #353535;
  color: #353535;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0a0a0a !important;
  background-color: transparent!important;
  border-color: #0a0a0a !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #353535 !important;
  border-color: #353535 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #7f2200 !important;
}
.text-secondary {
  color: #7f2200 !important;
}
.text-success {
  color: #353535 !important;
}
.text-info {
  color: #bbbbbb !important;
}
.text-warning {
  color: #fafafa !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #190700 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #190700 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #020202 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #888888 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #c7c7c7 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #cccccc !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: #7f2200;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #bbbbbb;
}
.alert-warning {
  background-color: #fafafa;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #7f2200;
  border-color: #7f2200;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #7f2200;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ff4400;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a8a8a8;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fbfbfb;
}
.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 a {
  border-radius: 100px;
}
.form-control {
  font-family: 'calibri';
  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: #7f2200 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'calibri';
  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: #7f2200;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #7f2200;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #7f2200;
}
.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: #7f2200;
  border-bottom-color: #7f2200;
}
.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: #7f2200 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #7f2200 !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='%237f2200' %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-tmO4oXHpAZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tmO4oXHpAZ nav.navbar {
  position: fixed;
}
.cid-tmO4oXHpAZ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmO4oXHpAZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tmO4oXHpAZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tmO4oXHpAZ .dropdown-item:hover,
.cid-tmO4oXHpAZ .dropdown-item:focus {
  background: #7f2200 !important;
  color: white !important;
}
.cid-tmO4oXHpAZ .dropdown-item:hover span {
  color: white;
}
.cid-tmO4oXHpAZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tmO4oXHpAZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tmO4oXHpAZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tmO4oXHpAZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tmO4oXHpAZ .nav-link {
  position: relative;
}
.cid-tmO4oXHpAZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tmO4oXHpAZ .container {
    flex-wrap: nowrap;
  }
}
.cid-tmO4oXHpAZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tmO4oXHpAZ .dropdown-menu,
.cid-tmO4oXHpAZ .navbar.opened {
  background: #7f2200 !important;
}
.cid-tmO4oXHpAZ .nav-item:focus,
.cid-tmO4oXHpAZ .nav-link:focus {
  outline: none;
}
.cid-tmO4oXHpAZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tmO4oXHpAZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tmO4oXHpAZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tmO4oXHpAZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmO4oXHpAZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tmO4oXHpAZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tmO4oXHpAZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #7f2200;
}
.cid-tmO4oXHpAZ .navbar.opened {
  transition: all 0.3s;
}
.cid-tmO4oXHpAZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tmO4oXHpAZ .navbar .navbar-logo img {
  width: auto;
}
.cid-tmO4oXHpAZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tmO4oXHpAZ .navbar.collapsed {
  justify-content: center;
}
.cid-tmO4oXHpAZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tmO4oXHpAZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tmO4oXHpAZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tmO4oXHpAZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tmO4oXHpAZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tmO4oXHpAZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tmO4oXHpAZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tmO4oXHpAZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tmO4oXHpAZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tmO4oXHpAZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tmO4oXHpAZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tmO4oXHpAZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tmO4oXHpAZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tmO4oXHpAZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tmO4oXHpAZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tmO4oXHpAZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tmO4oXHpAZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tmO4oXHpAZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tmO4oXHpAZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tmO4oXHpAZ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tmO4oXHpAZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tmO4oXHpAZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tmO4oXHpAZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tmO4oXHpAZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tmO4oXHpAZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tmO4oXHpAZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tmO4oXHpAZ .dropdown-item.active,
.cid-tmO4oXHpAZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tmO4oXHpAZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tmO4oXHpAZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tmO4oXHpAZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tmO4oXHpAZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7f2200;
}
.cid-tmO4oXHpAZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tmO4oXHpAZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tmO4oXHpAZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tmO4oXHpAZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tmO4oXHpAZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tmO4oXHpAZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-tmO4oXHpAZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tmO4oXHpAZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmO4oXHpAZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmO4oXHpAZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tmO4oXHpAZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmO4oXHpAZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tmO4oXHpAZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tmO4oXHpAZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmO4oXHpAZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tmO4oXHpAZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tmO4oXHpAZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tmO4oXHpAZ .navbar {
    height: 70px;
  }
  .cid-tmO4oXHpAZ .navbar.opened {
    height: auto;
  }
  .cid-tmO4oXHpAZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tmObB5C33H {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmObB5C33H .mbr-text {
  color: #7f2200;
  text-align: left;
}
.cid-tmO11rqGzS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmO11rqGzS .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmObBXnQih {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmObBXnQih .mbr-text {
  color: #7f2200;
  text-align: left;
}
.cid-tmO2c6eVfx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmO2c6eVfx .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmO02OvbQy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #7f2200;
}
.cid-tmO02OvbQy .mbr-text {
  color: #7f2200;
  text-align: center;
}
.cid-tmO02O1Pkw {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmO02O1Pkw .mbr-text {
  text-align: center;
  color: #7f2200;
}
.cid-tmO02OSgO9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tmO02OSgO9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmO02OSgO9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmO02OSgO9 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tmO02OSgO9 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tmO02OSgO9 .row {
    text-align: center;
  }
  .cid-tmO02OSgO9 .row > div {
    margin: auto;
  }
  .cid-tmO02OSgO9 .social-row {
    justify-content: center;
  }
}
.cid-tmO02OSgO9 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tmO02OSgO9 .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tmO02OSgO9 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmO02OSgO9 .list {
    margin-bottom: 0rem;
  }
}
.cid-tmO02OSgO9 .mbr-text {
  color: #bbbbbb;
}
.cid-tmO02OSgO9 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tmO02OSgO9 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tmO02OSgO9 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tmO02OSgO9 .mbr-section-subtitle {
  color: #7f2200;
}
.cid-tmO02OSgO9 .copyright {
  color: #be2d00;
}
.cid-tmO02PR8rR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #7f2200;
}
.cid-tmO02PR8rR .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-tmOaDRckDG {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmOaDRckDG .mbr-text {
  color: #7f2200;
  text-align: center;
}
.cid-tmO545V3zh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmO545V3zh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmO545V3zh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmO545V3zh .img-wrapper {
  text-align: center;
}
.cid-tmO545V3zh img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-tmO545V3zh .row {
  align-items: flex-start;
}
.cid-tmO545V3zh .card-wrapper {
  border-radius: 4px;
  background: #efefef;
}
@media (max-width: 992px) {
  .cid-tmO545V3zh .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-tmO545V3zh .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tmO545V3zh .card-wrapper {
    padding: 1rem;
  }
}
.cid-tmO545V3zh .card-title {
  color: #be2d00;
}
.cid-tmO545V3zh .mbr-text,
.cid-tmO545V3zh .mbr-section-btn {
  color: #353535;
}
.cid-tmO6iGBt6f {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #7f2200;
}
.cid-tmO6iGBt6f .mbr-text {
  color: #7f2200;
  text-align: center;
}
.cid-tmO4A5ODfr {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmO4A5ODfr .mbr-text {
  text-align: center;
  color: #7f2200;
}
.cid-tmO4A6auFV {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tmO4A6auFV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmO4A6auFV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmO4A6auFV .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tmO4A6auFV .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tmO4A6auFV .row {
    text-align: center;
  }
  .cid-tmO4A6auFV .row > div {
    margin: auto;
  }
  .cid-tmO4A6auFV .social-row {
    justify-content: center;
  }
}
.cid-tmO4A6auFV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tmO4A6auFV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tmO4A6auFV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmO4A6auFV .list {
    margin-bottom: 0rem;
  }
}
.cid-tmO4A6auFV .mbr-text {
  color: #bbbbbb;
}
.cid-tmO4A6auFV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tmO4A6auFV .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tmO4A6auFV div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tmO4A6auFV .mbr-section-subtitle {
  color: #7f2200;
}
.cid-tmO4A6auFV .copyright {
  color: #be2d00;
}
.cid-tmO4A6Vmju {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #7f2200;
}
.cid-tmO4A6Vmju .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-tmO4A7iwVU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tmO4A7iwVU nav.navbar {
  position: fixed;
}
.cid-tmO4A7iwVU .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmO4A7iwVU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tmO4A7iwVU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tmO4A7iwVU .dropdown-item:hover,
.cid-tmO4A7iwVU .dropdown-item:focus {
  background: #7f2200 !important;
  color: white !important;
}
.cid-tmO4A7iwVU .dropdown-item:hover span {
  color: white;
}
.cid-tmO4A7iwVU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tmO4A7iwVU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tmO4A7iwVU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tmO4A7iwVU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tmO4A7iwVU .nav-link {
  position: relative;
}
.cid-tmO4A7iwVU .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tmO4A7iwVU .container {
    flex-wrap: nowrap;
  }
}
.cid-tmO4A7iwVU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tmO4A7iwVU .dropdown-menu,
.cid-tmO4A7iwVU .navbar.opened {
  background: #7f2200 !important;
}
.cid-tmO4A7iwVU .nav-item:focus,
.cid-tmO4A7iwVU .nav-link:focus {
  outline: none;
}
.cid-tmO4A7iwVU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tmO4A7iwVU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tmO4A7iwVU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tmO4A7iwVU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmO4A7iwVU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tmO4A7iwVU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tmO4A7iwVU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #7f2200;
}
.cid-tmO4A7iwVU .navbar.opened {
  transition: all 0.3s;
}
.cid-tmO4A7iwVU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tmO4A7iwVU .navbar .navbar-logo img {
  width: auto;
}
.cid-tmO4A7iwVU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tmO4A7iwVU .navbar.collapsed {
  justify-content: center;
}
.cid-tmO4A7iwVU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tmO4A7iwVU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tmO4A7iwVU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tmO4A7iwVU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tmO4A7iwVU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tmO4A7iwVU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tmO4A7iwVU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tmO4A7iwVU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tmO4A7iwVU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tmO4A7iwVU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tmO4A7iwVU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tmO4A7iwVU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tmO4A7iwVU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tmO4A7iwVU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tmO4A7iwVU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tmO4A7iwVU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tmO4A7iwVU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tmO4A7iwVU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tmO4A7iwVU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tmO4A7iwVU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tmO4A7iwVU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tmO4A7iwVU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tmO4A7iwVU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tmO4A7iwVU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tmO4A7iwVU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tmO4A7iwVU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tmO4A7iwVU .dropdown-item.active,
.cid-tmO4A7iwVU .dropdown-item:active {
  background-color: transparent;
}
.cid-tmO4A7iwVU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tmO4A7iwVU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tmO4A7iwVU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tmO4A7iwVU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7f2200;
}
.cid-tmO4A7iwVU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tmO4A7iwVU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tmO4A7iwVU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tmO4A7iwVU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tmO4A7iwVU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tmO4A7iwVU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-tmO4A7iwVU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tmO4A7iwVU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmO4A7iwVU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmO4A7iwVU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tmO4A7iwVU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmO4A7iwVU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tmO4A7iwVU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tmO4A7iwVU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmO4A7iwVU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tmO4A7iwVU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tmO4A7iwVU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tmO4A7iwVU .navbar {
    height: 70px;
  }
  .cid-tmO4A7iwVU .navbar.opened {
    height: auto;
  }
  .cid-tmO4A7iwVU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tmO6Bgbxh2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tmO6Bgbxh2 nav.navbar {
  position: fixed;
}
.cid-tmO6Bgbxh2 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmO6Bgbxh2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tmO6Bgbxh2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tmO6Bgbxh2 .dropdown-item:hover,
.cid-tmO6Bgbxh2 .dropdown-item:focus {
  background: #7f2200 !important;
  color: white !important;
}
.cid-tmO6Bgbxh2 .dropdown-item:hover span {
  color: white;
}
.cid-tmO6Bgbxh2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tmO6Bgbxh2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tmO6Bgbxh2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tmO6Bgbxh2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tmO6Bgbxh2 .nav-link {
  position: relative;
}
.cid-tmO6Bgbxh2 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tmO6Bgbxh2 .container {
    flex-wrap: nowrap;
  }
}
.cid-tmO6Bgbxh2 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tmO6Bgbxh2 .dropdown-menu,
.cid-tmO6Bgbxh2 .navbar.opened {
  background: #7f2200 !important;
}
.cid-tmO6Bgbxh2 .nav-item:focus,
.cid-tmO6Bgbxh2 .nav-link:focus {
  outline: none;
}
.cid-tmO6Bgbxh2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tmO6Bgbxh2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tmO6Bgbxh2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tmO6Bgbxh2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmO6Bgbxh2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tmO6Bgbxh2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tmO6Bgbxh2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #7f2200;
}
.cid-tmO6Bgbxh2 .navbar.opened {
  transition: all 0.3s;
}
.cid-tmO6Bgbxh2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tmO6Bgbxh2 .navbar .navbar-logo img {
  width: auto;
}
.cid-tmO6Bgbxh2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tmO6Bgbxh2 .navbar.collapsed {
  justify-content: center;
}
.cid-tmO6Bgbxh2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tmO6Bgbxh2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tmO6Bgbxh2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tmO6Bgbxh2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tmO6Bgbxh2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tmO6Bgbxh2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tmO6Bgbxh2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tmO6Bgbxh2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tmO6Bgbxh2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tmO6Bgbxh2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tmO6Bgbxh2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tmO6Bgbxh2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tmO6Bgbxh2 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tmO6Bgbxh2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tmO6Bgbxh2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tmO6Bgbxh2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tmO6Bgbxh2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tmO6Bgbxh2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tmO6Bgbxh2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tmO6Bgbxh2 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tmO6Bgbxh2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tmO6Bgbxh2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tmO6Bgbxh2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tmO6Bgbxh2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tmO6Bgbxh2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tmO6Bgbxh2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tmO6Bgbxh2 .dropdown-item.active,
.cid-tmO6Bgbxh2 .dropdown-item:active {
  background-color: transparent;
}
.cid-tmO6Bgbxh2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tmO6Bgbxh2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tmO6Bgbxh2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tmO6Bgbxh2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7f2200;
}
.cid-tmO6Bgbxh2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tmO6Bgbxh2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tmO6Bgbxh2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tmO6Bgbxh2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tmO6Bgbxh2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tmO6Bgbxh2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-tmO6Bgbxh2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tmO6Bgbxh2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmO6Bgbxh2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmO6Bgbxh2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tmO6Bgbxh2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmO6Bgbxh2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tmO6Bgbxh2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tmO6Bgbxh2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmO6Bgbxh2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tmO6Bgbxh2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tmO6Bgbxh2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tmO6Bgbxh2 .navbar {
    height: 70px;
  }
  .cid-tmO6Bgbxh2 .navbar.opened {
    height: auto;
  }
  .cid-tmO6Bgbxh2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tmO7OJlCKe {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmO7OJlCKe .mbr-text {
  color: #7f2200;
  text-align: left;
}
.cid-tmO7QkCa7l {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmO7QkCa7l .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmO7QkCa7l .mbr-section-subtitle {
  color: #be2d00;
}
.cid-tmO7RavDob {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmO7RavDob .mbr-text {
  color: #7f2200;
  text-align: left;
}
.cid-tmO7RNzDNy {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmO7RNzDNy .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmO7RNzDNy .mbr-section-subtitle {
  color: #be2d00;
}
.cid-tmO6LlA3iL {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmO6LlA3iL .mbr-text {
  color: #7f2200;
  text-align: left;
}
.cid-tmO6JBGfcu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmO6JBGfcu .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmO7c2pm6E {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmO7c2pm6E .mbr-text {
  color: #7f2200;
  text-align: left;
}
.cid-tmO7d0nnbV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmO7d0nnbV .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmO7d0nnbV .mbr-section-subtitle {
  color: #be2d00;
}
.cid-tmO7g3zZMn {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmO7g3zZMn .mbr-text {
  color: #7f2200;
  text-align: left;
}
.cid-tmO7gRmLdZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmO7gRmLdZ .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmO7gRmLdZ .mbr-section-subtitle {
  color: #be2d00;
}
.cid-tmO7hvZiKA {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmO7hvZiKA .mbr-text {
  color: #7f2200;
  text-align: left;
}
.cid-tmO7i1Q2k4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmO7i1Q2k4 .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmO7i1Q2k4 .mbr-section-subtitle {
  color: #be2d00;
}
.cid-tmO7j3jm14 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmO7j3jm14 .mbr-text {
  color: #7f2200;
  text-align: left;
}
.cid-tmO7neECQ7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmO7neECQ7 .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmO7neECQ7 .mbr-section-subtitle {
  color: #be2d00;
}
.cid-tmOaeNSRlH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #7f2200;
}
.cid-tmOaeNSRlH .mbr-text {
  color: #7f2200;
  text-align: center;
}
.cid-tmO6BedvmV {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmO6BedvmV .mbr-text {
  text-align: center;
  color: #7f2200;
}
.cid-tmO6BeUqRc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tmO6BeUqRc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmO6BeUqRc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmO6BeUqRc .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tmO6BeUqRc .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tmO6BeUqRc .row {
    text-align: center;
  }
  .cid-tmO6BeUqRc .row > div {
    margin: auto;
  }
  .cid-tmO6BeUqRc .social-row {
    justify-content: center;
  }
}
.cid-tmO6BeUqRc .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tmO6BeUqRc .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tmO6BeUqRc .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmO6BeUqRc .list {
    margin-bottom: 0rem;
  }
}
.cid-tmO6BeUqRc .mbr-text {
  color: #bbbbbb;
}
.cid-tmO6BeUqRc .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tmO6BeUqRc .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tmO6BeUqRc div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tmO6BeUqRc .mbr-section-subtitle {
  color: #7f2200;
}
.cid-tmO6BeUqRc .copyright {
  color: #be2d00;
}
.cid-tmO6BfRmEo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #7f2200;
}
.cid-tmO6BfRmEo .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-tmRUKc0m3A {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmRUKc0m3A .mbr-text {
  color: #7f2200;
  text-align: left;
}
.cid-tmRUN7pCDG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmRUN7pCDG .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmRUN7pCDG .mbr-section-subtitle {
  color: #be2d00;
}
.cid-tmRUQbptVu {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmRUQbptVu .mbr-text {
  color: #7f2200;
  text-align: left;
}
.cid-tmRURiZEaU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmRURiZEaU .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmRURiZEaU .mbr-section-subtitle {
  color: #be2d00;
}
.cid-tmRXbFn4Rv {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmRXbFn4Rv img,
.cid-tmRXbFn4Rv .item-img {
  height: 100%;
  object-fit: cover;
}
.cid-tmRXbFn4Rv .item:focus,
.cid-tmRXbFn4Rv span:focus {
  outline: none;
}
.cid-tmRXbFn4Rv .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tmRXbFn4Rv .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tmRXbFn4Rv .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tmRXbFn4Rv .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tmRXbFn4Rv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tmRXbFn4Rv .mbr-section-title {
  color: #232323;
}
.cid-tmRXbFn4Rv .mbr-text,
.cid-tmRXbFn4Rv .mbr-section-btn {
  text-align: center;
}
.cid-tmRXbFn4Rv .item-title {
  text-align: center;
}
.cid-tmRXbFn4Rv .item-subtitle {
  text-align: center;
  color: #232323;
}
.cid-tmRUUGJ0Ci {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmRUUGJ0Ci .mbr-text {
  color: #7f2200;
  text-align: left;
}
.cid-tmRUVMWm7d {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmRUVMWm7d .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmRUVMWm7d .mbr-section-subtitle {
  color: #be2d00;
}
.cid-tmRUWUIqc8 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmRUWUIqc8 .mbr-text {
  color: #7f2200;
  text-align: left;
}
.cid-tmRUXKSWUS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmRUXKSWUS .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmRUXKSWUS .mbr-section-subtitle {
  color: #be2d00;
}
.cid-tmRUYJZtkL {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmRUYJZtkL .mbr-text {
  color: #7f2200;
  text-align: left;
}
.cid-tmRUZy612i {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmRUZy612i .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmRUZy612i .mbr-section-subtitle {
  color: #be2d00;
}
.cid-tmRV0vjsVv {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmRV0vjsVv .mbr-text {
  color: #7f2200;
  text-align: left;
}
.cid-tmRV1qsH6R {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmRV1qsH6R .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmRV1qsH6R .mbr-section-subtitle {
  color: #7f2200;
}
.cid-tmRUmNhDNx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #7f2200;
}
.cid-tmRUmNhDNx .mbr-text {
  color: #7f2200;
  text-align: center;
}
.cid-tmRUmOvdjw {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmRUmOvdjw .mbr-text {
  text-align: center;
  color: #7f2200;
}
.cid-tmRUmPpkVP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tmRUmPpkVP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmRUmPpkVP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmRUmPpkVP .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tmRUmPpkVP .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tmRUmPpkVP .row {
    text-align: center;
  }
  .cid-tmRUmPpkVP .row > div {
    margin: auto;
  }
  .cid-tmRUmPpkVP .social-row {
    justify-content: center;
  }
}
.cid-tmRUmPpkVP .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tmRUmPpkVP .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tmRUmPpkVP .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmRUmPpkVP .list {
    margin-bottom: 0rem;
  }
}
.cid-tmRUmPpkVP .mbr-text {
  color: #bbbbbb;
}
.cid-tmRUmPpkVP .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tmRUmPpkVP .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tmRUmPpkVP div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tmRUmPpkVP .mbr-section-subtitle {
  color: #7f2200;
}
.cid-tmRUmPpkVP .copyright {
  color: #be2d00;
}
.cid-tmRUmRZiis {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #7f2200;
}
.cid-tmRUmRZiis .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-tmRUmSu2n8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tmRUmSu2n8 nav.navbar {
  position: fixed;
}
.cid-tmRUmSu2n8 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmRUmSu2n8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tmRUmSu2n8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tmRUmSu2n8 .dropdown-item:hover,
.cid-tmRUmSu2n8 .dropdown-item:focus {
  background: #7f2200 !important;
  color: white !important;
}
.cid-tmRUmSu2n8 .dropdown-item:hover span {
  color: white;
}
.cid-tmRUmSu2n8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tmRUmSu2n8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tmRUmSu2n8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tmRUmSu2n8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tmRUmSu2n8 .nav-link {
  position: relative;
}
.cid-tmRUmSu2n8 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tmRUmSu2n8 .container {
    flex-wrap: nowrap;
  }
}
.cid-tmRUmSu2n8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tmRUmSu2n8 .dropdown-menu,
.cid-tmRUmSu2n8 .navbar.opened {
  background: #7f2200 !important;
}
.cid-tmRUmSu2n8 .nav-item:focus,
.cid-tmRUmSu2n8 .nav-link:focus {
  outline: none;
}
.cid-tmRUmSu2n8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tmRUmSu2n8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tmRUmSu2n8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tmRUmSu2n8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmRUmSu2n8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tmRUmSu2n8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tmRUmSu2n8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #7f2200;
}
.cid-tmRUmSu2n8 .navbar.opened {
  transition: all 0.3s;
}
.cid-tmRUmSu2n8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tmRUmSu2n8 .navbar .navbar-logo img {
  width: auto;
}
.cid-tmRUmSu2n8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tmRUmSu2n8 .navbar.collapsed {
  justify-content: center;
}
.cid-tmRUmSu2n8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tmRUmSu2n8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tmRUmSu2n8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tmRUmSu2n8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tmRUmSu2n8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tmRUmSu2n8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tmRUmSu2n8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tmRUmSu2n8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tmRUmSu2n8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tmRUmSu2n8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tmRUmSu2n8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tmRUmSu2n8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tmRUmSu2n8 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tmRUmSu2n8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tmRUmSu2n8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tmRUmSu2n8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tmRUmSu2n8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tmRUmSu2n8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tmRUmSu2n8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tmRUmSu2n8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tmRUmSu2n8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tmRUmSu2n8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tmRUmSu2n8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tmRUmSu2n8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tmRUmSu2n8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tmRUmSu2n8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tmRUmSu2n8 .dropdown-item.active,
.cid-tmRUmSu2n8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tmRUmSu2n8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tmRUmSu2n8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tmRUmSu2n8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tmRUmSu2n8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7f2200;
}
.cid-tmRUmSu2n8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tmRUmSu2n8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tmRUmSu2n8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tmRUmSu2n8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tmRUmSu2n8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tmRUmSu2n8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-tmRUmSu2n8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tmRUmSu2n8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmRUmSu2n8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmRUmSu2n8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tmRUmSu2n8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmRUmSu2n8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tmRUmSu2n8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tmRUmSu2n8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmRUmSu2n8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tmRUmSu2n8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tmRUmSu2n8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tmRUmSu2n8 .navbar {
    height: 70px;
  }
  .cid-tmRUmSu2n8 .navbar.opened {
    height: auto;
  }
  .cid-tmRUmSu2n8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tmS4WXzNLV {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmS4WXzNLV .mbr-text {
  color: #7f2200;
  text-align: left;
}
.cid-tmS4WXP39G {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmS4WXP39G .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmS5yrQiBf {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmS5yrQiBf .mbr-text {
  color: #7f2200;
  text-align: left;
}
.cid-tmS5zMaVb9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmS5zMaVb9 .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmS5zMaVb9 .mbr-section-subtitle {
  color: #be2d00;
}
.cid-tmS5Au4V0K {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmS5Au4V0K .mbr-text {
  color: #7f2200;
  text-align: left;
}
.cid-tmS5BttXi4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmS5BttXi4 .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmS5BttXi4 .mbr-section-subtitle {
  color: #be2d00;
}
.cid-tmS5BXqjom {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmS5BXqjom .mbr-text {
  color: #7f2200;
  text-align: left;
}
.cid-tmS5DbpAr5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmS5DbpAr5 .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmS5DbpAr5 .mbr-section-subtitle {
  color: #be2d00;
}
.cid-tmS5DREBqv {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmS5DREBqv .mbr-text {
  color: #7f2200;
  text-align: left;
}
.cid-tmS5EuIKHl {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmS5EuIKHl .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmS5EuIKHl .mbr-section-subtitle {
  color: #7f2200;
}
.cid-tmS4WV96Vh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #7f2200;
}
.cid-tmS4WV96Vh .mbr-text {
  color: #7f2200;
  text-align: center;
}
.cid-tmS4WVs09E {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmS4WVs09E .mbr-text {
  text-align: center;
  color: #7f2200;
}
.cid-tmS4WVKrmM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tmS4WVKrmM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmS4WVKrmM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmS4WVKrmM .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tmS4WVKrmM .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tmS4WVKrmM .row {
    text-align: center;
  }
  .cid-tmS4WVKrmM .row > div {
    margin: auto;
  }
  .cid-tmS4WVKrmM .social-row {
    justify-content: center;
  }
}
.cid-tmS4WVKrmM .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tmS4WVKrmM .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tmS4WVKrmM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmS4WVKrmM .list {
    margin-bottom: 0rem;
  }
}
.cid-tmS4WVKrmM .mbr-text {
  color: #bbbbbb;
}
.cid-tmS4WVKrmM .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tmS4WVKrmM .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tmS4WVKrmM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tmS4WVKrmM .mbr-section-subtitle {
  color: #7f2200;
}
.cid-tmS4WVKrmM .copyright {
  color: #be2d00;
}
.cid-tmS4WWEWzr {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #7f2200;
}
.cid-tmS4WWEWzr .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-tmS4WWWgNo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tmS4WWWgNo nav.navbar {
  position: fixed;
}
.cid-tmS4WWWgNo .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmS4WWWgNo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tmS4WWWgNo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tmS4WWWgNo .dropdown-item:hover,
.cid-tmS4WWWgNo .dropdown-item:focus {
  background: #7f2200 !important;
  color: white !important;
}
.cid-tmS4WWWgNo .dropdown-item:hover span {
  color: white;
}
.cid-tmS4WWWgNo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tmS4WWWgNo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tmS4WWWgNo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tmS4WWWgNo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tmS4WWWgNo .nav-link {
  position: relative;
}
.cid-tmS4WWWgNo .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tmS4WWWgNo .container {
    flex-wrap: nowrap;
  }
}
.cid-tmS4WWWgNo .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tmS4WWWgNo .dropdown-menu,
.cid-tmS4WWWgNo .navbar.opened {
  background: #7f2200 !important;
}
.cid-tmS4WWWgNo .nav-item:focus,
.cid-tmS4WWWgNo .nav-link:focus {
  outline: none;
}
.cid-tmS4WWWgNo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tmS4WWWgNo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tmS4WWWgNo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tmS4WWWgNo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmS4WWWgNo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tmS4WWWgNo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tmS4WWWgNo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #7f2200;
}
.cid-tmS4WWWgNo .navbar.opened {
  transition: all 0.3s;
}
.cid-tmS4WWWgNo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tmS4WWWgNo .navbar .navbar-logo img {
  width: auto;
}
.cid-tmS4WWWgNo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tmS4WWWgNo .navbar.collapsed {
  justify-content: center;
}
.cid-tmS4WWWgNo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tmS4WWWgNo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tmS4WWWgNo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tmS4WWWgNo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tmS4WWWgNo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tmS4WWWgNo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tmS4WWWgNo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tmS4WWWgNo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tmS4WWWgNo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tmS4WWWgNo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tmS4WWWgNo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tmS4WWWgNo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tmS4WWWgNo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tmS4WWWgNo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tmS4WWWgNo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tmS4WWWgNo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tmS4WWWgNo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tmS4WWWgNo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tmS4WWWgNo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tmS4WWWgNo .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tmS4WWWgNo .navbar.navbar-short {
  min-height: 60px;
}
.cid-tmS4WWWgNo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tmS4WWWgNo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tmS4WWWgNo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tmS4WWWgNo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tmS4WWWgNo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tmS4WWWgNo .dropdown-item.active,
.cid-tmS4WWWgNo .dropdown-item:active {
  background-color: transparent;
}
.cid-tmS4WWWgNo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tmS4WWWgNo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tmS4WWWgNo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tmS4WWWgNo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7f2200;
}
.cid-tmS4WWWgNo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tmS4WWWgNo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tmS4WWWgNo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tmS4WWWgNo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tmS4WWWgNo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tmS4WWWgNo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-tmS4WWWgNo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tmS4WWWgNo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmS4WWWgNo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmS4WWWgNo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tmS4WWWgNo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmS4WWWgNo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tmS4WWWgNo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tmS4WWWgNo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmS4WWWgNo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tmS4WWWgNo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tmS4WWWgNo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tmS4WWWgNo .navbar {
    height: 70px;
  }
  .cid-tmS4WWWgNo .navbar.opened {
    height: auto;
  }
  .cid-tmS4WWWgNo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tmS811894J {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmS811894J .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmS811894J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmS811894J .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tmS811894J .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
  background-color: transparent;
}
.cid-tmS811894J .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tmS811894J .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tmS811894J .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tmS811894J .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tmS811894J .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tmS811894J .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tmS811894J .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmS811894J .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tmS811894J .card-title {
  color: #7f2200;
}
.cid-tmS6sLEDBI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmS6sLEDBI .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmS6sLEDBI .mbr-section-subtitle {
  color: #be2d00;
}
.cid-tmSj8ThUNA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
.cid-tmSj8ThUNA img,
.cid-tmSj8ThUNA .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tmSj8ThUNA .item:focus,
.cid-tmSj8ThUNA span:focus {
  outline: none;
}
.cid-tmSj8ThUNA .item-wrapper {
  position: relative;
}
.cid-tmSj8ThUNA .slide-content {
  position: relative;
  border-radius: 4px;
  background: #efefef;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tmSj8ThUNA .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tmSj8ThUNA .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tmSj8ThUNA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tmSj8ThUNA .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tmSj8ThUNA .mbr-text,
.cid-tmSj8ThUNA .mbr-section-btn {
  text-align: left;
}
.cid-tmSj8ThUNA .item-title {
  text-align: left;
}
.cid-tmSj8ThUNA .item-subtitle {
  text-align: left;
}
.cid-tmSj8ThUNA .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tmSj8ThUNA .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tmSj8ThUNA .embla__button--next,
.cid-tmSj8ThUNA .embla__button--prev {
  display: flex;
}
.cid-tmSj8ThUNA .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;
}
.cid-tmSj8ThUNA .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tmSj8ThUNA .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tmSj8ThUNA .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmSj8ThUNA .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tmSj8ThUNA .embla__button {
    top: auto;
  }
}
.cid-tmSj8ThUNA .embla {
  position: relative;
  width: 100%;
}
.cid-tmSj8ThUNA .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tmSj8ThUNA .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tmSj8ThUNA .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tmSj8ThUNA .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tmSj8ThUNA .mbr-section-subtitle {
  text-align: center;
}
.cid-tmSmRwtwzv {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmSmRwtwzv .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmSnaNeXVE {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-tmSnaNeXVE img,
.cid-tmSnaNeXVE .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tmSnaNeXVE .item:focus,
.cid-tmSnaNeXVE span:focus {
  outline: none;
}
.cid-tmSnaNeXVE .item-wrapper {
  position: relative;
}
.cid-tmSnaNeXVE .slide-content {
  position: relative;
  border-radius: 4px;
  background: #efefef;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tmSnaNeXVE .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tmSnaNeXVE .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tmSnaNeXVE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tmSnaNeXVE .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tmSnaNeXVE .mbr-text,
.cid-tmSnaNeXVE .mbr-section-btn {
  text-align: left;
}
.cid-tmSnaNeXVE .item-title {
  text-align: left;
}
.cid-tmSnaNeXVE .item-subtitle {
  text-align: left;
}
.cid-tmSnaNeXVE .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tmSnaNeXVE .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tmSnaNeXVE .embla__button--next,
.cid-tmSnaNeXVE .embla__button--prev {
  display: flex;
}
.cid-tmSnaNeXVE .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;
}
.cid-tmSnaNeXVE .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tmSnaNeXVE .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tmSnaNeXVE .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmSnaNeXVE .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tmSnaNeXVE .embla__button {
    top: auto;
  }
}
.cid-tmSnaNeXVE .embla {
  position: relative;
  width: 100%;
}
.cid-tmSnaNeXVE .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tmSnaNeXVE .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tmSnaNeXVE .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tmSnaNeXVE .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tmSvqrCX2z {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmSvqrCX2z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmSvqrCX2z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmSvqrCX2z .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tmSvqrCX2z .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
  background-color: transparent;
}
.cid-tmSvqrCX2z .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tmSvqrCX2z .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tmSvqrCX2z .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tmSvqrCX2z .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tmSvqrCX2z .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tmSvqrCX2z .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tmSvqrCX2z .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmSvqrCX2z .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tmSvqrCX2z .card-title {
  color: #7f2200;
}
.cid-tmSvE0uZyg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmSvE0uZyg .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmSvMV1be4 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-tmSvMV1be4 img,
.cid-tmSvMV1be4 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tmSvMV1be4 .item:focus,
.cid-tmSvMV1be4 span:focus {
  outline: none;
}
.cid-tmSvMV1be4 .item-wrapper {
  position: relative;
}
.cid-tmSvMV1be4 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #efefef;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tmSvMV1be4 .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tmSvMV1be4 .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tmSvMV1be4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tmSvMV1be4 .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tmSvMV1be4 .mbr-text,
.cid-tmSvMV1be4 .mbr-section-btn {
  text-align: left;
}
.cid-tmSvMV1be4 .item-title {
  text-align: left;
}
.cid-tmSvMV1be4 .item-subtitle {
  text-align: left;
}
.cid-tmSvMV1be4 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tmSvMV1be4 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tmSvMV1be4 .embla__button--next,
.cid-tmSvMV1be4 .embla__button--prev {
  display: flex;
}
.cid-tmSvMV1be4 .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;
}
.cid-tmSvMV1be4 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tmSvMV1be4 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tmSvMV1be4 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmSvMV1be4 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tmSvMV1be4 .embla__button {
    top: auto;
  }
}
.cid-tmSvMV1be4 .embla {
  position: relative;
  width: 100%;
}
.cid-tmSvMV1be4 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tmSvMV1be4 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tmSvMV1be4 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tmSvMV1be4 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tmSwLofKsT {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmSwLofKsT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmSwLofKsT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmSwLofKsT .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tmSwLofKsT .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
  background-color: transparent;
}
.cid-tmSwLofKsT .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tmSwLofKsT .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tmSwLofKsT .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tmSwLofKsT .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tmSwLofKsT .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tmSwLofKsT .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tmSwLofKsT .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmSwLofKsT .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tmSwLofKsT .card-title {
  color: #7f2200;
}
.cid-tmSx8zDPXy {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-tmSx8zDPXy .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmSxydPsxt {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-tmSxydPsxt img,
.cid-tmSxydPsxt .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tmSxydPsxt .item:focus,
.cid-tmSxydPsxt span:focus {
  outline: none;
}
.cid-tmSxydPsxt .item-wrapper {
  position: relative;
}
.cid-tmSxydPsxt .slide-content {
  position: relative;
  border-radius: 4px;
  background: #efefef;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tmSxydPsxt .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tmSxydPsxt .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tmSxydPsxt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tmSxydPsxt .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tmSxydPsxt .mbr-text,
.cid-tmSxydPsxt .mbr-section-btn {
  text-align: left;
}
.cid-tmSxydPsxt .item-title {
  text-align: left;
}
.cid-tmSxydPsxt .item-subtitle {
  text-align: left;
}
.cid-tmSxydPsxt .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tmSxydPsxt .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tmSxydPsxt .embla__button--next,
.cid-tmSxydPsxt .embla__button--prev {
  display: flex;
}
.cid-tmSxydPsxt .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;
}
.cid-tmSxydPsxt .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tmSxydPsxt .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tmSxydPsxt .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmSxydPsxt .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tmSxydPsxt .embla__button {
    top: auto;
  }
}
.cid-tmSxydPsxt .embla {
  position: relative;
  width: 100%;
}
.cid-tmSxydPsxt .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tmSxydPsxt .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tmSxydPsxt .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tmSxydPsxt .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tmS6sLXkbF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #7f2200;
}
.cid-tmS6sLXkbF .mbr-text {
  color: #7f2200;
  text-align: center;
}
.cid-tmS6sMfaV5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmS6sMfaV5 .mbr-text {
  text-align: center;
  color: #7f2200;
}
.cid-tmS6sMvdaW {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tmS6sMvdaW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmS6sMvdaW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmS6sMvdaW .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tmS6sMvdaW .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tmS6sMvdaW .row {
    text-align: center;
  }
  .cid-tmS6sMvdaW .row > div {
    margin: auto;
  }
  .cid-tmS6sMvdaW .social-row {
    justify-content: center;
  }
}
.cid-tmS6sMvdaW .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tmS6sMvdaW .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tmS6sMvdaW .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmS6sMvdaW .list {
    margin-bottom: 0rem;
  }
}
.cid-tmS6sMvdaW .mbr-text {
  color: #bbbbbb;
}
.cid-tmS6sMvdaW .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tmS6sMvdaW .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tmS6sMvdaW div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tmS6sMvdaW .mbr-section-subtitle {
  color: #7f2200;
}
.cid-tmS6sMvdaW .copyright {
  color: #be2d00;
}
.cid-tmS6sNpGyC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #7f2200;
}
.cid-tmS6sNpGyC .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-tmS6sNKHVD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tmS6sNKHVD nav.navbar {
  position: fixed;
}
.cid-tmS6sNKHVD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmS6sNKHVD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tmS6sNKHVD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tmS6sNKHVD .dropdown-item:hover,
.cid-tmS6sNKHVD .dropdown-item:focus {
  background: #7f2200 !important;
  color: white !important;
}
.cid-tmS6sNKHVD .dropdown-item:hover span {
  color: white;
}
.cid-tmS6sNKHVD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tmS6sNKHVD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tmS6sNKHVD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tmS6sNKHVD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tmS6sNKHVD .nav-link {
  position: relative;
}
.cid-tmS6sNKHVD .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tmS6sNKHVD .container {
    flex-wrap: nowrap;
  }
}
.cid-tmS6sNKHVD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tmS6sNKHVD .dropdown-menu,
.cid-tmS6sNKHVD .navbar.opened {
  background: #7f2200 !important;
}
.cid-tmS6sNKHVD .nav-item:focus,
.cid-tmS6sNKHVD .nav-link:focus {
  outline: none;
}
.cid-tmS6sNKHVD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tmS6sNKHVD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tmS6sNKHVD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tmS6sNKHVD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmS6sNKHVD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tmS6sNKHVD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tmS6sNKHVD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #7f2200;
}
.cid-tmS6sNKHVD .navbar.opened {
  transition: all 0.3s;
}
.cid-tmS6sNKHVD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tmS6sNKHVD .navbar .navbar-logo img {
  width: auto;
}
.cid-tmS6sNKHVD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tmS6sNKHVD .navbar.collapsed {
  justify-content: center;
}
.cid-tmS6sNKHVD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tmS6sNKHVD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tmS6sNKHVD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tmS6sNKHVD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tmS6sNKHVD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tmS6sNKHVD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tmS6sNKHVD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tmS6sNKHVD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tmS6sNKHVD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tmS6sNKHVD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tmS6sNKHVD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tmS6sNKHVD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tmS6sNKHVD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tmS6sNKHVD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tmS6sNKHVD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tmS6sNKHVD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tmS6sNKHVD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tmS6sNKHVD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tmS6sNKHVD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tmS6sNKHVD .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tmS6sNKHVD .navbar.navbar-short {
  min-height: 60px;
}
.cid-tmS6sNKHVD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tmS6sNKHVD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tmS6sNKHVD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tmS6sNKHVD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tmS6sNKHVD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tmS6sNKHVD .dropdown-item.active,
.cid-tmS6sNKHVD .dropdown-item:active {
  background-color: transparent;
}
.cid-tmS6sNKHVD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tmS6sNKHVD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tmS6sNKHVD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tmS6sNKHVD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7f2200;
}
.cid-tmS6sNKHVD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tmS6sNKHVD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tmS6sNKHVD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tmS6sNKHVD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tmS6sNKHVD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tmS6sNKHVD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-tmS6sNKHVD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tmS6sNKHVD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmS6sNKHVD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmS6sNKHVD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tmS6sNKHVD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmS6sNKHVD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tmS6sNKHVD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tmS6sNKHVD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmS6sNKHVD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tmS6sNKHVD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tmS6sNKHVD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tmS6sNKHVD .navbar {
    height: 70px;
  }
  .cid-tmS6sNKHVD .navbar.opened {
    height: auto;
  }
  .cid-tmS6sNKHVD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tmSzZ2G2Jb {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmSzZ2G2Jb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmSzZ2G2Jb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmSzZ2G2Jb .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tmSzZ2G2Jb .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
  background-color: transparent;
}
.cid-tmSzZ2G2Jb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tmSzZ2G2Jb .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tmSzZ2G2Jb .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tmSzZ2G2Jb .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tmSzZ2G2Jb .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tmSzZ2G2Jb .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tmSzZ2G2Jb .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmSzZ2G2Jb .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tmSzZ2G2Jb .card-title {
  color: #7f2200;
}
.cid-tmSzZ4n4LH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmSzZ4n4LH .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmSzZ4n4LH .mbr-section-subtitle {
  color: #be2d00;
}
.cid-tmSzZ4R0hc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
.cid-tmSzZ4R0hc img,
.cid-tmSzZ4R0hc .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tmSzZ4R0hc .item:focus,
.cid-tmSzZ4R0hc span:focus {
  outline: none;
}
.cid-tmSzZ4R0hc .item-wrapper {
  position: relative;
}
.cid-tmSzZ4R0hc .slide-content {
  position: relative;
  border-radius: 4px;
  background: #efefef;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tmSzZ4R0hc .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tmSzZ4R0hc .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tmSzZ4R0hc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tmSzZ4R0hc .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tmSzZ4R0hc .mbr-text,
.cid-tmSzZ4R0hc .mbr-section-btn {
  text-align: left;
}
.cid-tmSzZ4R0hc .item-title {
  text-align: left;
}
.cid-tmSzZ4R0hc .item-subtitle {
  text-align: left;
}
.cid-tmSzZ4R0hc .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tmSzZ4R0hc .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tmSzZ4R0hc .embla__button--next,
.cid-tmSzZ4R0hc .embla__button--prev {
  display: flex;
}
.cid-tmSzZ4R0hc .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;
}
.cid-tmSzZ4R0hc .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tmSzZ4R0hc .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tmSzZ4R0hc .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmSzZ4R0hc .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tmSzZ4R0hc .embla__button {
    top: auto;
  }
}
.cid-tmSzZ4R0hc .embla {
  position: relative;
  width: 100%;
}
.cid-tmSzZ4R0hc .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tmSzZ4R0hc .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tmSzZ4R0hc .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tmSzZ4R0hc .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tmSVJXI71I {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
.cid-tmSVJXI71I img,
.cid-tmSVJXI71I .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tmSVJXI71I .item:focus,
.cid-tmSVJXI71I span:focus {
  outline: none;
}
.cid-tmSVJXI71I .item-wrapper {
  position: relative;
}
.cid-tmSVJXI71I .slide-content {
  position: relative;
  border-radius: 4px;
  background: #efefef;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tmSVJXI71I .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tmSVJXI71I .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tmSVJXI71I .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tmSVJXI71I .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tmSVJXI71I .mbr-text,
.cid-tmSVJXI71I .mbr-section-btn {
  text-align: left;
}
.cid-tmSVJXI71I .item-title {
  text-align: left;
}
.cid-tmSVJXI71I .item-subtitle {
  text-align: left;
}
.cid-tmSVJXI71I .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tmSVJXI71I .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tmSVJXI71I .embla__button--next,
.cid-tmSVJXI71I .embla__button--prev {
  display: flex;
}
.cid-tmSVJXI71I .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;
}
.cid-tmSVJXI71I .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tmSVJXI71I .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tmSVJXI71I .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmSVJXI71I .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tmSVJXI71I .embla__button {
    top: auto;
  }
}
.cid-tmSVJXI71I .embla {
  position: relative;
  width: 100%;
}
.cid-tmSVJXI71I .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tmSVJXI71I .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tmSVJXI71I .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tmSVJXI71I .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tmSzZ9feow {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmSzZ9feow .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmSzZ9BOth {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-tmSzZ9BOth img,
.cid-tmSzZ9BOth .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tmSzZ9BOth .item:focus,
.cid-tmSzZ9BOth span:focus {
  outline: none;
}
.cid-tmSzZ9BOth .item-wrapper {
  position: relative;
}
.cid-tmSzZ9BOth .slide-content {
  position: relative;
  border-radius: 4px;
  background: #efefef;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tmSzZ9BOth .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tmSzZ9BOth .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-tmSzZ9BOth .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tmSzZ9BOth .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tmSzZ9BOth .mbr-text,
.cid-tmSzZ9BOth .mbr-section-btn {
  text-align: left;
}
.cid-tmSzZ9BOth .item-title {
  text-align: left;
}
.cid-tmSzZ9BOth .item-subtitle {
  text-align: left;
}
.cid-tmSzZ9BOth .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tmSzZ9BOth .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tmSzZ9BOth .embla__button--next,
.cid-tmSzZ9BOth .embla__button--prev {
  display: flex;
}
.cid-tmSzZ9BOth .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;
}
.cid-tmSzZ9BOth .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tmSzZ9BOth .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tmSzZ9BOth .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmSzZ9BOth .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tmSzZ9BOth .embla__button {
    top: auto;
  }
}
.cid-tmSzZ9BOth .embla {
  position: relative;
  width: 100%;
}
.cid-tmSzZ9BOth .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tmSzZ9BOth .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tmSzZ9BOth .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tmSzZ9BOth .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tmSzZgUscI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #7f2200;
}
.cid-tmSzZgUscI .mbr-text {
  color: #7f2200;
  text-align: center;
}
.cid-tmSzZhocbK {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmSzZhocbK .mbr-text {
  text-align: center;
  color: #7f2200;
}
.cid-tmSzZhTSKj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tmSzZhTSKj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmSzZhTSKj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmSzZhTSKj .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tmSzZhTSKj .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tmSzZhTSKj .row {
    text-align: center;
  }
  .cid-tmSzZhTSKj .row > div {
    margin: auto;
  }
  .cid-tmSzZhTSKj .social-row {
    justify-content: center;
  }
}
.cid-tmSzZhTSKj .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tmSzZhTSKj .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tmSzZhTSKj .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmSzZhTSKj .list {
    margin-bottom: 0rem;
  }
}
.cid-tmSzZhTSKj .mbr-text {
  color: #bbbbbb;
}
.cid-tmSzZhTSKj .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tmSzZhTSKj .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tmSzZhTSKj div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tmSzZhTSKj .mbr-section-subtitle {
  color: #7f2200;
}
.cid-tmSzZhTSKj .copyright {
  color: #be2d00;
}
.cid-tmSzZiI0Pa {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #7f2200;
}
.cid-tmSzZiI0Pa .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-tmSzZj6dtZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tmSzZj6dtZ nav.navbar {
  position: fixed;
}
.cid-tmSzZj6dtZ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmSzZj6dtZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tmSzZj6dtZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tmSzZj6dtZ .dropdown-item:hover,
.cid-tmSzZj6dtZ .dropdown-item:focus {
  background: #7f2200 !important;
  color: white !important;
}
.cid-tmSzZj6dtZ .dropdown-item:hover span {
  color: white;
}
.cid-tmSzZj6dtZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tmSzZj6dtZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tmSzZj6dtZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tmSzZj6dtZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tmSzZj6dtZ .nav-link {
  position: relative;
}
.cid-tmSzZj6dtZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tmSzZj6dtZ .container {
    flex-wrap: nowrap;
  }
}
.cid-tmSzZj6dtZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tmSzZj6dtZ .dropdown-menu,
.cid-tmSzZj6dtZ .navbar.opened {
  background: #7f2200 !important;
}
.cid-tmSzZj6dtZ .nav-item:focus,
.cid-tmSzZj6dtZ .nav-link:focus {
  outline: none;
}
.cid-tmSzZj6dtZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tmSzZj6dtZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tmSzZj6dtZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tmSzZj6dtZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmSzZj6dtZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tmSzZj6dtZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tmSzZj6dtZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #7f2200;
}
.cid-tmSzZj6dtZ .navbar.opened {
  transition: all 0.3s;
}
.cid-tmSzZj6dtZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tmSzZj6dtZ .navbar .navbar-logo img {
  width: auto;
}
.cid-tmSzZj6dtZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tmSzZj6dtZ .navbar.collapsed {
  justify-content: center;
}
.cid-tmSzZj6dtZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tmSzZj6dtZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tmSzZj6dtZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tmSzZj6dtZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tmSzZj6dtZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tmSzZj6dtZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tmSzZj6dtZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tmSzZj6dtZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tmSzZj6dtZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tmSzZj6dtZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tmSzZj6dtZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tmSzZj6dtZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tmSzZj6dtZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tmSzZj6dtZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tmSzZj6dtZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tmSzZj6dtZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tmSzZj6dtZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tmSzZj6dtZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tmSzZj6dtZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tmSzZj6dtZ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tmSzZj6dtZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tmSzZj6dtZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tmSzZj6dtZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tmSzZj6dtZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tmSzZj6dtZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tmSzZj6dtZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tmSzZj6dtZ .dropdown-item.active,
.cid-tmSzZj6dtZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tmSzZj6dtZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tmSzZj6dtZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tmSzZj6dtZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tmSzZj6dtZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7f2200;
}
.cid-tmSzZj6dtZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tmSzZj6dtZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tmSzZj6dtZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tmSzZj6dtZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tmSzZj6dtZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tmSzZj6dtZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-tmSzZj6dtZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tmSzZj6dtZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmSzZj6dtZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmSzZj6dtZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tmSzZj6dtZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmSzZj6dtZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tmSzZj6dtZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tmSzZj6dtZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmSzZj6dtZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tmSzZj6dtZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tmSzZj6dtZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tmSzZj6dtZ .navbar {
    height: 70px;
  }
  .cid-tmSzZj6dtZ .navbar.opened {
    height: auto;
  }
  .cid-tmSzZj6dtZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tmO96Bv5vI {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmO96Bv5vI .mbr-text {
  color: #7f2200;
  text-align: left;
}
.cid-tmO983v2BY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmO983v2BY .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-tmO983v2BY .mbr-section-subtitle {
  color: #be2d00;
}
.cid-tmO90yS6Qk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #7f2200;
}
.cid-tmO90yS6Qk .mbr-text {
  color: #7f2200;
  text-align: center;
}
.cid-tmO90wBmcq {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmO90wBmcq .mbr-text {
  text-align: center;
  color: #7f2200;
}
.cid-tmO90x2g1r {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tmO90x2g1r .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmO90x2g1r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmO90x2g1r .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tmO90x2g1r .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tmO90x2g1r .row {
    text-align: center;
  }
  .cid-tmO90x2g1r .row > div {
    margin: auto;
  }
  .cid-tmO90x2g1r .social-row {
    justify-content: center;
  }
}
.cid-tmO90x2g1r .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tmO90x2g1r .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tmO90x2g1r .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmO90x2g1r .list {
    margin-bottom: 0rem;
  }
}
.cid-tmO90x2g1r .mbr-text {
  color: #bbbbbb;
}
.cid-tmO90x2g1r .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tmO90x2g1r .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tmO90x2g1r div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tmO90x2g1r .mbr-section-subtitle {
  color: #7f2200;
}
.cid-tmO90x2g1r .copyright {
  color: #be2d00;
}
.cid-tmO90xT6wC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #7f2200;
}
.cid-tmO90xT6wC .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-tmO90yh069 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tmO90yh069 nav.navbar {
  position: fixed;
}
.cid-tmO90yh069 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmO90yh069 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tmO90yh069 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tmO90yh069 .dropdown-item:hover,
.cid-tmO90yh069 .dropdown-item:focus {
  background: #7f2200 !important;
  color: white !important;
}
.cid-tmO90yh069 .dropdown-item:hover span {
  color: white;
}
.cid-tmO90yh069 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tmO90yh069 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tmO90yh069 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tmO90yh069 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tmO90yh069 .nav-link {
  position: relative;
}
.cid-tmO90yh069 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tmO90yh069 .container {
    flex-wrap: nowrap;
  }
}
.cid-tmO90yh069 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tmO90yh069 .dropdown-menu,
.cid-tmO90yh069 .navbar.opened {
  background: #7f2200 !important;
}
.cid-tmO90yh069 .nav-item:focus,
.cid-tmO90yh069 .nav-link:focus {
  outline: none;
}
.cid-tmO90yh069 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tmO90yh069 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tmO90yh069 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tmO90yh069 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmO90yh069 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tmO90yh069 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tmO90yh069 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #7f2200;
}
.cid-tmO90yh069 .navbar.opened {
  transition: all 0.3s;
}
.cid-tmO90yh069 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tmO90yh069 .navbar .navbar-logo img {
  width: auto;
}
.cid-tmO90yh069 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tmO90yh069 .navbar.collapsed {
  justify-content: center;
}
.cid-tmO90yh069 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tmO90yh069 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tmO90yh069 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tmO90yh069 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tmO90yh069 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tmO90yh069 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tmO90yh069 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tmO90yh069 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tmO90yh069 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tmO90yh069 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tmO90yh069 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tmO90yh069 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tmO90yh069 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tmO90yh069 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tmO90yh069 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tmO90yh069 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tmO90yh069 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tmO90yh069 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tmO90yh069 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tmO90yh069 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tmO90yh069 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tmO90yh069 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tmO90yh069 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tmO90yh069 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tmO90yh069 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tmO90yh069 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tmO90yh069 .dropdown-item.active,
.cid-tmO90yh069 .dropdown-item:active {
  background-color: transparent;
}
.cid-tmO90yh069 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tmO90yh069 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tmO90yh069 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tmO90yh069 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7f2200;
}
.cid-tmO90yh069 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tmO90yh069 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tmO90yh069 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tmO90yh069 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tmO90yh069 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tmO90yh069 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-tmO90yh069 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tmO90yh069 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmO90yh069 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmO90yh069 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tmO90yh069 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmO90yh069 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tmO90yh069 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tmO90yh069 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmO90yh069 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tmO90yh069 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tmO90yh069 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tmO90yh069 .navbar {
    height: 70px;
  }
  .cid-tmO90yh069 .navbar.opened {
    height: auto;
  }
  .cid-tmO90yh069 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tmMRNhSwjk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mypic-2000x859.png");
}
.cid-tmMRNhSwjk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmMRNhSwjk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmMRNhSwjk .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tmMRNhSwjk .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tmMRNhSwjk .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tmMRNhSwjk .text-wrapper {
    padding: 0 2rem;
    padding: 0 4rem;
  }
}
@media (max-width: 768px) {
  .cid-tmMRNhSwjk .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tmMRNhSwjk .mbr-section-title {
  color: #7f2200;
}
.cid-tmMRNhSwjk .mbr-text,
.cid-tmMRNhSwjk .mbr-section-btn {
  color: #7f2200;
}
.cid-tmNaV4it9n {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #7f2200;
}
.cid-tmNaV4it9n .mbr-text {
  color: #be2d00;
  text-align: center;
}
.cid-tmNaYoirko {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmNaYoirko .mbr-text {
  color: #7f2200;
  text-align: center;
}
.cid-tmNl0SjERp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1284.jpg");
}
.cid-tmNl0SjERp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmNl0SjERp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmNl0SjERp .img-wrapper {
  text-align: center;
}
.cid-tmNl0SjERp img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-tmNl0SjERp .row {
  align-items: flex-start;
}
.cid-tmNl0SjERp .card-wrapper {
  border-radius: 4px;
  background: #efefef;
}
@media (max-width: 992px) {
  .cid-tmNl0SjERp .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-tmNl0SjERp .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tmNl0SjERp .card-wrapper {
    padding: 1rem;
  }
}
.cid-tmNl0SjERp .card-title {
  color: #7f2200;
}
.cid-tmNl0SjERp .mbr-text,
.cid-tmNl0SjERp .mbr-section-btn {
  color: #353535;
}
.cid-tmNb4yfrmD {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmNb4yfrmD .mbr-text {
  color: #7f2200;
  text-align: center;
}
.cid-tmNulUUzKv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1272.jpg");
}
.cid-tmNulUUzKv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmNulUUzKv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmNulUUzKv .img-wrapper {
  text-align: center;
}
.cid-tmNulUUzKv img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
}
.cid-tmNulUUzKv .row {
  align-items: flex-start;
}
.cid-tmNulUUzKv .card-wrapper {
  border-radius: 4px;
  background: #efefef;
}
@media (max-width: 992px) {
  .cid-tmNulUUzKv .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-tmNulUUzKv .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tmNulUUzKv .card-wrapper {
    padding: 1rem;
  }
}
.cid-tmNulUUzKv .card-title {
  color: #7f2200;
}
.cid-tmNulUUzKv .mbr-text,
.cid-tmNulUUzKv .mbr-section-btn {
  color: #353535;
}
.cid-tmNVit2MkT {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmNVit2MkT .mbr-text {
  color: #7f2200;
  text-align: center;
}
.cid-tmNX4a895D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmNX4a895D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmNX4a895D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmNX4a895D .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-tmNX4a895D .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tmNX4a895D .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tmNX4a895D .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmNX4a895D .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tmNX4a895D .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tmNX4a895D .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tmNX4a895D .card-title {
  color: #7f2200;
}
.cid-tmNYNzbNoR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tmNYNzbNoR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmNYNzbNoR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmNYNzbNoR .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-tmNYNzbNoR .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tmNYNzbNoR .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tmNYNzbNoR .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmNYNzbNoR .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tmNYNzbNoR .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tmNYNzbNoR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tmNYNzbNoR .card-title {
  color: #7f2200;
}
.cid-tnm0NJtlZX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tnm0NJtlZX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tnm0NJtlZX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tnm0NJtlZX .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-tnm0NJtlZX .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tnm0NJtlZX .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tnm0NJtlZX .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tnm0NJtlZX .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tnm0NJtlZX .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tnm0NJtlZX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tnm0NJtlZX .card-title {
  color: #7f2200;
}
.cid-tnm0QrAFFb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tnm0QrAFFb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tnm0QrAFFb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tnm0QrAFFb .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-tnm0QrAFFb .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tnm0QrAFFb .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tnm0QrAFFb .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tnm0QrAFFb .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tnm0QrAFFb .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tnm0QrAFFb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tnm0QrAFFb .card-title {
  color: #7f2200;
}
.cid-tnm0RYRlar {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tnm0RYRlar .mbr-fallback-image.disabled {
  display: none;
}
.cid-tnm0RYRlar .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tnm0RYRlar .content-wrapper {
  background: #efefef;
}
@media (max-width: 991px) {
  .cid-tnm0RYRlar .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tnm0RYRlar .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tnm0RYRlar .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tnm0RYRlar .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tnm0RYRlar .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tnm0RYRlar .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tnm0RYRlar .card-title {
  color: #7f2200;
}
.cid-tmN9ts6oWd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #7f2200;
}
.cid-tmN9ts6oWd .mbr-text {
  color: #7f2200;
  text-align: center;
}
.cid-tmN9FnUoti {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmN9FnUoti .mbr-text {
  text-align: center;
  color: #7f2200;
}
.cid-tmN6iRMAMH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tmN6iRMAMH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmN6iRMAMH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmN6iRMAMH .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tmN6iRMAMH .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tmN6iRMAMH .row {
    text-align: center;
  }
  .cid-tmN6iRMAMH .row > div {
    margin: auto;
  }
  .cid-tmN6iRMAMH .social-row {
    justify-content: center;
  }
}
.cid-tmN6iRMAMH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tmN6iRMAMH .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tmN6iRMAMH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tmN6iRMAMH .list {
    margin-bottom: 0rem;
  }
}
.cid-tmN6iRMAMH .mbr-text {
  color: #bbbbbb;
}
.cid-tmN6iRMAMH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tmN6iRMAMH .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tmN6iRMAMH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tmN6iRMAMH .mbr-section-subtitle {
  color: #7f2200;
}
.cid-tmN6iRMAMH .copyright {
  color: #be2d00;
}
.cid-tmNTT4Y330 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #7f2200;
}
.cid-tmNTT4Y330 .mbr-text {
  color: #bbbbbb;
  text-align: center;
}
.cid-tmO4oXHpAZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tmO4oXHpAZ nav.navbar {
  position: fixed;
}
.cid-tmO4oXHpAZ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmO4oXHpAZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tmO4oXHpAZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tmO4oXHpAZ .dropdown-item:hover,
.cid-tmO4oXHpAZ .dropdown-item:focus {
  background: #7f2200 !important;
  color: white !important;
}
.cid-tmO4oXHpAZ .dropdown-item:hover span {
  color: white;
}
.cid-tmO4oXHpAZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tmO4oXHpAZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tmO4oXHpAZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tmO4oXHpAZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tmO4oXHpAZ .nav-link {
  position: relative;
}
.cid-tmO4oXHpAZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tmO4oXHpAZ .container {
    flex-wrap: nowrap;
  }
}
.cid-tmO4oXHpAZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tmO4oXHpAZ .dropdown-menu,
.cid-tmO4oXHpAZ .navbar.opened {
  background: #7f2200 !important;
}
.cid-tmO4oXHpAZ .nav-item:focus,
.cid-tmO4oXHpAZ .nav-link:focus {
  outline: none;
}
.cid-tmO4oXHpAZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tmO4oXHpAZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tmO4oXHpAZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tmO4oXHpAZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tmO4oXHpAZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tmO4oXHpAZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tmO4oXHpAZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #7f2200;
}
.cid-tmO4oXHpAZ .navbar.opened {
  transition: all 0.3s;
}
.cid-tmO4oXHpAZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tmO4oXHpAZ .navbar .navbar-logo img {
  width: auto;
}
.cid-tmO4oXHpAZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tmO4oXHpAZ .navbar.collapsed {
  justify-content: center;
}
.cid-tmO4oXHpAZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tmO4oXHpAZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tmO4oXHpAZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tmO4oXHpAZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tmO4oXHpAZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tmO4oXHpAZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tmO4oXHpAZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tmO4oXHpAZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tmO4oXHpAZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tmO4oXHpAZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tmO4oXHpAZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tmO4oXHpAZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tmO4oXHpAZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tmO4oXHpAZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tmO4oXHpAZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tmO4oXHpAZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tmO4oXHpAZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tmO4oXHpAZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tmO4oXHpAZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tmO4oXHpAZ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tmO4oXHpAZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tmO4oXHpAZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tmO4oXHpAZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tmO4oXHpAZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tmO4oXHpAZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tmO4oXHpAZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tmO4oXHpAZ .dropdown-item.active,
.cid-tmO4oXHpAZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tmO4oXHpAZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tmO4oXHpAZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tmO4oXHpAZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tmO4oXHpAZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7f2200;
}
.cid-tmO4oXHpAZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tmO4oXHpAZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tmO4oXHpAZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tmO4oXHpAZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tmO4oXHpAZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tmO4oXHpAZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-tmO4oXHpAZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tmO4oXHpAZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmO4oXHpAZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tmO4oXHpAZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tmO4oXHpAZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmO4oXHpAZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tmO4oXHpAZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tmO4oXHpAZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tmO4oXHpAZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tmO4oXHpAZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tmO4oXHpAZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tmO4oXHpAZ .navbar {
    height: 70px;
  }
  .cid-tmO4oXHpAZ .navbar.opened {
    height: auto;
  }
  .cid-tmO4oXHpAZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
