.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Work Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.4rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((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: #5c1f3d !important;
}
.bg-success {
  background-color: #fff7d4 !important;
}
.bg-info {
  background-color: #80385c !important;
}
.bg-warning {
  background-color: #fffef0 !important;
}
.bg-danger {
  background-color: #49351b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #5c1f3d !important;
  border-color: #5c1f3d !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: #1b0912 !important;
  border-color: #1b0912 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1b0912 !important;
  border-color: #1b0912 !important;
}
.btn-secondary,
.btn-secondary: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-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.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-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-info,
.btn-info:active {
  background-color: #80385c !important;
  border-color: #80385c !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: #441e31 !important;
  border-color: #441e31 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #441e31 !important;
  border-color: #441e31 !important;
}
.btn-success,
.btn-success:active {
  background-color: #fff7d4 !important;
  border-color: #fff7d4 !important;
  color: #d4ad00 !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: #7d6600 !important;
  background-color: #ffe77d !important;
  border-color: #ffe77d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #d4ad00 !important;
  background-color: #ffe77d !important;
  border-color: #ffe77d !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fffef0 !important;
  border-color: #fffef0 !important;
  color: #f0e000 !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: #998f00 !important;
  background-color: #fff899 !important;
  border-color: #fff899 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #f0e000 !important;
  background-color: #fff899 !important;
  border-color: #fff899 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #49351b !important;
  border-color: #49351b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #0a0704 !important;
  border-color: #0a0704 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0a0704 !important;
  border-color: #0a0704 !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: #5c1f3d;
  color: #5c1f3d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #1b0912 !important;
  background-color: transparent!important;
  border-color: #1b0912 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #5c1f3d !important;
  border-color: #5c1f3d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #80385c;
  color: #80385c;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #441e31 !important;
  background-color: transparent!important;
  border-color: #441e31 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #80385c !important;
  border-color: #80385c !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #fff7d4;
  color: #fff7d4;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffe77d !important;
  background-color: transparent!important;
  border-color: #ffe77d !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #d4ad00 !important;
  background-color: #fff7d4 !important;
  border-color: #fff7d4 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #fffef0;
  color: #fffef0;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #fff899 !important;
  background-color: transparent!important;
  border-color: #fff899 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #f0e000 !important;
  background-color: #fffef0 !important;
  border-color: #fffef0 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #49351b;
  color: #49351b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #0a0704 !important;
  background-color: transparent!important;
  border-color: #0a0704 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #49351b !important;
  border-color: #49351b !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: #5c1f3d !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #fff7d4 !important;
}
.text-info {
  color: #80385c !important;
}
.text-warning {
  color: #fffef0 !important;
}
.text-danger {
  color: #49351b !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #10050a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #ffe46e !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #391929 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #fff78a !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !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: #5c1f3d;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #80385c;
}
.alert-warning {
  background-color: #fffef0;
}
.alert-danger {
  background-color: #49351b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #5c1f3d;
  border-color: #5c1f3d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #5c1f3d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #bb3f7c;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c3759c;
}
.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: #ceaa7b;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #5c1f3d !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #5c1f3d;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #5c1f3d;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #5c1f3d;
}
.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: #5c1f3d;
  border-bottom-color: #5c1f3d;
}
.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: #5c1f3d !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ffffff !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='%235c1f3d' %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-uHo7Nch5cz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHo7Nch5cz .display-7 {
  font-size: 1.3rem;
}
.cid-uHo7Nch5cz .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHo7Nch5cz .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHo7Nch5cz .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHo7Nch5cz.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uHo7Nch5cz.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHo7Nch5cz.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uHo7Nch5cz .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHo7Nch5cz ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uHo7Nch5cz .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uHo7Nch5cz .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHo7Nch5cz .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHo7Nch5cz .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHo7Nch5cz .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHo7Nch5cz .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHo7Nch5cz .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHo7Nch5cz .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uHo7Nch5cz .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHo7Nch5cz .navbar.opened {
  transition: all .3s;
}
.cid-uHo7Nch5cz .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHo7Nch5cz .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uHo7Nch5cz .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHo7Nch5cz .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHo7Nch5cz .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHo7Nch5cz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHo7Nch5cz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHo7Nch5cz .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHo7Nch5cz .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHo7Nch5cz .navbar-caption {
  padding-right: 1rem;
}
.cid-uHo7Nch5cz .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHo7Nch5cz .nav-item:focus,
.cid-uHo7Nch5cz .nav-link:focus {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHo7Nch5cz .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHo7Nch5cz .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHo7Nch5cz .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHo7Nch5cz .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown-item.active,
.cid-uHo7Nch5cz .dropdown-item:active {
  background-color: transparent;
}
.cid-uHo7Nch5cz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHo7Nch5cz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHo7Nch5cz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHo7Nch5cz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHo7Nch5cz a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHo7Nch5cz .navbar-brand span {
  display: inline-block;
}
.cid-uHo7Nch5cz .navbar-brand a {
  font-weight: 550;
}
.cid-uHo7Nch5cz .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHo7Nch5cz .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHo7Nch5cz .btn .mbr-iconfont,
.cid-uHo7Nch5cz .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uHo7Nch5cz .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uHo7Nch5cz .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHo7Nch5cz .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uHo7Nch5cz .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHo7Nch5cz img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHo7Nch5cz .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHo7Nch5cz .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uHo7Nch5cz .socicon {
  line-height: inherit;
}
.cid-uHo7Nch5cz .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-toKfAW4u9T {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-toKfAW4u9T .mbr-fallback-image.disabled {
  display: none;
}
.cid-toKfAW4u9T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toKfAW4u9T .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-toKfAW4u9T .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-toKfAW4u9T .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-toKfAWphoU {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-toKfAWphoU .mbr-fallback-image.disabled {
  display: none;
}
.cid-toKfAWphoU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-toKfAWphoU .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-toKfAWphoU img {
  width: 100%;
  padding: 0;
}
.cid-toKfAWphoU .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-toKfAWphoU img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-toKfAWphoU .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-toKfAWphoU .mbr-description {
  text-align: center;
}
.cid-toKfAWphoU .mbr-text {
  color: #000000;
}
.cid-toKfAWphoU .mbr-section-title {
  color: #000000;
}
.cid-toKfAWphoU .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-toKfAWphoU .p-cofesub {
  color: #736451;
}
.cid-toKfAWphoU ul.disc {
  list-style: disc;
}
.cid-toKfAWphoU li.disc {
  position: relative;
  padding-left: 0;
}
.cid-toKfAWphoU ul.decimal {
  list-style: decimal;
}
.cid-toKfAWphoU li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-toKfAWphoU ul.star {
  list-style: "* ";
}
.cid-toKfAWphoU li.star {
  position: relative;
  padding-left: 0;
}
.cid-toKfAWphoU ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-toKfAWphoU li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-toKH0dDell {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-toKH0dDell .mbr-section-btn {
  justify-content: flex-start;
  display: flex;
  flex-wrap: wrap;
}
.cid-uFzCrxTM1y {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uFzCrxTM1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFzCrxTM1y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFzCrxTM1y .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uFzCrxTM1y .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uFzCrxTM1y .copyright {
  color: #bbbbbb;
}
.cid-uFzCrxTM1y .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uFzCrxTM1y .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uFzCrxTM1y .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uHo7Nch5cz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHo7Nch5cz .display-7 {
  font-size: 1.3rem;
}
.cid-uHo7Nch5cz .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHo7Nch5cz .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHo7Nch5cz .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHo7Nch5cz.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uHo7Nch5cz.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHo7Nch5cz.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uHo7Nch5cz .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHo7Nch5cz ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uHo7Nch5cz .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uHo7Nch5cz .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHo7Nch5cz .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHo7Nch5cz .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHo7Nch5cz .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHo7Nch5cz .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHo7Nch5cz .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHo7Nch5cz .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uHo7Nch5cz .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHo7Nch5cz .navbar.opened {
  transition: all .3s;
}
.cid-uHo7Nch5cz .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHo7Nch5cz .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uHo7Nch5cz .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHo7Nch5cz .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHo7Nch5cz .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHo7Nch5cz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHo7Nch5cz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHo7Nch5cz .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHo7Nch5cz .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHo7Nch5cz .navbar-caption {
  padding-right: 1rem;
}
.cid-uHo7Nch5cz .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHo7Nch5cz .nav-item:focus,
.cid-uHo7Nch5cz .nav-link:focus {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHo7Nch5cz .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHo7Nch5cz .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHo7Nch5cz .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHo7Nch5cz .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown-item.active,
.cid-uHo7Nch5cz .dropdown-item:active {
  background-color: transparent;
}
.cid-uHo7Nch5cz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHo7Nch5cz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHo7Nch5cz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHo7Nch5cz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHo7Nch5cz a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHo7Nch5cz .navbar-brand span {
  display: inline-block;
}
.cid-uHo7Nch5cz .navbar-brand a {
  font-weight: 550;
}
.cid-uHo7Nch5cz .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHo7Nch5cz .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHo7Nch5cz .btn .mbr-iconfont,
.cid-uHo7Nch5cz .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uHo7Nch5cz .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uHo7Nch5cz .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHo7Nch5cz .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uHo7Nch5cz .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHo7Nch5cz img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHo7Nch5cz .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHo7Nch5cz .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uHo7Nch5cz .socicon {
  line-height: inherit;
}
.cid-uHo7Nch5cz .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-toKIA0Sh4v {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-toKIA0Sh4v .mbr-fallback-image.disabled {
  display: none;
}
.cid-toKIA0Sh4v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toKIA0Sh4v .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-toKIA0Sh4v .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-toKIA0Sh4v .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-toKIA11DKI {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-toKIA11DKI .mbr-fallback-image.disabled {
  display: none;
}
.cid-toKIA11DKI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-toKIA11DKI .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-toKIA11DKI img {
  width: 100%;
  padding: 0;
}
.cid-toKIA11DKI .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-toKIA11DKI img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-toKIA11DKI .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-toKIA11DKI .mbr-description {
  text-align: center;
}
.cid-toKIA11DKI .mbr-text {
  color: #000000;
}
.cid-toKIA11DKI .mbr-section-title {
  color: #000000;
}
.cid-toKIA11DKI .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-toKIA11DKI .p-cofesub {
  color: #736451;
}
.cid-toKIA11DKI ul.disc {
  list-style: disc;
}
.cid-toKIA11DKI li.disc {
  position: relative;
  padding-left: 0;
}
.cid-toKIA11DKI ul.decimal {
  list-style: decimal;
}
.cid-toKIA11DKI li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-toKIA11DKI ul.star {
  list-style: "* ";
}
.cid-toKIA11DKI li.star {
  position: relative;
  padding-left: 0;
}
.cid-toKIA11DKI ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-toKIA11DKI li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-toKIA1ccFr {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-toKIA1ccFr .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uFzCrxTM1y {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uFzCrxTM1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFzCrxTM1y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFzCrxTM1y .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uFzCrxTM1y .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uFzCrxTM1y .copyright {
  color: #bbbbbb;
}
.cid-uFzCrxTM1y .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uFzCrxTM1y .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uFzCrxTM1y .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uHo7Nch5cz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHo7Nch5cz .display-7 {
  font-size: 1.3rem;
}
.cid-uHo7Nch5cz .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHo7Nch5cz .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHo7Nch5cz .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHo7Nch5cz.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uHo7Nch5cz.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHo7Nch5cz.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uHo7Nch5cz .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHo7Nch5cz ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uHo7Nch5cz .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uHo7Nch5cz .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHo7Nch5cz .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHo7Nch5cz .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHo7Nch5cz .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHo7Nch5cz .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHo7Nch5cz .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHo7Nch5cz .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uHo7Nch5cz .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHo7Nch5cz .navbar.opened {
  transition: all .3s;
}
.cid-uHo7Nch5cz .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHo7Nch5cz .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uHo7Nch5cz .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHo7Nch5cz .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHo7Nch5cz .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHo7Nch5cz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHo7Nch5cz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHo7Nch5cz .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHo7Nch5cz .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHo7Nch5cz .navbar-caption {
  padding-right: 1rem;
}
.cid-uHo7Nch5cz .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHo7Nch5cz .nav-item:focus,
.cid-uHo7Nch5cz .nav-link:focus {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHo7Nch5cz .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHo7Nch5cz .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHo7Nch5cz .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHo7Nch5cz .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown-item.active,
.cid-uHo7Nch5cz .dropdown-item:active {
  background-color: transparent;
}
.cid-uHo7Nch5cz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHo7Nch5cz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHo7Nch5cz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHo7Nch5cz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHo7Nch5cz a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHo7Nch5cz .navbar-brand span {
  display: inline-block;
}
.cid-uHo7Nch5cz .navbar-brand a {
  font-weight: 550;
}
.cid-uHo7Nch5cz .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHo7Nch5cz .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHo7Nch5cz .btn .mbr-iconfont,
.cid-uHo7Nch5cz .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uHo7Nch5cz .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uHo7Nch5cz .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHo7Nch5cz .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uHo7Nch5cz .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHo7Nch5cz img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHo7Nch5cz .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHo7Nch5cz .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uHo7Nch5cz .socicon {
  line-height: inherit;
}
.cid-uHo7Nch5cz .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-tp6tX0FHmr {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tp6tX0FHmr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp6tX0FHmr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp6tX0FHmr .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tp6tX0FHmr .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-tp6tX0FHmr .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-tp6tX0PZaF {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tp6tX0PZaF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp6tX0PZaF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tp6tX0PZaF .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tp6tX0PZaF img {
  width: 100%;
  padding: 0;
}
.cid-tp6tX0PZaF .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-tp6tX0PZaF img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-tp6tX0PZaF .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-tp6tX0PZaF .mbr-description {
  text-align: center;
}
.cid-tp6tX0PZaF .mbr-text {
  color: #000000;
}
.cid-tp6tX0PZaF .mbr-section-title {
  color: #000000;
}
.cid-tp6tX0PZaF .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-tp6tX0PZaF .p-cofesub {
  color: #736451;
}
.cid-tp6tX0PZaF ul.disc {
  list-style: disc;
}
.cid-tp6tX0PZaF li.disc {
  position: relative;
  padding-left: 0;
}
.cid-tp6tX0PZaF ul.decimal {
  list-style: decimal;
}
.cid-tp6tX0PZaF li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-tp6tX0PZaF ul.star {
  list-style: "* ";
}
.cid-tp6tX0PZaF li.star {
  position: relative;
  padding-left: 0;
}
.cid-tp6tX0PZaF ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-tp6tX0PZaF li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-tp6tX11gKp {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tp6tX11gKp .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uFzCrxTM1y {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uFzCrxTM1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFzCrxTM1y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFzCrxTM1y .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uFzCrxTM1y .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uFzCrxTM1y .copyright {
  color: #bbbbbb;
}
.cid-uFzCrxTM1y .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uFzCrxTM1y .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uFzCrxTM1y .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uHo7Nch5cz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHo7Nch5cz .display-7 {
  font-size: 1.3rem;
}
.cid-uHo7Nch5cz .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHo7Nch5cz .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHo7Nch5cz .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHo7Nch5cz.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uHo7Nch5cz.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHo7Nch5cz.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uHo7Nch5cz .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHo7Nch5cz ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uHo7Nch5cz .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uHo7Nch5cz .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHo7Nch5cz .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHo7Nch5cz .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHo7Nch5cz .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHo7Nch5cz .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHo7Nch5cz .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHo7Nch5cz .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uHo7Nch5cz .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHo7Nch5cz .navbar.opened {
  transition: all .3s;
}
.cid-uHo7Nch5cz .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHo7Nch5cz .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uHo7Nch5cz .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHo7Nch5cz .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHo7Nch5cz .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHo7Nch5cz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHo7Nch5cz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHo7Nch5cz .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHo7Nch5cz .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHo7Nch5cz .navbar-caption {
  padding-right: 1rem;
}
.cid-uHo7Nch5cz .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHo7Nch5cz .nav-item:focus,
.cid-uHo7Nch5cz .nav-link:focus {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHo7Nch5cz .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHo7Nch5cz .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHo7Nch5cz .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHo7Nch5cz .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown-item.active,
.cid-uHo7Nch5cz .dropdown-item:active {
  background-color: transparent;
}
.cid-uHo7Nch5cz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHo7Nch5cz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHo7Nch5cz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHo7Nch5cz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHo7Nch5cz a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHo7Nch5cz .navbar-brand span {
  display: inline-block;
}
.cid-uHo7Nch5cz .navbar-brand a {
  font-weight: 550;
}
.cid-uHo7Nch5cz .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHo7Nch5cz .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHo7Nch5cz .btn .mbr-iconfont,
.cid-uHo7Nch5cz .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uHo7Nch5cz .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uHo7Nch5cz .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHo7Nch5cz .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uHo7Nch5cz .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHo7Nch5cz img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHo7Nch5cz .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHo7Nch5cz .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uHo7Nch5cz .socicon {
  line-height: inherit;
}
.cid-uHo7Nch5cz .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-tp6zYNuYRl {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tp6zYNuYRl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp6zYNuYRl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp6zYNuYRl .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tp6zYNuYRl .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-tp6zYNuYRl .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-tp6zYNKLCJ {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tp6zYNKLCJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp6zYNKLCJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tp6zYNKLCJ .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tp6zYNKLCJ img {
  width: 100%;
  padding: 0;
}
.cid-tp6zYNKLCJ .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-tp6zYNKLCJ img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-tp6zYNKLCJ .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-tp6zYNKLCJ .mbr-description {
  text-align: center;
}
.cid-tp6zYNKLCJ .mbr-text {
  color: #000000;
}
.cid-tp6zYNKLCJ .mbr-section-title {
  color: #000000;
}
.cid-tp6zYNKLCJ .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-tp6zYNKLCJ .p-cofesub {
  color: #736451;
}
.cid-tp6zYNKLCJ ul.disc {
  list-style: disc;
}
.cid-tp6zYNKLCJ li.disc {
  position: relative;
  padding-left: 0;
}
.cid-tp6zYNKLCJ ul.decimal {
  list-style: decimal;
}
.cid-tp6zYNKLCJ li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-tp6zYNKLCJ ul.star {
  list-style: "* ";
}
.cid-tp6zYNKLCJ li.star {
  position: relative;
  padding-left: 0;
}
.cid-tp6zYNKLCJ ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-tp6zYNKLCJ li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-tp6zYNYAnt {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tp6zYNYAnt .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uFzCrxTM1y {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uFzCrxTM1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFzCrxTM1y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFzCrxTM1y .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uFzCrxTM1y .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uFzCrxTM1y .copyright {
  color: #bbbbbb;
}
.cid-uFzCrxTM1y .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uFzCrxTM1y .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uFzCrxTM1y .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uHo7Nch5cz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHo7Nch5cz .display-7 {
  font-size: 1.3rem;
}
.cid-uHo7Nch5cz .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHo7Nch5cz .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHo7Nch5cz .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHo7Nch5cz.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uHo7Nch5cz.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHo7Nch5cz.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uHo7Nch5cz .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHo7Nch5cz ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uHo7Nch5cz .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uHo7Nch5cz .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHo7Nch5cz .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHo7Nch5cz .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHo7Nch5cz .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHo7Nch5cz .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHo7Nch5cz .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHo7Nch5cz .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uHo7Nch5cz .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHo7Nch5cz .navbar.opened {
  transition: all .3s;
}
.cid-uHo7Nch5cz .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHo7Nch5cz .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uHo7Nch5cz .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHo7Nch5cz .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHo7Nch5cz .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHo7Nch5cz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHo7Nch5cz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHo7Nch5cz .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHo7Nch5cz .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHo7Nch5cz .navbar-caption {
  padding-right: 1rem;
}
.cid-uHo7Nch5cz .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHo7Nch5cz .nav-item:focus,
.cid-uHo7Nch5cz .nav-link:focus {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHo7Nch5cz .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHo7Nch5cz .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHo7Nch5cz .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHo7Nch5cz .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown-item.active,
.cid-uHo7Nch5cz .dropdown-item:active {
  background-color: transparent;
}
.cid-uHo7Nch5cz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHo7Nch5cz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHo7Nch5cz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHo7Nch5cz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHo7Nch5cz a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHo7Nch5cz .navbar-brand span {
  display: inline-block;
}
.cid-uHo7Nch5cz .navbar-brand a {
  font-weight: 550;
}
.cid-uHo7Nch5cz .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHo7Nch5cz .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHo7Nch5cz .btn .mbr-iconfont,
.cid-uHo7Nch5cz .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uHo7Nch5cz .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uHo7Nch5cz .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHo7Nch5cz .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uHo7Nch5cz .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHo7Nch5cz img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHo7Nch5cz .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHo7Nch5cz .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uHo7Nch5cz .socicon {
  line-height: inherit;
}
.cid-uHo7Nch5cz .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-tp6OVpCbMB {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tp6OVpCbMB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp6OVpCbMB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp6OVpCbMB .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tp6OVpCbMB .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-tp6OVpCbMB .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-tp6OVpQU1b {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tp6OVpQU1b .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp6OVpQU1b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tp6OVpQU1b .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tp6OVpQU1b img {
  width: 100%;
  padding: 0;
}
.cid-tp6OVpQU1b .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-tp6OVpQU1b img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-tp6OVpQU1b .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-tp6OVpQU1b .mbr-description {
  text-align: center;
}
.cid-tp6OVpQU1b .mbr-text {
  color: #000000;
}
.cid-tp6OVpQU1b .mbr-section-title {
  color: #000000;
}
.cid-tp6OVpQU1b .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-tp6OVpQU1b .p-cofesub {
  color: #736451;
}
.cid-tp6OVpQU1b ul.disc {
  list-style: disc;
}
.cid-tp6OVpQU1b li.disc {
  position: relative;
  padding-left: 0;
}
.cid-tp6OVpQU1b ul.decimal {
  list-style: decimal;
}
.cid-tp6OVpQU1b li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-tp6OVpQU1b ul.star {
  list-style: "* ";
}
.cid-tp6OVpQU1b li.star {
  position: relative;
  padding-left: 0;
}
.cid-tp6OVpQU1b ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-tp6OVpQU1b li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-tp6OVq2ihK {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tp6OVq2ihK .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uFzCrxTM1y {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uFzCrxTM1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFzCrxTM1y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFzCrxTM1y .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uFzCrxTM1y .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uFzCrxTM1y .copyright {
  color: #bbbbbb;
}
.cid-uFzCrxTM1y .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uFzCrxTM1y .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uFzCrxTM1y .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uHo7Nch5cz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHo7Nch5cz .display-7 {
  font-size: 1.3rem;
}
.cid-uHo7Nch5cz .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHo7Nch5cz .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHo7Nch5cz .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHo7Nch5cz.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uHo7Nch5cz.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHo7Nch5cz.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uHo7Nch5cz .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHo7Nch5cz ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uHo7Nch5cz .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uHo7Nch5cz .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHo7Nch5cz .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHo7Nch5cz .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHo7Nch5cz .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHo7Nch5cz .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHo7Nch5cz .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHo7Nch5cz .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uHo7Nch5cz .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHo7Nch5cz .navbar.opened {
  transition: all .3s;
}
.cid-uHo7Nch5cz .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHo7Nch5cz .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uHo7Nch5cz .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHo7Nch5cz .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHo7Nch5cz .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHo7Nch5cz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHo7Nch5cz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHo7Nch5cz .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHo7Nch5cz .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHo7Nch5cz .navbar-caption {
  padding-right: 1rem;
}
.cid-uHo7Nch5cz .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHo7Nch5cz .nav-item:focus,
.cid-uHo7Nch5cz .nav-link:focus {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHo7Nch5cz .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHo7Nch5cz .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHo7Nch5cz .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHo7Nch5cz .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown-item.active,
.cid-uHo7Nch5cz .dropdown-item:active {
  background-color: transparent;
}
.cid-uHo7Nch5cz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHo7Nch5cz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHo7Nch5cz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHo7Nch5cz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHo7Nch5cz a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHo7Nch5cz .navbar-brand span {
  display: inline-block;
}
.cid-uHo7Nch5cz .navbar-brand a {
  font-weight: 550;
}
.cid-uHo7Nch5cz .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHo7Nch5cz .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHo7Nch5cz .btn .mbr-iconfont,
.cid-uHo7Nch5cz .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uHo7Nch5cz .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uHo7Nch5cz .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHo7Nch5cz .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uHo7Nch5cz .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHo7Nch5cz img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHo7Nch5cz .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHo7Nch5cz .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uHo7Nch5cz .socicon {
  line-height: inherit;
}
.cid-uHo7Nch5cz .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-tp8eYoGfIC {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tp8eYoGfIC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp8eYoGfIC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tp8eYoGfIC .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tp8eYoGfIC .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-tp8eYoGfIC .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-tp8eYoQeWa {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tp8eYoQeWa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tp8eYoQeWa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tp8eYoQeWa .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tp8eYoQeWa img {
  width: 100%;
  padding: 0;
}
.cid-tp8eYoQeWa .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-tp8eYoQeWa img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-tp8eYoQeWa .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-tp8eYoQeWa .mbr-description {
  text-align: center;
}
.cid-tp8eYoQeWa .mbr-text {
  color: #000000;
}
.cid-tp8eYoQeWa .mbr-section-title {
  color: #000000;
}
.cid-tp8eYoQeWa .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-tp8eYoQeWa .p-cofesub {
  color: #736451;
}
.cid-tp8eYoQeWa ul.disc {
  list-style: disc;
}
.cid-tp8eYoQeWa li.disc {
  position: relative;
  padding-left: 0;
}
.cid-tp8eYoQeWa ul.decimal {
  list-style: decimal;
}
.cid-tp8eYoQeWa li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-tp8eYoQeWa ul.star {
  list-style: "* ";
}
.cid-tp8eYoQeWa li.star {
  position: relative;
  padding-left: 0;
}
.cid-tp8eYoQeWa ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-tp8eYoQeWa li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-tp8eYp0grm {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tp8eYp0grm .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uFzCrxTM1y {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uFzCrxTM1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFzCrxTM1y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFzCrxTM1y .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uFzCrxTM1y .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uFzCrxTM1y .copyright {
  color: #bbbbbb;
}
.cid-uFzCrxTM1y .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uFzCrxTM1y .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uFzCrxTM1y .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uHo7Nch5cz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHo7Nch5cz .display-7 {
  font-size: 1.3rem;
}
.cid-uHo7Nch5cz .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHo7Nch5cz .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHo7Nch5cz .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHo7Nch5cz.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uHo7Nch5cz.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHo7Nch5cz.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uHo7Nch5cz .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHo7Nch5cz ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uHo7Nch5cz .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uHo7Nch5cz .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHo7Nch5cz .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHo7Nch5cz .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHo7Nch5cz .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHo7Nch5cz .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHo7Nch5cz .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHo7Nch5cz .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uHo7Nch5cz .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHo7Nch5cz .navbar.opened {
  transition: all .3s;
}
.cid-uHo7Nch5cz .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHo7Nch5cz .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uHo7Nch5cz .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHo7Nch5cz .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHo7Nch5cz .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHo7Nch5cz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHo7Nch5cz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHo7Nch5cz .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHo7Nch5cz .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHo7Nch5cz .navbar-caption {
  padding-right: 1rem;
}
.cid-uHo7Nch5cz .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHo7Nch5cz .nav-item:focus,
.cid-uHo7Nch5cz .nav-link:focus {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHo7Nch5cz .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHo7Nch5cz .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHo7Nch5cz .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHo7Nch5cz .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown-item.active,
.cid-uHo7Nch5cz .dropdown-item:active {
  background-color: transparent;
}
.cid-uHo7Nch5cz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHo7Nch5cz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHo7Nch5cz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHo7Nch5cz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHo7Nch5cz a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHo7Nch5cz .navbar-brand span {
  display: inline-block;
}
.cid-uHo7Nch5cz .navbar-brand a {
  font-weight: 550;
}
.cid-uHo7Nch5cz .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHo7Nch5cz .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHo7Nch5cz .btn .mbr-iconfont,
.cid-uHo7Nch5cz .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uHo7Nch5cz .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uHo7Nch5cz .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHo7Nch5cz .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uHo7Nch5cz .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHo7Nch5cz img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHo7Nch5cz .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHo7Nch5cz .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uHo7Nch5cz .socicon {
  line-height: inherit;
}
.cid-uHo7Nch5cz .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-tpcjADg4wH {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tpcjADg4wH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpcjADg4wH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpcjADg4wH .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tpcjADg4wH .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-tpcjADg4wH .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-tpcjADvoOE {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tpcjADvoOE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpcjADvoOE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tpcjADvoOE .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tpcjADvoOE img {
  width: 100%;
  padding: 0;
}
.cid-tpcjADvoOE .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-tpcjADvoOE img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-tpcjADvoOE .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-tpcjADvoOE .mbr-description {
  text-align: center;
}
.cid-tpcjADvoOE .mbr-text {
  color: #000000;
}
.cid-tpcjADvoOE .mbr-section-title {
  color: #000000;
}
.cid-tpcjADvoOE .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-tpcjADvoOE .p-cofesub {
  color: #736451;
}
.cid-tpcjADvoOE ul.disc {
  list-style: disc;
}
.cid-tpcjADvoOE li.disc {
  position: relative;
  padding-left: 0;
}
.cid-tpcjADvoOE ul.decimal {
  list-style: decimal;
}
.cid-tpcjADvoOE li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-tpcjADvoOE ul.star {
  list-style: "* ";
}
.cid-tpcjADvoOE li.star {
  position: relative;
  padding-left: 0;
}
.cid-tpcjADvoOE ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-tpcjADvoOE li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-tpcjADIbYD {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tpcjADIbYD .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uFzCrxTM1y {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uFzCrxTM1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFzCrxTM1y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFzCrxTM1y .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uFzCrxTM1y .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uFzCrxTM1y .copyright {
  color: #bbbbbb;
}
.cid-uFzCrxTM1y .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uFzCrxTM1y .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uFzCrxTM1y .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uHo7Nch5cz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHo7Nch5cz .display-7 {
  font-size: 1.3rem;
}
.cid-uHo7Nch5cz .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHo7Nch5cz .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHo7Nch5cz .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHo7Nch5cz.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uHo7Nch5cz.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHo7Nch5cz.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uHo7Nch5cz .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHo7Nch5cz ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uHo7Nch5cz .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uHo7Nch5cz .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHo7Nch5cz .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHo7Nch5cz .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHo7Nch5cz .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHo7Nch5cz .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHo7Nch5cz .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHo7Nch5cz .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uHo7Nch5cz .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHo7Nch5cz .navbar.opened {
  transition: all .3s;
}
.cid-uHo7Nch5cz .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHo7Nch5cz .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uHo7Nch5cz .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHo7Nch5cz .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHo7Nch5cz .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHo7Nch5cz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHo7Nch5cz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHo7Nch5cz .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHo7Nch5cz .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHo7Nch5cz .navbar-caption {
  padding-right: 1rem;
}
.cid-uHo7Nch5cz .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHo7Nch5cz .nav-item:focus,
.cid-uHo7Nch5cz .nav-link:focus {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHo7Nch5cz .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHo7Nch5cz .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHo7Nch5cz .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHo7Nch5cz .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown-item.active,
.cid-uHo7Nch5cz .dropdown-item:active {
  background-color: transparent;
}
.cid-uHo7Nch5cz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHo7Nch5cz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHo7Nch5cz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHo7Nch5cz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHo7Nch5cz a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHo7Nch5cz .navbar-brand span {
  display: inline-block;
}
.cid-uHo7Nch5cz .navbar-brand a {
  font-weight: 550;
}
.cid-uHo7Nch5cz .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHo7Nch5cz .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHo7Nch5cz .btn .mbr-iconfont,
.cid-uHo7Nch5cz .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uHo7Nch5cz .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uHo7Nch5cz .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHo7Nch5cz .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uHo7Nch5cz .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHo7Nch5cz img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHo7Nch5cz .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHo7Nch5cz .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uHo7Nch5cz .socicon {
  line-height: inherit;
}
.cid-uHo7Nch5cz .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-tpcnSwkAFF {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tpcnSwkAFF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpcnSwkAFF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpcnSwkAFF .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tpcnSwkAFF .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-tpcnSwkAFF .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-tpcnSwupvS {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tpcnSwupvS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpcnSwupvS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tpcnSwupvS .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tpcnSwupvS img {
  width: 100%;
  padding: 0;
}
.cid-tpcnSwupvS .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-tpcnSwupvS img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-tpcnSwupvS .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-tpcnSwupvS .mbr-description {
  text-align: center;
}
.cid-tpcnSwupvS .mbr-text {
  color: #000000;
}
.cid-tpcnSwupvS .mbr-section-title {
  color: #000000;
}
.cid-tpcnSwupvS .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-tpcnSwupvS .p-cofesub {
  color: #736451;
}
.cid-tpcnSwupvS ul.disc {
  list-style: disc;
}
.cid-tpcnSwupvS li.disc {
  position: relative;
  padding-left: 0;
}
.cid-tpcnSwupvS ul.decimal {
  list-style: decimal;
}
.cid-tpcnSwupvS li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-tpcnSwupvS ul.star {
  list-style: "* ";
}
.cid-tpcnSwupvS li.star {
  position: relative;
  padding-left: 0;
}
.cid-tpcnSwupvS ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-tpcnSwupvS li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-tpcnSwFATN {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tpcnSwFATN .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uFzCrxTM1y {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uFzCrxTM1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFzCrxTM1y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFzCrxTM1y .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uFzCrxTM1y .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uFzCrxTM1y .copyright {
  color: #bbbbbb;
}
.cid-uFzCrxTM1y .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uFzCrxTM1y .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uFzCrxTM1y .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uHo7Nch5cz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHo7Nch5cz .display-7 {
  font-size: 1.3rem;
}
.cid-uHo7Nch5cz .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHo7Nch5cz .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHo7Nch5cz .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHo7Nch5cz.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uHo7Nch5cz.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHo7Nch5cz.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uHo7Nch5cz .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHo7Nch5cz ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uHo7Nch5cz .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uHo7Nch5cz .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHo7Nch5cz .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHo7Nch5cz .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHo7Nch5cz .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHo7Nch5cz .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHo7Nch5cz .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHo7Nch5cz .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uHo7Nch5cz .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHo7Nch5cz .navbar.opened {
  transition: all .3s;
}
.cid-uHo7Nch5cz .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHo7Nch5cz .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uHo7Nch5cz .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHo7Nch5cz .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHo7Nch5cz .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHo7Nch5cz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHo7Nch5cz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHo7Nch5cz .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHo7Nch5cz .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHo7Nch5cz .navbar-caption {
  padding-right: 1rem;
}
.cid-uHo7Nch5cz .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHo7Nch5cz .nav-item:focus,
.cid-uHo7Nch5cz .nav-link:focus {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHo7Nch5cz .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHo7Nch5cz .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHo7Nch5cz .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHo7Nch5cz .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown-item.active,
.cid-uHo7Nch5cz .dropdown-item:active {
  background-color: transparent;
}
.cid-uHo7Nch5cz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHo7Nch5cz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHo7Nch5cz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHo7Nch5cz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHo7Nch5cz a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHo7Nch5cz .navbar-brand span {
  display: inline-block;
}
.cid-uHo7Nch5cz .navbar-brand a {
  font-weight: 550;
}
.cid-uHo7Nch5cz .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHo7Nch5cz .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHo7Nch5cz .btn .mbr-iconfont,
.cid-uHo7Nch5cz .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uHo7Nch5cz .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uHo7Nch5cz .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHo7Nch5cz .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uHo7Nch5cz .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHo7Nch5cz img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHo7Nch5cz .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHo7Nch5cz .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uHo7Nch5cz .socicon {
  line-height: inherit;
}
.cid-uHo7Nch5cz .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-tpcqAs8hED {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tpcqAs8hED .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpcqAs8hED .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpcqAs8hED .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tpcqAs8hED .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-tpcqAs8hED .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-tpcqAsnyWC {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tpcqAsnyWC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpcqAsnyWC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tpcqAsnyWC .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tpcqAsnyWC img {
  width: 100%;
  padding: 0;
}
.cid-tpcqAsnyWC .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-tpcqAsnyWC img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-tpcqAsnyWC .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-tpcqAsnyWC .mbr-description {
  text-align: center;
}
.cid-tpcqAsnyWC .mbr-text {
  color: #000000;
}
.cid-tpcqAsnyWC .mbr-section-title {
  color: #000000;
}
.cid-tpcqAsnyWC .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-tpcqAsnyWC .p-cofesub {
  color: #736451;
}
.cid-tpcqAsnyWC ul.disc {
  list-style: disc;
}
.cid-tpcqAsnyWC li.disc {
  position: relative;
  padding-left: 0;
}
.cid-tpcqAsnyWC ul.decimal {
  list-style: decimal;
}
.cid-tpcqAsnyWC li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-tpcqAsnyWC ul.star {
  list-style: "* ";
}
.cid-tpcqAsnyWC li.star {
  position: relative;
  padding-left: 0;
}
.cid-tpcqAsnyWC ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-tpcqAsnyWC li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-tpcqAsz8rN {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tpcqAsz8rN .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uFzCrxTM1y {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uFzCrxTM1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFzCrxTM1y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFzCrxTM1y .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uFzCrxTM1y .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uFzCrxTM1y .copyright {
  color: #bbbbbb;
}
.cid-uFzCrxTM1y .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uFzCrxTM1y .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uFzCrxTM1y .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uHo7Nch5cz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHo7Nch5cz .display-7 {
  font-size: 1.3rem;
}
.cid-uHo7Nch5cz .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHo7Nch5cz .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHo7Nch5cz .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHo7Nch5cz.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uHo7Nch5cz.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHo7Nch5cz.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uHo7Nch5cz .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHo7Nch5cz ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uHo7Nch5cz .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uHo7Nch5cz .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHo7Nch5cz .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHo7Nch5cz .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHo7Nch5cz .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHo7Nch5cz .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHo7Nch5cz .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHo7Nch5cz .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uHo7Nch5cz .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHo7Nch5cz .navbar.opened {
  transition: all .3s;
}
.cid-uHo7Nch5cz .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHo7Nch5cz .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uHo7Nch5cz .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHo7Nch5cz .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHo7Nch5cz .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHo7Nch5cz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHo7Nch5cz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHo7Nch5cz .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHo7Nch5cz .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHo7Nch5cz .navbar-caption {
  padding-right: 1rem;
}
.cid-uHo7Nch5cz .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHo7Nch5cz .nav-item:focus,
.cid-uHo7Nch5cz .nav-link:focus {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHo7Nch5cz .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHo7Nch5cz .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHo7Nch5cz .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHo7Nch5cz .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown-item.active,
.cid-uHo7Nch5cz .dropdown-item:active {
  background-color: transparent;
}
.cid-uHo7Nch5cz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHo7Nch5cz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHo7Nch5cz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHo7Nch5cz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHo7Nch5cz a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHo7Nch5cz .navbar-brand span {
  display: inline-block;
}
.cid-uHo7Nch5cz .navbar-brand a {
  font-weight: 550;
}
.cid-uHo7Nch5cz .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHo7Nch5cz .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHo7Nch5cz .btn .mbr-iconfont,
.cid-uHo7Nch5cz .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uHo7Nch5cz .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uHo7Nch5cz .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHo7Nch5cz .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uHo7Nch5cz .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHo7Nch5cz img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHo7Nch5cz .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHo7Nch5cz .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uHo7Nch5cz .socicon {
  line-height: inherit;
}
.cid-uHo7Nch5cz .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-tpcqEDn0AB {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tpcqEDn0AB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpcqEDn0AB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpcqEDn0AB .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tpcqEDn0AB .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-tpcqEDn0AB .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-tpcqEDxppG {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tpcqEDxppG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpcqEDxppG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tpcqEDxppG .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tpcqEDxppG img {
  width: 100%;
  padding: 0;
}
.cid-tpcqEDxppG .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-tpcqEDxppG img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-tpcqEDxppG .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-tpcqEDxppG .mbr-description {
  text-align: center;
}
.cid-tpcqEDxppG .mbr-text {
  color: #000000;
}
.cid-tpcqEDxppG .mbr-section-title {
  color: #000000;
}
.cid-tpcqEDxppG .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-tpcqEDxppG .p-cofesub {
  color: #736451;
}
.cid-tpcqEDxppG ul.disc {
  list-style: disc;
}
.cid-tpcqEDxppG li.disc {
  position: relative;
  padding-left: 0;
}
.cid-tpcqEDxppG ul.decimal {
  list-style: decimal;
}
.cid-tpcqEDxppG li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-tpcqEDxppG ul.star {
  list-style: "* ";
}
.cid-tpcqEDxppG li.star {
  position: relative;
  padding-left: 0;
}
.cid-tpcqEDxppG ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-tpcqEDxppG li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-tpcqEDIys7 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tpcqEDIys7 .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uFzCrxTM1y {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uFzCrxTM1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFzCrxTM1y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFzCrxTM1y .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uFzCrxTM1y .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uFzCrxTM1y .copyright {
  color: #bbbbbb;
}
.cid-uFzCrxTM1y .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uFzCrxTM1y .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uFzCrxTM1y .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uHo7Nch5cz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHo7Nch5cz .display-7 {
  font-size: 1.3rem;
}
.cid-uHo7Nch5cz .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHo7Nch5cz .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHo7Nch5cz .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHo7Nch5cz.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uHo7Nch5cz.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHo7Nch5cz.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uHo7Nch5cz .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHo7Nch5cz ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uHo7Nch5cz .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uHo7Nch5cz .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHo7Nch5cz .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHo7Nch5cz .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHo7Nch5cz .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHo7Nch5cz .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHo7Nch5cz .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHo7Nch5cz .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uHo7Nch5cz .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHo7Nch5cz .navbar.opened {
  transition: all .3s;
}
.cid-uHo7Nch5cz .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHo7Nch5cz .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uHo7Nch5cz .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHo7Nch5cz .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHo7Nch5cz .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHo7Nch5cz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHo7Nch5cz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHo7Nch5cz .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHo7Nch5cz .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHo7Nch5cz .navbar-caption {
  padding-right: 1rem;
}
.cid-uHo7Nch5cz .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHo7Nch5cz .nav-item:focus,
.cid-uHo7Nch5cz .nav-link:focus {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHo7Nch5cz .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHo7Nch5cz .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHo7Nch5cz .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHo7Nch5cz .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown-item.active,
.cid-uHo7Nch5cz .dropdown-item:active {
  background-color: transparent;
}
.cid-uHo7Nch5cz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHo7Nch5cz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHo7Nch5cz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHo7Nch5cz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHo7Nch5cz a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHo7Nch5cz .navbar-brand span {
  display: inline-block;
}
.cid-uHo7Nch5cz .navbar-brand a {
  font-weight: 550;
}
.cid-uHo7Nch5cz .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHo7Nch5cz .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHo7Nch5cz .btn .mbr-iconfont,
.cid-uHo7Nch5cz .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uHo7Nch5cz .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uHo7Nch5cz .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHo7Nch5cz .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uHo7Nch5cz .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHo7Nch5cz img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHo7Nch5cz .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHo7Nch5cz .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uHo7Nch5cz .socicon {
  line-height: inherit;
}
.cid-uHo7Nch5cz .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-tpcqGdAHrl {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tpcqGdAHrl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpcqGdAHrl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpcqGdAHrl .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tpcqGdAHrl .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-tpcqGdAHrl .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-tpcqGdJDuf {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tpcqGdJDuf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpcqGdJDuf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tpcqGdJDuf .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tpcqGdJDuf img {
  width: 100%;
  padding: 0;
}
.cid-tpcqGdJDuf .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-tpcqGdJDuf img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-tpcqGdJDuf .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-tpcqGdJDuf .mbr-description {
  text-align: center;
}
.cid-tpcqGdJDuf .mbr-text {
  color: #000000;
}
.cid-tpcqGdJDuf .mbr-section-title {
  color: #000000;
}
.cid-tpcqGdJDuf .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-tpcqGdJDuf .p-cofesub {
  color: #736451;
}
.cid-tpcqGdJDuf ul.disc {
  list-style: disc;
}
.cid-tpcqGdJDuf li.disc {
  position: relative;
  padding-left: 0;
}
.cid-tpcqGdJDuf ul.decimal {
  list-style: decimal;
}
.cid-tpcqGdJDuf li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-tpcqGdJDuf ul.star {
  list-style: "* ";
}
.cid-tpcqGdJDuf li.star {
  position: relative;
  padding-left: 0;
}
.cid-tpcqGdJDuf ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-tpcqGdJDuf li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-tpcqGdTn0f {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tpcqGdTn0f .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uFzCrxTM1y {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uFzCrxTM1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFzCrxTM1y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFzCrxTM1y .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uFzCrxTM1y .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uFzCrxTM1y .copyright {
  color: #bbbbbb;
}
.cid-uFzCrxTM1y .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uFzCrxTM1y .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uFzCrxTM1y .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uHo7Nch5cz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHo7Nch5cz .display-7 {
  font-size: 1.3rem;
}
.cid-uHo7Nch5cz .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHo7Nch5cz .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHo7Nch5cz .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHo7Nch5cz.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uHo7Nch5cz.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHo7Nch5cz.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uHo7Nch5cz .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHo7Nch5cz ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uHo7Nch5cz .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uHo7Nch5cz .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHo7Nch5cz .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHo7Nch5cz .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHo7Nch5cz .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHo7Nch5cz .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHo7Nch5cz .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHo7Nch5cz .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uHo7Nch5cz .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHo7Nch5cz .navbar.opened {
  transition: all .3s;
}
.cid-uHo7Nch5cz .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHo7Nch5cz .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uHo7Nch5cz .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHo7Nch5cz .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHo7Nch5cz .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHo7Nch5cz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHo7Nch5cz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHo7Nch5cz .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHo7Nch5cz .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHo7Nch5cz .navbar-caption {
  padding-right: 1rem;
}
.cid-uHo7Nch5cz .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHo7Nch5cz .nav-item:focus,
.cid-uHo7Nch5cz .nav-link:focus {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHo7Nch5cz .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHo7Nch5cz .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHo7Nch5cz .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHo7Nch5cz .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown-item.active,
.cid-uHo7Nch5cz .dropdown-item:active {
  background-color: transparent;
}
.cid-uHo7Nch5cz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHo7Nch5cz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHo7Nch5cz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHo7Nch5cz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHo7Nch5cz a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHo7Nch5cz .navbar-brand span {
  display: inline-block;
}
.cid-uHo7Nch5cz .navbar-brand a {
  font-weight: 550;
}
.cid-uHo7Nch5cz .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHo7Nch5cz .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHo7Nch5cz .btn .mbr-iconfont,
.cid-uHo7Nch5cz .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uHo7Nch5cz .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uHo7Nch5cz .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHo7Nch5cz .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uHo7Nch5cz .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHo7Nch5cz img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHo7Nch5cz .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHo7Nch5cz .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uHo7Nch5cz .socicon {
  line-height: inherit;
}
.cid-uHo7Nch5cz .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-tDUxk5OowA {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDUxk5OowA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDUxk5OowA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDUxk5OowA .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tDUxk5OowA .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-tDUxk5OowA .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-tDUxk5XEnX {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tDUxk5XEnX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDUxk5XEnX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tDUxk5XEnX .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tDUxk5XEnX img {
  width: 100%;
  padding: 0;
}
.cid-tDUxk5XEnX .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-tDUxk5XEnX img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-tDUxk5XEnX .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-tDUxk5XEnX .mbr-description {
  text-align: center;
}
.cid-tDUxk5XEnX .mbr-text {
  color: #000000;
}
.cid-tDUxk5XEnX .mbr-section-title {
  color: #000000;
}
.cid-tDUxk5XEnX .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-tDUxk5XEnX .p-cofesub {
  color: #736451;
}
.cid-tDUxk5XEnX ul.disc {
  list-style: disc;
}
.cid-tDUxk5XEnX li.disc {
  position: relative;
  padding-left: 0;
}
.cid-tDUxk5XEnX ul.decimal {
  list-style: decimal;
}
.cid-tDUxk5XEnX li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-tDUxk5XEnX ul.star {
  list-style: "* ";
}
.cid-tDUxk5XEnX li.star {
  position: relative;
  padding-left: 0;
}
.cid-tDUxk5XEnX ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-tDUxk5XEnX li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-tDUxk66O6B {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tDUxk66O6B .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uFzCrxTM1y {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uFzCrxTM1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFzCrxTM1y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFzCrxTM1y .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uFzCrxTM1y .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uFzCrxTM1y .copyright {
  color: #bbbbbb;
}
.cid-uFzCrxTM1y .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uFzCrxTM1y .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uFzCrxTM1y .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uHo7Nch5cz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHo7Nch5cz .display-7 {
  font-size: 1.3rem;
}
.cid-uHo7Nch5cz .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHo7Nch5cz .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHo7Nch5cz .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHo7Nch5cz.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uHo7Nch5cz.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHo7Nch5cz.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uHo7Nch5cz .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHo7Nch5cz ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uHo7Nch5cz .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uHo7Nch5cz .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHo7Nch5cz .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHo7Nch5cz .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHo7Nch5cz .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHo7Nch5cz .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHo7Nch5cz .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHo7Nch5cz .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uHo7Nch5cz .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHo7Nch5cz .navbar.opened {
  transition: all .3s;
}
.cid-uHo7Nch5cz .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHo7Nch5cz .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uHo7Nch5cz .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHo7Nch5cz .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHo7Nch5cz .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHo7Nch5cz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHo7Nch5cz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHo7Nch5cz .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHo7Nch5cz .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHo7Nch5cz .navbar-caption {
  padding-right: 1rem;
}
.cid-uHo7Nch5cz .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHo7Nch5cz .nav-item:focus,
.cid-uHo7Nch5cz .nav-link:focus {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHo7Nch5cz .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHo7Nch5cz .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHo7Nch5cz .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHo7Nch5cz .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown-item.active,
.cid-uHo7Nch5cz .dropdown-item:active {
  background-color: transparent;
}
.cid-uHo7Nch5cz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHo7Nch5cz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHo7Nch5cz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHo7Nch5cz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHo7Nch5cz a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHo7Nch5cz .navbar-brand span {
  display: inline-block;
}
.cid-uHo7Nch5cz .navbar-brand a {
  font-weight: 550;
}
.cid-uHo7Nch5cz .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHo7Nch5cz .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHo7Nch5cz .btn .mbr-iconfont,
.cid-uHo7Nch5cz .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uHo7Nch5cz .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uHo7Nch5cz .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHo7Nch5cz .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uHo7Nch5cz .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHo7Nch5cz img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHo7Nch5cz .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHo7Nch5cz .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uHo7Nch5cz .socicon {
  line-height: inherit;
}
.cid-uHo7Nch5cz .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-tDUy8T7NX1 {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDUy8T7NX1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDUy8T7NX1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDUy8T7NX1 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tDUy8T7NX1 .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-tDUy8T7NX1 .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-tDUy8ThuN3 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tDUy8ThuN3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDUy8ThuN3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tDUy8ThuN3 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tDUy8ThuN3 img {
  width: 100%;
  padding: 0;
}
.cid-tDUy8ThuN3 .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-tDUy8ThuN3 img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-tDUy8ThuN3 .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-tDUy8ThuN3 .mbr-description {
  text-align: center;
}
.cid-tDUy8ThuN3 .mbr-text {
  color: #000000;
}
.cid-tDUy8ThuN3 .mbr-section-title {
  color: #000000;
}
.cid-tDUy8ThuN3 .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-tDUy8ThuN3 .p-cofesub {
  color: #736451;
}
.cid-tDUy8ThuN3 ul.disc {
  list-style: disc;
}
.cid-tDUy8ThuN3 li.disc {
  position: relative;
  padding-left: 0;
}
.cid-tDUy8ThuN3 ul.decimal {
  list-style: decimal;
}
.cid-tDUy8ThuN3 li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-tDUy8ThuN3 ul.star {
  list-style: "* ";
}
.cid-tDUy8ThuN3 li.star {
  position: relative;
  padding-left: 0;
}
.cid-tDUy8ThuN3 ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-tDUy8ThuN3 li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-tDUy8TrZbx {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tDUy8TrZbx .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uFzCrxTM1y {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uFzCrxTM1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFzCrxTM1y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFzCrxTM1y .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uFzCrxTM1y .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uFzCrxTM1y .copyright {
  color: #bbbbbb;
}
.cid-uFzCrxTM1y .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uFzCrxTM1y .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uFzCrxTM1y .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uHo7Nch5cz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHo7Nch5cz .display-7 {
  font-size: 1.3rem;
}
.cid-uHo7Nch5cz .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHo7Nch5cz .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHo7Nch5cz .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHo7Nch5cz.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uHo7Nch5cz.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHo7Nch5cz.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uHo7Nch5cz .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHo7Nch5cz ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uHo7Nch5cz .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uHo7Nch5cz .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHo7Nch5cz .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHo7Nch5cz .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHo7Nch5cz .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHo7Nch5cz .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHo7Nch5cz .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHo7Nch5cz .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uHo7Nch5cz .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHo7Nch5cz .navbar.opened {
  transition: all .3s;
}
.cid-uHo7Nch5cz .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHo7Nch5cz .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uHo7Nch5cz .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHo7Nch5cz .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHo7Nch5cz .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHo7Nch5cz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHo7Nch5cz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHo7Nch5cz .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHo7Nch5cz .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHo7Nch5cz .navbar-caption {
  padding-right: 1rem;
}
.cid-uHo7Nch5cz .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHo7Nch5cz .nav-item:focus,
.cid-uHo7Nch5cz .nav-link:focus {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHo7Nch5cz .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHo7Nch5cz .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHo7Nch5cz .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHo7Nch5cz .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown-item.active,
.cid-uHo7Nch5cz .dropdown-item:active {
  background-color: transparent;
}
.cid-uHo7Nch5cz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHo7Nch5cz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHo7Nch5cz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHo7Nch5cz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHo7Nch5cz a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHo7Nch5cz .navbar-brand span {
  display: inline-block;
}
.cid-uHo7Nch5cz .navbar-brand a {
  font-weight: 550;
}
.cid-uHo7Nch5cz .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHo7Nch5cz .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHo7Nch5cz .btn .mbr-iconfont,
.cid-uHo7Nch5cz .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uHo7Nch5cz .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uHo7Nch5cz .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHo7Nch5cz .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uHo7Nch5cz .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHo7Nch5cz img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHo7Nch5cz .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHo7Nch5cz .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uHo7Nch5cz .socicon {
  line-height: inherit;
}
.cid-uHo7Nch5cz .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-tDVMABJGTJ {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDVMABJGTJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDVMABJGTJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDVMABJGTJ .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tDVMABJGTJ .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-tDVMABJGTJ .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-tDVMABXEeq {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tDVMABXEeq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDVMABXEeq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tDVMABXEeq .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tDVMABXEeq img {
  width: 100%;
  padding: 0;
}
.cid-tDVMABXEeq .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-tDVMABXEeq img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-tDVMABXEeq .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-tDVMABXEeq .mbr-description {
  text-align: center;
}
.cid-tDVMABXEeq .mbr-text {
  color: #000000;
}
.cid-tDVMABXEeq .mbr-section-title {
  color: #000000;
}
.cid-tDVMABXEeq .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-tDVMABXEeq .p-cofesub {
  color: #736451;
}
.cid-tDVMABXEeq ul.disc {
  list-style: disc;
}
.cid-tDVMABXEeq li.disc {
  position: relative;
  padding-left: 0;
}
.cid-tDVMABXEeq ul.decimal {
  list-style: decimal;
}
.cid-tDVMABXEeq li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-tDVMABXEeq ul.star {
  list-style: "* ";
}
.cid-tDVMABXEeq li.star {
  position: relative;
  padding-left: 0;
}
.cid-tDVMABXEeq ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-tDVMABXEeq li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-tDVMACboUj {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tDVMACboUj .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uFzCrxTM1y {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uFzCrxTM1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFzCrxTM1y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFzCrxTM1y .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uFzCrxTM1y .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uFzCrxTM1y .copyright {
  color: #bbbbbb;
}
.cid-uFzCrxTM1y .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uFzCrxTM1y .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uFzCrxTM1y .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uHo7Nch5cz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHo7Nch5cz .display-7 {
  font-size: 1.3rem;
}
.cid-uHo7Nch5cz .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHo7Nch5cz .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHo7Nch5cz .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHo7Nch5cz.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uHo7Nch5cz.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHo7Nch5cz.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uHo7Nch5cz .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHo7Nch5cz ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uHo7Nch5cz .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uHo7Nch5cz .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHo7Nch5cz .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHo7Nch5cz .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHo7Nch5cz .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHo7Nch5cz .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHo7Nch5cz .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHo7Nch5cz .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uHo7Nch5cz .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHo7Nch5cz .navbar.opened {
  transition: all .3s;
}
.cid-uHo7Nch5cz .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHo7Nch5cz .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uHo7Nch5cz .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHo7Nch5cz .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHo7Nch5cz .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHo7Nch5cz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHo7Nch5cz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHo7Nch5cz .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHo7Nch5cz .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHo7Nch5cz .navbar-caption {
  padding-right: 1rem;
}
.cid-uHo7Nch5cz .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHo7Nch5cz .nav-item:focus,
.cid-uHo7Nch5cz .nav-link:focus {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHo7Nch5cz .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHo7Nch5cz .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHo7Nch5cz .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHo7Nch5cz .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown-item.active,
.cid-uHo7Nch5cz .dropdown-item:active {
  background-color: transparent;
}
.cid-uHo7Nch5cz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHo7Nch5cz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHo7Nch5cz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHo7Nch5cz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHo7Nch5cz a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHo7Nch5cz .navbar-brand span {
  display: inline-block;
}
.cid-uHo7Nch5cz .navbar-brand a {
  font-weight: 550;
}
.cid-uHo7Nch5cz .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHo7Nch5cz .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHo7Nch5cz .btn .mbr-iconfont,
.cid-uHo7Nch5cz .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uHo7Nch5cz .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uHo7Nch5cz .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHo7Nch5cz .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uHo7Nch5cz .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHo7Nch5cz img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHo7Nch5cz .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHo7Nch5cz .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uHo7Nch5cz .socicon {
  line-height: inherit;
}
.cid-uHo7Nch5cz .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-tDVN73gBjV {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDVN73gBjV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDVN73gBjV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDVN73gBjV .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tDVN73gBjV .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-tDVN73gBjV .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-tDVN73qY4x {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tDVN73qY4x .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDVN73qY4x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tDVN73qY4x .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tDVN73qY4x img {
  width: 100%;
  padding: 0;
}
.cid-tDVN73qY4x .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-tDVN73qY4x img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-tDVN73qY4x .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-tDVN73qY4x .mbr-description {
  text-align: center;
}
.cid-tDVN73qY4x .mbr-text {
  color: #000000;
}
.cid-tDVN73qY4x .mbr-section-title {
  color: #000000;
}
.cid-tDVN73qY4x .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-tDVN73qY4x .p-cofesub {
  color: #736451;
}
.cid-tDVN73qY4x ul.disc {
  list-style: disc;
}
.cid-tDVN73qY4x li.disc {
  position: relative;
  padding-left: 0;
}
.cid-tDVN73qY4x ul.decimal {
  list-style: decimal;
}
.cid-tDVN73qY4x li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-tDVN73qY4x ul.star {
  list-style: "* ";
}
.cid-tDVN73qY4x li.star {
  position: relative;
  padding-left: 0;
}
.cid-tDVN73qY4x ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-tDVN73qY4x li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-tDVN73DwZF {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tDVN73DwZF .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uFzCrxTM1y {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uFzCrxTM1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFzCrxTM1y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFzCrxTM1y .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uFzCrxTM1y .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uFzCrxTM1y .copyright {
  color: #bbbbbb;
}
.cid-uFzCrxTM1y .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uFzCrxTM1y .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uFzCrxTM1y .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uHo7Nch5cz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHo7Nch5cz .display-7 {
  font-size: 1.3rem;
}
.cid-uHo7Nch5cz .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHo7Nch5cz .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHo7Nch5cz .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHo7Nch5cz.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uHo7Nch5cz.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHo7Nch5cz.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uHo7Nch5cz .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHo7Nch5cz ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uHo7Nch5cz .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uHo7Nch5cz .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHo7Nch5cz .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHo7Nch5cz .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHo7Nch5cz .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHo7Nch5cz .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHo7Nch5cz .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHo7Nch5cz .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uHo7Nch5cz .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHo7Nch5cz .navbar.opened {
  transition: all .3s;
}
.cid-uHo7Nch5cz .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHo7Nch5cz .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uHo7Nch5cz .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHo7Nch5cz .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHo7Nch5cz .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHo7Nch5cz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHo7Nch5cz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHo7Nch5cz .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHo7Nch5cz .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHo7Nch5cz .navbar-caption {
  padding-right: 1rem;
}
.cid-uHo7Nch5cz .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHo7Nch5cz .nav-item:focus,
.cid-uHo7Nch5cz .nav-link:focus {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHo7Nch5cz .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHo7Nch5cz .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHo7Nch5cz .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHo7Nch5cz .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown-item.active,
.cid-uHo7Nch5cz .dropdown-item:active {
  background-color: transparent;
}
.cid-uHo7Nch5cz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHo7Nch5cz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHo7Nch5cz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHo7Nch5cz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHo7Nch5cz a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHo7Nch5cz .navbar-brand span {
  display: inline-block;
}
.cid-uHo7Nch5cz .navbar-brand a {
  font-weight: 550;
}
.cid-uHo7Nch5cz .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHo7Nch5cz .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHo7Nch5cz .btn .mbr-iconfont,
.cid-uHo7Nch5cz .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uHo7Nch5cz .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uHo7Nch5cz .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHo7Nch5cz .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uHo7Nch5cz .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHo7Nch5cz img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHo7Nch5cz .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHo7Nch5cz .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uHo7Nch5cz .socicon {
  line-height: inherit;
}
.cid-uHo7Nch5cz .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-tDVOg0Y29O {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDVOg0Y29O .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDVOg0Y29O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDVOg0Y29O .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tDVOg0Y29O .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-tDVOg0Y29O .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-tDVOg1clcX {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tDVOg1clcX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDVOg1clcX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tDVOg1clcX .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tDVOg1clcX img {
  width: 100%;
  padding: 0;
}
.cid-tDVOg1clcX .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-tDVOg1clcX img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-tDVOg1clcX .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-tDVOg1clcX .mbr-description {
  text-align: center;
}
.cid-tDVOg1clcX .mbr-text {
  color: #000000;
}
.cid-tDVOg1clcX .mbr-section-title {
  color: #000000;
}
.cid-tDVOg1clcX .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-tDVOg1clcX .p-cofesub {
  color: #736451;
}
.cid-tDVOg1clcX ul.disc {
  list-style: disc;
}
.cid-tDVOg1clcX li.disc {
  position: relative;
  padding-left: 0;
}
.cid-tDVOg1clcX ul.decimal {
  list-style: decimal;
}
.cid-tDVOg1clcX li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-tDVOg1clcX ul.star {
  list-style: "* ";
}
.cid-tDVOg1clcX li.star {
  position: relative;
  padding-left: 0;
}
.cid-tDVOg1clcX ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-tDVOg1clcX li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-tDVOg1prll {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tDVOg1prll .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uFzCrxTM1y {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uFzCrxTM1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFzCrxTM1y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFzCrxTM1y .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uFzCrxTM1y .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uFzCrxTM1y .copyright {
  color: #bbbbbb;
}
.cid-uFzCrxTM1y .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uFzCrxTM1y .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uFzCrxTM1y .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uHo7Nch5cz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHo7Nch5cz .display-7 {
  font-size: 1.3rem;
}
.cid-uHo7Nch5cz .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHo7Nch5cz .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHo7Nch5cz .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHo7Nch5cz.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uHo7Nch5cz.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHo7Nch5cz.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uHo7Nch5cz .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHo7Nch5cz ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uHo7Nch5cz .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uHo7Nch5cz .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHo7Nch5cz .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHo7Nch5cz .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHo7Nch5cz .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHo7Nch5cz .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHo7Nch5cz .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHo7Nch5cz .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uHo7Nch5cz .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHo7Nch5cz .navbar.opened {
  transition: all .3s;
}
.cid-uHo7Nch5cz .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHo7Nch5cz .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uHo7Nch5cz .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHo7Nch5cz .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHo7Nch5cz .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHo7Nch5cz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHo7Nch5cz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHo7Nch5cz .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHo7Nch5cz .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHo7Nch5cz .navbar-caption {
  padding-right: 1rem;
}
.cid-uHo7Nch5cz .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHo7Nch5cz .nav-item:focus,
.cid-uHo7Nch5cz .nav-link:focus {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHo7Nch5cz .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHo7Nch5cz .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHo7Nch5cz .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHo7Nch5cz .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown-item.active,
.cid-uHo7Nch5cz .dropdown-item:active {
  background-color: transparent;
}
.cid-uHo7Nch5cz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHo7Nch5cz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHo7Nch5cz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHo7Nch5cz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHo7Nch5cz a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHo7Nch5cz .navbar-brand span {
  display: inline-block;
}
.cid-uHo7Nch5cz .navbar-brand a {
  font-weight: 550;
}
.cid-uHo7Nch5cz .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHo7Nch5cz .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHo7Nch5cz .btn .mbr-iconfont,
.cid-uHo7Nch5cz .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uHo7Nch5cz .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uHo7Nch5cz .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHo7Nch5cz .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uHo7Nch5cz .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHo7Nch5cz img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHo7Nch5cz .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHo7Nch5cz .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uHo7Nch5cz .socicon {
  line-height: inherit;
}
.cid-uHo7Nch5cz .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-uw4wEpNnpc {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uw4wEpNnpc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw4wEpNnpc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw4wEpNnpc .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uw4wEpNnpc .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-uw4wEpNnpc .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-uw4wEYHeZD {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uw4wEYHeZD img,
.cid-uw4wEYHeZD .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uw4wEYHeZD .item:focus,
.cid-uw4wEYHeZD span:focus {
  outline: none;
}
.cid-uw4wEYHeZD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uw4wEYHeZD .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uw4wEYHeZD .item-wrapper .item-content {
    padding: 0.5rem 0rem;
  }
}
@media (max-width: 991px) {
  .cid-uw4wEYHeZD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uw4wEYHeZD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uw4wEYHeZD .mbr-section-title {
  color: #232323;
}
.cid-uw4wEYHeZD .mbr-text,
.cid-uw4wEYHeZD .mbr-section-btn {
  text-align: left;
}
.cid-uw4wEYHeZD .item-title {
  text-align: left;
}
.cid-uw4wEYHeZD .item-subtitle {
  text-align: center;
}
.cid-uFzCrxTM1y {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uFzCrxTM1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFzCrxTM1y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFzCrxTM1y .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uFzCrxTM1y .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uFzCrxTM1y .copyright {
  color: #bbbbbb;
}
.cid-uFzCrxTM1y .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uFzCrxTM1y .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uFzCrxTM1y .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uHo7Nch5cz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHo7Nch5cz .display-7 {
  font-size: 1.3rem;
}
.cid-uHo7Nch5cz .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHo7Nch5cz .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHo7Nch5cz .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHo7Nch5cz.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uHo7Nch5cz.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHo7Nch5cz.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uHo7Nch5cz .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHo7Nch5cz ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uHo7Nch5cz .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uHo7Nch5cz .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHo7Nch5cz .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHo7Nch5cz .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHo7Nch5cz .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHo7Nch5cz .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHo7Nch5cz .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHo7Nch5cz .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uHo7Nch5cz .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHo7Nch5cz .navbar.opened {
  transition: all .3s;
}
.cid-uHo7Nch5cz .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHo7Nch5cz .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uHo7Nch5cz .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHo7Nch5cz .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHo7Nch5cz .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHo7Nch5cz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHo7Nch5cz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHo7Nch5cz .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHo7Nch5cz .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHo7Nch5cz .navbar-caption {
  padding-right: 1rem;
}
.cid-uHo7Nch5cz .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHo7Nch5cz .nav-item:focus,
.cid-uHo7Nch5cz .nav-link:focus {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHo7Nch5cz .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHo7Nch5cz .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHo7Nch5cz .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHo7Nch5cz .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown-item.active,
.cid-uHo7Nch5cz .dropdown-item:active {
  background-color: transparent;
}
.cid-uHo7Nch5cz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHo7Nch5cz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHo7Nch5cz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHo7Nch5cz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHo7Nch5cz a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHo7Nch5cz .navbar-brand span {
  display: inline-block;
}
.cid-uHo7Nch5cz .navbar-brand a {
  font-weight: 550;
}
.cid-uHo7Nch5cz .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHo7Nch5cz .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHo7Nch5cz .btn .mbr-iconfont,
.cid-uHo7Nch5cz .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uHo7Nch5cz .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uHo7Nch5cz .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHo7Nch5cz .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uHo7Nch5cz .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHo7Nch5cz img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHo7Nch5cz .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHo7Nch5cz .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uHo7Nch5cz .socicon {
  line-height: inherit;
}
.cid-uHo7Nch5cz .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-uAFdjEokJZ {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uAFdjEokJZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAFdjEokJZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAFdjEokJZ .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uAFdjEokJZ .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-uAFdjEokJZ .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-uAFdjEB89x {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uAFdjEB89x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAFdjEB89x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uAFdjEB89x .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uAFdjEB89x img {
  width: 100%;
  padding: 0;
}
.cid-uAFdjEB89x .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-uAFdjEB89x img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-uAFdjEB89x .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-uAFdjEB89x .mbr-description {
  text-align: center;
}
.cid-uAFdjEB89x .mbr-text {
  color: #000000;
}
.cid-uAFdjEB89x .mbr-section-title {
  color: #000000;
}
.cid-uAFdjEB89x .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-uAFdjEB89x .p-cofesub {
  color: #736451;
}
.cid-uAFdjEB89x ul.disc {
  list-style: disc;
}
.cid-uAFdjEB89x li.disc {
  position: relative;
  padding-left: 0;
}
.cid-uAFdjEB89x ul.decimal {
  list-style: decimal;
}
.cid-uAFdjEB89x li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-uAFdjEB89x ul.star {
  list-style: "* ";
}
.cid-uAFdjEB89x li.star {
  position: relative;
  padding-left: 0;
}
.cid-uAFdjEB89x ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-uAFdjEB89x li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-uAFdjEQks8 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uAFdjEQks8 .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uFzCrxTM1y {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uFzCrxTM1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFzCrxTM1y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFzCrxTM1y .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uFzCrxTM1y .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uFzCrxTM1y .copyright {
  color: #bbbbbb;
}
.cid-uFzCrxTM1y .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uFzCrxTM1y .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uFzCrxTM1y .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uHo7Nch5cz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHo7Nch5cz .display-7 {
  font-size: 1.3rem;
}
.cid-uHo7Nch5cz .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHo7Nch5cz .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHo7Nch5cz .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHo7Nch5cz.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uHo7Nch5cz.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHo7Nch5cz.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uHo7Nch5cz .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHo7Nch5cz ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uHo7Nch5cz .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uHo7Nch5cz .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHo7Nch5cz .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHo7Nch5cz .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHo7Nch5cz .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHo7Nch5cz .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHo7Nch5cz .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHo7Nch5cz .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uHo7Nch5cz .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHo7Nch5cz .navbar.opened {
  transition: all .3s;
}
.cid-uHo7Nch5cz .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHo7Nch5cz .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uHo7Nch5cz .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHo7Nch5cz .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHo7Nch5cz .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHo7Nch5cz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHo7Nch5cz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHo7Nch5cz .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHo7Nch5cz .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHo7Nch5cz .navbar-caption {
  padding-right: 1rem;
}
.cid-uHo7Nch5cz .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHo7Nch5cz .nav-item:focus,
.cid-uHo7Nch5cz .nav-link:focus {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHo7Nch5cz .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHo7Nch5cz .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHo7Nch5cz .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHo7Nch5cz .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown-item.active,
.cid-uHo7Nch5cz .dropdown-item:active {
  background-color: transparent;
}
.cid-uHo7Nch5cz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHo7Nch5cz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHo7Nch5cz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHo7Nch5cz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHo7Nch5cz a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHo7Nch5cz .navbar-brand span {
  display: inline-block;
}
.cid-uHo7Nch5cz .navbar-brand a {
  font-weight: 550;
}
.cid-uHo7Nch5cz .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHo7Nch5cz .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHo7Nch5cz .btn .mbr-iconfont,
.cid-uHo7Nch5cz .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uHo7Nch5cz .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uHo7Nch5cz .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHo7Nch5cz .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uHo7Nch5cz .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHo7Nch5cz img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHo7Nch5cz .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHo7Nch5cz .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uHo7Nch5cz .socicon {
  line-height: inherit;
}
.cid-uHo7Nch5cz .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-uAFe0WcgcL {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uAFe0WcgcL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAFe0WcgcL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAFe0WcgcL .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uAFe0WcgcL .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-uAFe0WcgcL .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-uAFe0Wymo8 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uAFe0Wymo8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAFe0Wymo8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uAFe0Wymo8 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uAFe0Wymo8 img {
  width: 100%;
  padding: 0;
}
.cid-uAFe0Wymo8 .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-uAFe0Wymo8 img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-uAFe0Wymo8 .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-uAFe0Wymo8 .mbr-description {
  text-align: center;
}
.cid-uAFe0Wymo8 .mbr-text {
  color: #000000;
}
.cid-uAFe0Wymo8 .mbr-section-title {
  color: #000000;
}
.cid-uAFe0Wymo8 .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-uAFe0Wymo8 .p-cofesub {
  color: #736451;
}
.cid-uAFe0Wymo8 ul.disc {
  list-style: disc;
}
.cid-uAFe0Wymo8 li.disc {
  position: relative;
  padding-left: 0;
}
.cid-uAFe0Wymo8 ul.decimal {
  list-style: decimal;
}
.cid-uAFe0Wymo8 li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-uAFe0Wymo8 ul.star {
  list-style: "* ";
}
.cid-uAFe0Wymo8 li.star {
  position: relative;
  padding-left: 0;
}
.cid-uAFe0Wymo8 ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-uAFe0Wymo8 li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-uAFe0WPzgp {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uAFe0WPzgp .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uFzCrxTM1y {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uFzCrxTM1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFzCrxTM1y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFzCrxTM1y .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uFzCrxTM1y .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uFzCrxTM1y .copyright {
  color: #bbbbbb;
}
.cid-uFzCrxTM1y .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uFzCrxTM1y .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uFzCrxTM1y .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uHo7Nch5cz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHo7Nch5cz .display-7 {
  font-size: 1.3rem;
}
.cid-uHo7Nch5cz .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHo7Nch5cz .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHo7Nch5cz .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHo7Nch5cz.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uHo7Nch5cz.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHo7Nch5cz.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uHo7Nch5cz .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHo7Nch5cz ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uHo7Nch5cz .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uHo7Nch5cz .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHo7Nch5cz .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHo7Nch5cz .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHo7Nch5cz .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHo7Nch5cz .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHo7Nch5cz .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHo7Nch5cz .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uHo7Nch5cz .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHo7Nch5cz .navbar.opened {
  transition: all .3s;
}
.cid-uHo7Nch5cz .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHo7Nch5cz .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uHo7Nch5cz .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHo7Nch5cz .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHo7Nch5cz .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHo7Nch5cz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHo7Nch5cz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHo7Nch5cz .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHo7Nch5cz .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHo7Nch5cz .navbar-caption {
  padding-right: 1rem;
}
.cid-uHo7Nch5cz .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHo7Nch5cz .nav-item:focus,
.cid-uHo7Nch5cz .nav-link:focus {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHo7Nch5cz .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHo7Nch5cz .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHo7Nch5cz .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHo7Nch5cz .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown-item.active,
.cid-uHo7Nch5cz .dropdown-item:active {
  background-color: transparent;
}
.cid-uHo7Nch5cz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHo7Nch5cz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHo7Nch5cz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHo7Nch5cz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHo7Nch5cz a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHo7Nch5cz .navbar-brand span {
  display: inline-block;
}
.cid-uHo7Nch5cz .navbar-brand a {
  font-weight: 550;
}
.cid-uHo7Nch5cz .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHo7Nch5cz .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHo7Nch5cz .btn .mbr-iconfont,
.cid-uHo7Nch5cz .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uHo7Nch5cz .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uHo7Nch5cz .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHo7Nch5cz .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uHo7Nch5cz .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHo7Nch5cz img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHo7Nch5cz .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHo7Nch5cz .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uHo7Nch5cz .socicon {
  line-height: inherit;
}
.cid-uHo7Nch5cz .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-uy1rlKowOo {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uy1rlKowOo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy1rlKowOo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy1rlKowOo .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uy1rlKowOo .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-uy1rlKowOo .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-uy1rlKCals {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uy1rlKCals .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy1rlKCals .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uy1rlKCals .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uy1rlKCals img {
  width: 100%;
  padding: 0;
}
.cid-uy1rlKCals .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-uy1rlKCals img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-uy1rlKCals .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-uy1rlKCals .mbr-description {
  text-align: center;
}
.cid-uy1rlKCals .mbr-text {
  color: #000000;
}
.cid-uy1rlKCals .mbr-section-title {
  color: #000000;
}
.cid-uy1rlKCals .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-uy1rlKCals .p-cofesub {
  color: #736451;
}
.cid-uy1rlKCals ul.disc {
  list-style: disc;
}
.cid-uy1rlKCals li.disc {
  position: relative;
  padding-left: 0;
}
.cid-uy1rlKCals ul.decimal {
  list-style: decimal;
}
.cid-uy1rlKCals li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-uy1rlKCals ul.star {
  list-style: "* ";
}
.cid-uy1rlKCals li.star {
  position: relative;
  padding-left: 0;
}
.cid-uy1rlKCals ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-uy1rlKCals li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-uy1rlKQOrD {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uy1rlKQOrD .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uFzCrxTM1y {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uFzCrxTM1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFzCrxTM1y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFzCrxTM1y .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uFzCrxTM1y .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uFzCrxTM1y .copyright {
  color: #bbbbbb;
}
.cid-uFzCrxTM1y .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uFzCrxTM1y .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uFzCrxTM1y .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uHo7Nch5cz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHo7Nch5cz .display-7 {
  font-size: 1.3rem;
}
.cid-uHo7Nch5cz .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHo7Nch5cz .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHo7Nch5cz .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHo7Nch5cz.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uHo7Nch5cz.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHo7Nch5cz.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uHo7Nch5cz .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHo7Nch5cz ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uHo7Nch5cz .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uHo7Nch5cz .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHo7Nch5cz .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHo7Nch5cz .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHo7Nch5cz .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHo7Nch5cz .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHo7Nch5cz .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHo7Nch5cz .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uHo7Nch5cz .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHo7Nch5cz .navbar.opened {
  transition: all .3s;
}
.cid-uHo7Nch5cz .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHo7Nch5cz .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uHo7Nch5cz .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHo7Nch5cz .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHo7Nch5cz .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHo7Nch5cz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHo7Nch5cz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHo7Nch5cz .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHo7Nch5cz .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHo7Nch5cz .navbar-caption {
  padding-right: 1rem;
}
.cid-uHo7Nch5cz .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHo7Nch5cz .nav-item:focus,
.cid-uHo7Nch5cz .nav-link:focus {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHo7Nch5cz .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHo7Nch5cz .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHo7Nch5cz .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHo7Nch5cz .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown-item.active,
.cid-uHo7Nch5cz .dropdown-item:active {
  background-color: transparent;
}
.cid-uHo7Nch5cz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHo7Nch5cz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHo7Nch5cz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHo7Nch5cz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHo7Nch5cz a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHo7Nch5cz .navbar-brand span {
  display: inline-block;
}
.cid-uHo7Nch5cz .navbar-brand a {
  font-weight: 550;
}
.cid-uHo7Nch5cz .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHo7Nch5cz .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHo7Nch5cz .btn .mbr-iconfont,
.cid-uHo7Nch5cz .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uHo7Nch5cz .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uHo7Nch5cz .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHo7Nch5cz .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uHo7Nch5cz .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHo7Nch5cz img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHo7Nch5cz .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHo7Nch5cz .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uHo7Nch5cz .socicon {
  line-height: inherit;
}
.cid-uHo7Nch5cz .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-uDd8FGCnod {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uDd8FGCnod .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDd8FGCnod .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDd8FGCnod .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uDd8FGCnod .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-uDd8FGCnod .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-uDd8FGQPcE {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uDd8FGQPcE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDd8FGQPcE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uDd8FGQPcE .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uDd8FGQPcE img {
  width: 100%;
  padding: 0;
}
.cid-uDd8FGQPcE .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-uDd8FGQPcE img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-uDd8FGQPcE .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-uDd8FGQPcE .mbr-description {
  text-align: center;
}
.cid-uDd8FGQPcE .mbr-text {
  color: #000000;
}
.cid-uDd8FGQPcE .mbr-section-title {
  color: #000000;
}
.cid-uDd8FGQPcE .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-uDd8FGQPcE .p-cofesub {
  color: #736451;
}
.cid-uDd8FGQPcE ul.disc {
  list-style: disc;
}
.cid-uDd8FGQPcE li.disc {
  position: relative;
  padding-left: 0;
}
.cid-uDd8FGQPcE ul.decimal {
  list-style: decimal;
}
.cid-uDd8FGQPcE li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-uDd8FGQPcE ul.star {
  list-style: "* ";
}
.cid-uDd8FGQPcE li.star {
  position: relative;
  padding-left: 0;
}
.cid-uDd8FGQPcE ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-uDd8FGQPcE li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-uDd8FH7Pc3 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uDd8FH7Pc3 .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uFzCrxTM1y {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uFzCrxTM1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFzCrxTM1y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFzCrxTM1y .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uFzCrxTM1y .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uFzCrxTM1y .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uFzCrxTM1y div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uFzCrxTM1y .copyright {
  color: #bbbbbb;
}
.cid-uFzCrxTM1y .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uFzCrxTM1y .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uFzCrxTM1y .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uHo7Nch5cz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uHo7Nch5cz .display-7 {
  font-size: 1.3rem;
}
.cid-uHo7Nch5cz .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHo7Nch5cz .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHo7Nch5cz .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHo7Nch5cz.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uHo7Nch5cz.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHo7Nch5cz.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHo7Nch5cz.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu {
    top: 0;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uHo7Nch5cz .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHo7Nch5cz ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHo7Nch5cz .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uHo7Nch5cz .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uHo7Nch5cz .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHo7Nch5cz .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHo7Nch5cz .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHo7Nch5cz .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHo7Nch5cz .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHo7Nch5cz .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHo7Nch5cz .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHo7Nch5cz .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uHo7Nch5cz .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHo7Nch5cz .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uHo7Nch5cz .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHo7Nch5cz .navbar.opened {
  transition: all .3s;
}
.cid-uHo7Nch5cz .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHo7Nch5cz .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uHo7Nch5cz .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHo7Nch5cz .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHo7Nch5cz .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHo7Nch5cz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHo7Nch5cz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHo7Nch5cz .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHo7Nch5cz .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHo7Nch5cz .navbar-caption {
  padding-right: 1rem;
}
.cid-uHo7Nch5cz .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown-menu,
  .cid-uHo7Nch5cz .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHo7Nch5cz .nav-item:focus,
.cid-uHo7Nch5cz .nav-link:focus {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uHo7Nch5cz .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHo7Nch5cz .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHo7Nch5cz .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uHo7Nch5cz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHo7Nch5cz .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHo7Nch5cz .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHo7Nch5cz .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHo7Nch5cz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHo7Nch5cz .dropdown-item.active,
.cid-uHo7Nch5cz .dropdown-item:active {
  background-color: transparent;
}
.cid-uHo7Nch5cz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHo7Nch5cz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHo7Nch5cz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHo7Nch5cz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHo7Nch5cz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHo7Nch5cz .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHo7Nch5cz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHo7Nch5cz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHo7Nch5cz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHo7Nch5cz .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHo7Nch5cz a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHo7Nch5cz .navbar-brand span {
  display: inline-block;
}
.cid-uHo7Nch5cz .navbar-brand a {
  font-weight: 550;
}
.cid-uHo7Nch5cz .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHo7Nch5cz .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHo7Nch5cz .btn .mbr-iconfont,
.cid-uHo7Nch5cz .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uHo7Nch5cz .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uHo7Nch5cz .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHo7Nch5cz .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uHo7Nch5cz .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHo7Nch5cz img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHo7Nch5cz .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHo7Nch5cz a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHo7Nch5cz .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uHo7Nch5cz .socicon {
  line-height: inherit;
}
.cid-uHo7Nch5cz .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-uGDh3QZ8l4 {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGDh3QZ8l4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDh3QZ8l4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDh3QZ8l4 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uGDh3QZ8l4 .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-uGDh3QZ8l4 .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-uGDh3RcWce {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uGDh3RcWce .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDh3RcWce .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uGDh3RcWce .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uGDh3RcWce img {
  width: 100%;
  padding: 0;
}
.cid-uGDh3RcWce .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-uGDh3RcWce img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-uGDh3RcWce .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-uGDh3RcWce .mbr-description {
  text-align: center;
}
.cid-uGDh3RcWce .mbr-text {
  color: #000000;
}
.cid-uGDh3RcWce .mbr-section-title {
  color: #000000;
}
.cid-uGDh3RcWce .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-uGDh3RcWce .p-cofesub {
  color: #736451;
}
.cid-uGDh3RcWce ul.disc {
  list-style: disc;
}
.cid-uGDh3RcWce li.disc {
  position: relative;
  padding-left: 0;
}
.cid-uGDh3RcWce ul.decimal {
  list-style: decimal;
}
.cid-uGDh3RcWce li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-uGDh3RcWce ul.star {
  list-style: "* ";
}
.cid-uGDh3RcWce li.star {
  position: relative;
  padding-left: 0;
}
.cid-uGDh3RcWce ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-uGDh3RcWce li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-uGDh3Rucqg {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uGDh3Rucqg .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uGDh3RFxWt {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uGDh3RFxWt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGDh3RFxWt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGDh3RFxWt .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uGDh3RFxWt .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGDh3RFxWt .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uGDh3RFxWt .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uGDh3RFxWt div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uGDh3RFxWt .copyright {
  color: #bbbbbb;
}
.cid-uGDh3RFxWt .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uGDh3RFxWt .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uGDh3RFxWt .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uMaC8pu2dH .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uMaC8pu2dH .display-7 {
  font-size: 1.3rem;
}
.cid-uMaC8pu2dH .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uMaC8pu2dH .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uMaC8pu2dH .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uMaC8pu2dH .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uMaC8pu2dH .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uMaC8pu2dH.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMaC8pu2dH.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMaC8pu2dH.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMaC8pu2dH.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMaC8pu2dH.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uMaC8pu2dH.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMaC8pu2dH.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uMaC8pu2dH.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uMaC8pu2dH .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uMaC8pu2dH .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uMaC8pu2dH .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uMaC8pu2dH .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uMaC8pu2dH .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMaC8pu2dH.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMaC8pu2dH .dropdown-menu {
    top: 0;
  }
  .cid-uMaC8pu2dH .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMaC8pu2dH .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMaC8pu2dH .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uMaC8pu2dH .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uMaC8pu2dH ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMaC8pu2dH .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uMaC8pu2dH .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uMaC8pu2dH .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uMaC8pu2dH .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uMaC8pu2dH .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uMaC8pu2dH .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uMaC8pu2dH .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uMaC8pu2dH .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uMaC8pu2dH .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uMaC8pu2dH .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uMaC8pu2dH .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uMaC8pu2dH .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uMaC8pu2dH .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uMaC8pu2dH .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uMaC8pu2dH .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uMaC8pu2dH .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uMaC8pu2dH .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uMaC8pu2dH .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uMaC8pu2dH .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uMaC8pu2dH .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uMaC8pu2dH .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uMaC8pu2dH .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uMaC8pu2dH .navbar.opened {
  transition: all .3s;
}
.cid-uMaC8pu2dH .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uMaC8pu2dH .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uMaC8pu2dH .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uMaC8pu2dH .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uMaC8pu2dH .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uMaC8pu2dH .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uMaC8pu2dH .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uMaC8pu2dH .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uMaC8pu2dH .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uMaC8pu2dH .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uMaC8pu2dH .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uMaC8pu2dH .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uMaC8pu2dH .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uMaC8pu2dH .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uMaC8pu2dH .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uMaC8pu2dH .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uMaC8pu2dH .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uMaC8pu2dH .navbar-caption {
  padding-right: 1rem;
}
.cid-uMaC8pu2dH .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uMaC8pu2dH .dropdown-menu,
  .cid-uMaC8pu2dH .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uMaC8pu2dH .dropdown-menu,
  .cid-uMaC8pu2dH .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uMaC8pu2dH .nav-item:focus,
.cid-uMaC8pu2dH .nav-link:focus {
  outline: none;
}
.cid-uMaC8pu2dH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uMaC8pu2dH .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uMaC8pu2dH .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uMaC8pu2dH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uMaC8pu2dH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uMaC8pu2dH .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uMaC8pu2dH .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uMaC8pu2dH .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uMaC8pu2dH .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uMaC8pu2dH .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uMaC8pu2dH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMaC8pu2dH .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uMaC8pu2dH .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uMaC8pu2dH .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uMaC8pu2dH .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uMaC8pu2dH .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uMaC8pu2dH .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uMaC8pu2dH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMaC8pu2dH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMaC8pu2dH .dropdown-item.active,
.cid-uMaC8pu2dH .dropdown-item:active {
  background-color: transparent;
}
.cid-uMaC8pu2dH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uMaC8pu2dH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMaC8pu2dH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMaC8pu2dH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uMaC8pu2dH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMaC8pu2dH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMaC8pu2dH ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uMaC8pu2dH .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uMaC8pu2dH .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uMaC8pu2dH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uMaC8pu2dH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uMaC8pu2dH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uMaC8pu2dH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uMaC8pu2dH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uMaC8pu2dH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uMaC8pu2dH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uMaC8pu2dH nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uMaC8pu2dH nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uMaC8pu2dH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uMaC8pu2dH .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uMaC8pu2dH a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uMaC8pu2dH .navbar-brand span {
  display: inline-block;
}
.cid-uMaC8pu2dH .navbar-brand a {
  font-weight: 550;
}
.cid-uMaC8pu2dH .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uMaC8pu2dH .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uMaC8pu2dH .btn .mbr-iconfont,
.cid-uMaC8pu2dH .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uMaC8pu2dH .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uMaC8pu2dH .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uMaC8pu2dH .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uMaC8pu2dH .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uMaC8pu2dH img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uMaC8pu2dH .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uMaC8pu2dH .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uMaC8pu2dH .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uMaC8pu2dH a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uMaC8pu2dH .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uMaC8pu2dH .socicon {
  line-height: inherit;
}
.cid-uMaC8pu2dH .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-uMaC8pOCJf {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uMaC8pOCJf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMaC8pOCJf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMaC8pOCJf .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMaC8pOCJf .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-uMaC8pOCJf .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-uMaC8pX1Tu {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uMaC8pX1Tu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMaC8pX1Tu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMaC8pX1Tu .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMaC8pX1Tu img {
  width: 100%;
  padding: 0;
}
.cid-uMaC8pX1Tu .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-uMaC8pX1Tu img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-uMaC8pX1Tu .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-uMaC8pX1Tu .mbr-description {
  text-align: center;
}
.cid-uMaC8pX1Tu .mbr-text {
  color: #000000;
}
.cid-uMaC8pX1Tu .mbr-section-title {
  color: #000000;
}
.cid-uMaC8pX1Tu .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-uMaC8pX1Tu .p-cofesub {
  color: #736451;
}
.cid-uMaC8pX1Tu ul.disc {
  list-style: disc;
}
.cid-uMaC8pX1Tu li.disc {
  position: relative;
  padding-left: 0;
}
.cid-uMaC8pX1Tu ul.decimal {
  list-style: decimal;
}
.cid-uMaC8pX1Tu li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-uMaC8pX1Tu ul.star {
  list-style: "* ";
}
.cid-uMaC8pX1Tu li.star {
  position: relative;
  padding-left: 0;
}
.cid-uMaC8pX1Tu ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-uMaC8pX1Tu li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-uMaC8q6Z1T {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMaC8q6Z1T .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uMaC8qckZ5 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uMaC8qckZ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMaC8qckZ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMaC8qckZ5 .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uMaC8qckZ5 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMaC8qckZ5 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uMaC8qckZ5 .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uMaC8qckZ5 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uMaC8qckZ5 .copyright {
  color: #bbbbbb;
}
.cid-uMaC8qckZ5 .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uMaC8qckZ5 .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uMaC8qckZ5 .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uMcphe3q2V .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uMcphe3q2V .display-7 {
  font-size: 1.3rem;
}
.cid-uMcphe3q2V .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uMcphe3q2V .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uMcphe3q2V .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uMcphe3q2V .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uMcphe3q2V .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uMcphe3q2V.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMcphe3q2V.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMcphe3q2V.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMcphe3q2V.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMcphe3q2V.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uMcphe3q2V.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMcphe3q2V.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uMcphe3q2V.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uMcphe3q2V .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uMcphe3q2V .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uMcphe3q2V .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uMcphe3q2V .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uMcphe3q2V .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMcphe3q2V.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMcphe3q2V .dropdown-menu {
    top: 0;
  }
  .cid-uMcphe3q2V .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMcphe3q2V .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMcphe3q2V .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uMcphe3q2V .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uMcphe3q2V ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMcphe3q2V .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uMcphe3q2V .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uMcphe3q2V .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uMcphe3q2V .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uMcphe3q2V .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uMcphe3q2V .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uMcphe3q2V .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uMcphe3q2V .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uMcphe3q2V .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uMcphe3q2V .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uMcphe3q2V .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uMcphe3q2V .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uMcphe3q2V .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uMcphe3q2V .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uMcphe3q2V .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uMcphe3q2V .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uMcphe3q2V .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uMcphe3q2V .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uMcphe3q2V .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uMcphe3q2V .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uMcphe3q2V .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uMcphe3q2V .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uMcphe3q2V .navbar.opened {
  transition: all .3s;
}
.cid-uMcphe3q2V .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uMcphe3q2V .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uMcphe3q2V .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uMcphe3q2V .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uMcphe3q2V .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uMcphe3q2V .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uMcphe3q2V .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uMcphe3q2V .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uMcphe3q2V .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uMcphe3q2V .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uMcphe3q2V .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uMcphe3q2V .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uMcphe3q2V .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uMcphe3q2V .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uMcphe3q2V .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uMcphe3q2V .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uMcphe3q2V .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uMcphe3q2V .navbar-caption {
  padding-right: 1rem;
}
.cid-uMcphe3q2V .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uMcphe3q2V .dropdown-menu,
  .cid-uMcphe3q2V .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uMcphe3q2V .dropdown-menu,
  .cid-uMcphe3q2V .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uMcphe3q2V .nav-item:focus,
.cid-uMcphe3q2V .nav-link:focus {
  outline: none;
}
.cid-uMcphe3q2V .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uMcphe3q2V .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uMcphe3q2V .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uMcphe3q2V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uMcphe3q2V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uMcphe3q2V .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uMcphe3q2V .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uMcphe3q2V .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uMcphe3q2V .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uMcphe3q2V .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uMcphe3q2V .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMcphe3q2V .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uMcphe3q2V .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uMcphe3q2V .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uMcphe3q2V .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uMcphe3q2V .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uMcphe3q2V .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uMcphe3q2V .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMcphe3q2V .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMcphe3q2V .dropdown-item.active,
.cid-uMcphe3q2V .dropdown-item:active {
  background-color: transparent;
}
.cid-uMcphe3q2V .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uMcphe3q2V .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMcphe3q2V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMcphe3q2V .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uMcphe3q2V .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMcphe3q2V .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMcphe3q2V ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uMcphe3q2V .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uMcphe3q2V .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uMcphe3q2V button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uMcphe3q2V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uMcphe3q2V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uMcphe3q2V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uMcphe3q2V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uMcphe3q2V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uMcphe3q2V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uMcphe3q2V nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uMcphe3q2V nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uMcphe3q2V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uMcphe3q2V .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uMcphe3q2V a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uMcphe3q2V .navbar-brand span {
  display: inline-block;
}
.cid-uMcphe3q2V .navbar-brand a {
  font-weight: 550;
}
.cid-uMcphe3q2V .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uMcphe3q2V .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uMcphe3q2V .btn .mbr-iconfont,
.cid-uMcphe3q2V .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uMcphe3q2V .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uMcphe3q2V .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uMcphe3q2V .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uMcphe3q2V .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uMcphe3q2V img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uMcphe3q2V .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uMcphe3q2V .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uMcphe3q2V .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uMcphe3q2V a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uMcphe3q2V .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uMcphe3q2V .socicon {
  line-height: inherit;
}
.cid-uMcphe3q2V .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-uMcphewace {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uMcphewace .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMcphewace .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMcphewace .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMcphewace .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-uMcphewace .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-uMcpheJD8z {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uMcpheJD8z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMcpheJD8z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMcpheJD8z .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMcpheJD8z img {
  width: 100%;
  padding: 0;
}
.cid-uMcpheJD8z .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-uMcpheJD8z img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-uMcpheJD8z .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-uMcpheJD8z .mbr-description {
  text-align: center;
}
.cid-uMcpheJD8z .mbr-text {
  color: #000000;
}
.cid-uMcpheJD8z .mbr-section-title {
  color: #000000;
}
.cid-uMcpheJD8z .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-uMcpheJD8z .p-cofesub {
  color: #736451;
}
.cid-uMcpheJD8z ul.disc {
  list-style: disc;
}
.cid-uMcpheJD8z li.disc {
  position: relative;
  padding-left: 0;
}
.cid-uMcpheJD8z ul.decimal {
  list-style: decimal;
}
.cid-uMcpheJD8z li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-uMcpheJD8z ul.star {
  list-style: "* ";
}
.cid-uMcpheJD8z li.star {
  position: relative;
  padding-left: 0;
}
.cid-uMcpheJD8z ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-uMcpheJD8z li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-uMcpheY9G8 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMcpheY9G8 .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uMcphf9BfF {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uMcphf9BfF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMcphf9BfF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMcphf9BfF .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uMcphf9BfF .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMcphf9BfF .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uMcphf9BfF .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uMcphf9BfF div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uMcphf9BfF .copyright {
  color: #bbbbbb;
}
.cid-uMcphf9BfF .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uMcphf9BfF .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uMcphf9BfF .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uOVs1Den19 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uOVs1Den19 .display-7 {
  font-size: 1.3rem;
}
.cid-uOVs1Den19 .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uOVs1Den19 .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uOVs1Den19 .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uOVs1Den19 .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uOVs1Den19 .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uOVs1Den19.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOVs1Den19.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOVs1Den19.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOVs1Den19.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOVs1Den19.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uOVs1Den19.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOVs1Den19.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uOVs1Den19.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uOVs1Den19 .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uOVs1Den19 .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uOVs1Den19 .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uOVs1Den19 .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uOVs1Den19 .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOVs1Den19.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOVs1Den19 .dropdown-menu {
    top: 0;
  }
  .cid-uOVs1Den19 .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOVs1Den19 .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOVs1Den19 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uOVs1Den19 .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uOVs1Den19 ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOVs1Den19 .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uOVs1Den19 .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uOVs1Den19 .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uOVs1Den19 .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uOVs1Den19 .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uOVs1Den19 .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uOVs1Den19 .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uOVs1Den19 .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uOVs1Den19 .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uOVs1Den19 .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uOVs1Den19 .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uOVs1Den19 .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uOVs1Den19 .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uOVs1Den19 .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uOVs1Den19 .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uOVs1Den19 .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uOVs1Den19 .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uOVs1Den19 .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uOVs1Den19 .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uOVs1Den19 .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uOVs1Den19 .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uOVs1Den19 .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uOVs1Den19 .navbar.opened {
  transition: all .3s;
}
.cid-uOVs1Den19 .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uOVs1Den19 .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uOVs1Den19 .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uOVs1Den19 .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uOVs1Den19 .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uOVs1Den19 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uOVs1Den19 .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uOVs1Den19 .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uOVs1Den19 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uOVs1Den19 .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uOVs1Den19 .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uOVs1Den19 .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uOVs1Den19 .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uOVs1Den19 .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uOVs1Den19 .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uOVs1Den19 .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uOVs1Den19 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uOVs1Den19 .navbar-caption {
  padding-right: 1rem;
}
.cid-uOVs1Den19 .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uOVs1Den19 .dropdown-menu,
  .cid-uOVs1Den19 .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uOVs1Den19 .dropdown-menu,
  .cid-uOVs1Den19 .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uOVs1Den19 .nav-item:focus,
.cid-uOVs1Den19 .nav-link:focus {
  outline: none;
}
.cid-uOVs1Den19 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uOVs1Den19 .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uOVs1Den19 .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uOVs1Den19 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uOVs1Den19 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uOVs1Den19 .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uOVs1Den19 .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uOVs1Den19 .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uOVs1Den19 .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uOVs1Den19 .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uOVs1Den19 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOVs1Den19 .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uOVs1Den19 .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uOVs1Den19 .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uOVs1Den19 .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uOVs1Den19 .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uOVs1Den19 .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uOVs1Den19 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOVs1Den19 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOVs1Den19 .dropdown-item.active,
.cid-uOVs1Den19 .dropdown-item:active {
  background-color: transparent;
}
.cid-uOVs1Den19 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uOVs1Den19 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOVs1Den19 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOVs1Den19 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uOVs1Den19 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOVs1Den19 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOVs1Den19 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uOVs1Den19 .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uOVs1Den19 .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uOVs1Den19 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uOVs1Den19 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uOVs1Den19 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uOVs1Den19 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uOVs1Den19 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uOVs1Den19 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uOVs1Den19 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uOVs1Den19 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uOVs1Den19 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uOVs1Den19 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uOVs1Den19 .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uOVs1Den19 a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uOVs1Den19 .navbar-brand span {
  display: inline-block;
}
.cid-uOVs1Den19 .navbar-brand a {
  font-weight: 550;
}
.cid-uOVs1Den19 .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uOVs1Den19 .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uOVs1Den19 .btn .mbr-iconfont,
.cid-uOVs1Den19 .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uOVs1Den19 .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uOVs1Den19 .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uOVs1Den19 .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uOVs1Den19 .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uOVs1Den19 img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uOVs1Den19 .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uOVs1Den19 .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uOVs1Den19 .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uOVs1Den19 a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uOVs1Den19 .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uOVs1Den19 .socicon {
  line-height: inherit;
}
.cid-uOVs1Den19 .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-uOVs1DSyAv {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uOVs1DSyAv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOVs1DSyAv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOVs1DSyAv .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uOVs1DSyAv .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-uOVs1DSyAv .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-uOVs1E6Nn0 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOVs1E6Nn0 img,
.cid-uOVs1E6Nn0 .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uOVs1E6Nn0 .item:focus,
.cid-uOVs1E6Nn0 span:focus {
  outline: none;
}
.cid-uOVs1E6Nn0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOVs1E6Nn0 .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOVs1E6Nn0 .item-wrapper .item-content {
    padding: 0.5rem 0rem;
  }
}
@media (max-width: 991px) {
  .cid-uOVs1E6Nn0 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOVs1E6Nn0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOVs1E6Nn0 .mbr-section-title {
  color: #232323;
}
.cid-uOVs1E6Nn0 .mbr-text,
.cid-uOVs1E6Nn0 .mbr-section-btn {
  text-align: left;
}
.cid-uOVs1E6Nn0 .item-title {
  text-align: left;
}
.cid-uOVs1E6Nn0 .item-subtitle {
  text-align: center;
}
.cid-uOVs1F42ZT {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uOVs1F42ZT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOVs1F42ZT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOVs1F42ZT .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uOVs1F42ZT .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOVs1F42ZT .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uOVs1F42ZT .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uOVs1F42ZT div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uOVs1F42ZT .copyright {
  color: #bbbbbb;
}
.cid-uOVs1F42ZT .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uOVs1F42ZT .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uOVs1F42ZT .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uOVseloWTS .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uOVseloWTS .display-7 {
  font-size: 1.3rem;
}
.cid-uOVseloWTS .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uOVseloWTS .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uOVseloWTS .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uOVseloWTS .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uOVseloWTS .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uOVseloWTS.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOVseloWTS.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOVseloWTS.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOVseloWTS.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOVseloWTS.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uOVseloWTS.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOVseloWTS.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uOVseloWTS.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uOVseloWTS .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uOVseloWTS .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uOVseloWTS .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uOVseloWTS .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uOVseloWTS .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOVseloWTS.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOVseloWTS .dropdown-menu {
    top: 0;
  }
  .cid-uOVseloWTS .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOVseloWTS .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOVseloWTS .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uOVseloWTS .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uOVseloWTS ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOVseloWTS .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uOVseloWTS .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uOVseloWTS .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uOVseloWTS .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uOVseloWTS .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uOVseloWTS .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uOVseloWTS .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uOVseloWTS .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uOVseloWTS .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uOVseloWTS .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uOVseloWTS .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uOVseloWTS .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uOVseloWTS .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uOVseloWTS .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uOVseloWTS .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uOVseloWTS .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uOVseloWTS .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uOVseloWTS .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uOVseloWTS .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uOVseloWTS .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uOVseloWTS .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uOVseloWTS .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uOVseloWTS .navbar.opened {
  transition: all .3s;
}
.cid-uOVseloWTS .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uOVseloWTS .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uOVseloWTS .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uOVseloWTS .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uOVseloWTS .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uOVseloWTS .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uOVseloWTS .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uOVseloWTS .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uOVseloWTS .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uOVseloWTS .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uOVseloWTS .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uOVseloWTS .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uOVseloWTS .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uOVseloWTS .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uOVseloWTS .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uOVseloWTS .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uOVseloWTS .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uOVseloWTS .navbar-caption {
  padding-right: 1rem;
}
.cid-uOVseloWTS .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uOVseloWTS .dropdown-menu,
  .cid-uOVseloWTS .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uOVseloWTS .dropdown-menu,
  .cid-uOVseloWTS .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uOVseloWTS .nav-item:focus,
.cid-uOVseloWTS .nav-link:focus {
  outline: none;
}
.cid-uOVseloWTS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uOVseloWTS .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uOVseloWTS .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uOVseloWTS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uOVseloWTS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uOVseloWTS .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uOVseloWTS .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uOVseloWTS .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uOVseloWTS .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uOVseloWTS .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uOVseloWTS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOVseloWTS .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uOVseloWTS .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uOVseloWTS .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uOVseloWTS .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uOVseloWTS .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uOVseloWTS .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uOVseloWTS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOVseloWTS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOVseloWTS .dropdown-item.active,
.cid-uOVseloWTS .dropdown-item:active {
  background-color: transparent;
}
.cid-uOVseloWTS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uOVseloWTS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOVseloWTS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOVseloWTS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uOVseloWTS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOVseloWTS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOVseloWTS ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uOVseloWTS .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uOVseloWTS .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uOVseloWTS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uOVseloWTS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uOVseloWTS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uOVseloWTS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uOVseloWTS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uOVseloWTS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uOVseloWTS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uOVseloWTS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uOVseloWTS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uOVseloWTS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uOVseloWTS .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uOVseloWTS a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uOVseloWTS .navbar-brand span {
  display: inline-block;
}
.cid-uOVseloWTS .navbar-brand a {
  font-weight: 550;
}
.cid-uOVseloWTS .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uOVseloWTS .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uOVseloWTS .btn .mbr-iconfont,
.cid-uOVseloWTS .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uOVseloWTS .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uOVseloWTS .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uOVseloWTS .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uOVseloWTS .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uOVseloWTS img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uOVseloWTS .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uOVseloWTS .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uOVseloWTS .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uOVseloWTS a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uOVseloWTS .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uOVseloWTS .socicon {
  line-height: inherit;
}
.cid-uOVseloWTS .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-uOVselT3tG {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uOVselT3tG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOVselT3tG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOVselT3tG .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uOVselT3tG .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-uOVselT3tG .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-uOVsem6vbX {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uOVsem6vbX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOVsem6vbX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uOVsem6vbX .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOVsem6vbX img {
  width: 100%;
  padding: 0;
}
.cid-uOVsem6vbX .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-uOVsem6vbX img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-uOVsem6vbX .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-uOVsem6vbX .mbr-description {
  text-align: center;
}
.cid-uOVsem6vbX .mbr-text {
  color: #000000;
}
.cid-uOVsem6vbX .mbr-section-title {
  color: #000000;
}
.cid-uOVsem6vbX .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-uOVsem6vbX .p-cofesub {
  color: #736451;
}
.cid-uOVsem6vbX ul.disc {
  list-style: disc;
}
.cid-uOVsem6vbX li.disc {
  position: relative;
  padding-left: 0;
}
.cid-uOVsem6vbX ul.decimal {
  list-style: decimal;
}
.cid-uOVsem6vbX li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-uOVsem6vbX ul.star {
  list-style: "* ";
}
.cid-uOVsem6vbX li.star {
  position: relative;
  padding-left: 0;
}
.cid-uOVsem6vbX ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-uOVsem6vbX li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-uOVsemmMXi {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOVsemmMXi .mbr-section-btn {
  justify-content: flex-end;
  display: flex;
  flex-wrap: wrap;
}
.cid-uOVsemzBea {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uOVsemzBea .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOVsemzBea .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOVsemzBea .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uOVsemzBea .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOVsemzBea .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uOVsemzBea .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uOVsemzBea div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uOVsemzBea .copyright {
  color: #bbbbbb;
}
.cid-uOVsemzBea .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uOVsemzBea .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uOVsemzBea .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uOVsB0hrFx .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden ;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uOVsB0hrFx .display-7 {
  font-size: 1.3rem;
}
.cid-uOVsB0hrFx .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uOVsB0hrFx .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uOVsB0hrFx .dropdown-item {
    line-height: 1.5;
    padding-top: 0rem !important;
    padding-right: 0rem !important;
    padding-bottom: 0rem !important;
    padding-left: 0rem !important;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uOVsB0hrFx .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uOVsB0hrFx .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uOVsB0hrFx.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOVsB0hrFx.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOVsB0hrFx.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOVsB0hrFx.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOVsB0hrFx.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uOVsB0hrFx.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOVsB0hrFx.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uOVsB0hrFx.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uOVsB0hrFx .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uOVsB0hrFx .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uOVsB0hrFx .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uOVsB0hrFx .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uOVsB0hrFx .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOVsB0hrFx.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOVsB0hrFx .dropdown-menu {
    top: 0;
  }
  .cid-uOVsB0hrFx .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOVsB0hrFx .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOVsB0hrFx .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: 0.30em solid transparent;
    border-left: 0.30em solid transparent;
  }
  .cid-uOVsB0hrFx .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uOVsB0hrFx ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOVsB0hrFx .dropdown-menu .dropdown-item {
    padding-top: 0.5rem !important;
    padding-bottom: .25rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    background: rgba(203, 201, 180, 0.95);
    text-align: center;
  }
  .cid-uOVsB0hrFx .navbar-brand {
    min-height: 40px;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding: 0 2rem 1rem 0;
    margin: 0 0 1rem 0;
  }
  .cid-uOVsB0hrFx .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uOVsB0hrFx .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uOVsB0hrFx .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uOVsB0hrFx .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uOVsB0hrFx .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uOVsB0hrFx .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uOVsB0hrFx .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uOVsB0hrFx .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uOVsB0hrFx .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uOVsB0hrFx .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uOVsB0hrFx .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uOVsB0hrFx .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uOVsB0hrFx .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uOVsB0hrFx .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uOVsB0hrFx .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uOVsB0hrFx .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uOVsB0hrFx .navbar .dropdown-item {
    padding-top: .2rem;
    padding-right: 1.5rem;
    padding-bottom: 0.2rem;
    padding-left: 1.0rem;
    border-bottom: 0px solid #000000;
    background: #403830;
    border-bottom-width: 1px;
    border-color: #ffffff;
    border-bottom-right-radius: 0rem !important;
    border-top-right-radius: 0rem !important;
    border-bottom-left-radius: 0rem !important;
    border-top-left-radius: 0rem !important;
  }
  .cid-uOVsB0hrFx .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uOVsB0hrFx .navbar .dropdown-item {
  background: #403830;
  border-bottom-width: 1px;
  border-color: #ffffff;
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
}
.cid-uOVsB0hrFx .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uOVsB0hrFx .navbar.opened {
  transition: all .3s;
}
.cid-uOVsB0hrFx .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uOVsB0hrFx .nav-link:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: 0px;
  left: auto;
  right: 0;
}
.cid-uOVsB0hrFx .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uOVsB0hrFx .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uOVsB0hrFx .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uOVsB0hrFx .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uOVsB0hrFx .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uOVsB0hrFx .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uOVsB0hrFx .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uOVsB0hrFx .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uOVsB0hrFx .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uOVsB0hrFx .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uOVsB0hrFx .nav-dropdown .link {
    margin-left: 0 !important;
    margin-right: 1em !important;
    padding: 0.3em 0em !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    font-weight: 550;
  }
}
@media (max-width: 991px) {
  .cid-uOVsB0hrFx .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uOVsB0hrFx .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uOVsB0hrFx .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uOVsB0hrFx .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uOVsB0hrFx .navbar-caption {
  padding-right: 1rem;
}
.cid-uOVsB0hrFx .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uOVsB0hrFx .dropdown-menu,
  .cid-uOVsB0hrFx .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uOVsB0hrFx .dropdown-menu,
  .cid-uOVsB0hrFx .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uOVsB0hrFx .nav-item:focus,
.cid-uOVsB0hrFx .nav-link:focus {
  outline: none;
}
.cid-uOVsB0hrFx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-weight: 550;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-uOVsB0hrFx .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uOVsB0hrFx .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uOVsB0hrFx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uOVsB0hrFx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}
.cid-uOVsB0hrFx .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uOVsB0hrFx .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uOVsB0hrFx .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uOVsB0hrFx .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uOVsB0hrFx .collapsed .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uOVsB0hrFx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOVsB0hrFx .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uOVsB0hrFx .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uOVsB0hrFx .collapsed .dropdown .dropdown-menu .dropdown-item {
  border-bottom-right-radius: 0rem !important;
  border-top-right-radius: 0rem !important;
  border-bottom-left-radius: 0rem !important;
  border-top-left-radius: 0rem !important;
  padding-top: 0.5rem !important;
  padding-bottom: .25rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background: rgba(203, 201, 180, 0.95);
  text-align: center;
  line-height: 1;
  transition: none;
}
.cid-uOVsB0hrFx .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uOVsB0hrFx .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uOVsB0hrFx .navbar-brand {
  min-height: 40px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 10px;
}
.cid-uOVsB0hrFx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOVsB0hrFx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOVsB0hrFx .dropdown-item.active,
.cid-uOVsB0hrFx .dropdown-item:active {
  background-color: transparent;
}
.cid-uOVsB0hrFx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uOVsB0hrFx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOVsB0hrFx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOVsB0hrFx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uOVsB0hrFx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOVsB0hrFx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOVsB0hrFx ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uOVsB0hrFx .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uOVsB0hrFx .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uOVsB0hrFx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uOVsB0hrFx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uOVsB0hrFx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uOVsB0hrFx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uOVsB0hrFx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uOVsB0hrFx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uOVsB0hrFx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uOVsB0hrFx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uOVsB0hrFx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uOVsB0hrFx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uOVsB0hrFx .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uOVsB0hrFx a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uOVsB0hrFx .navbar-brand span {
  display: inline-block;
}
.cid-uOVsB0hrFx .navbar-brand a {
  font-weight: 550;
}
.cid-uOVsB0hrFx .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uOVsB0hrFx .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uOVsB0hrFx .btn .mbr-iconfont,
.cid-uOVsB0hrFx .btn.btn-sm .mbr-iconfont {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 0.2rem;
  padding-left: 0;
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.cid-uOVsB0hrFx .topLineDivSettings {
  z-index: 1;
  width: 100%;
  height: 10px;
  padding-left: 0;
  padding-right: 0;
  border-style: solid;
  border-top-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-bottom-color: #5c1f3d;
  border-top-color: #5c1f3d;
  background: #5c1f3d !important;
  margin: 0;
  overflow: hidden;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #232323;
}
.cid-uOVsB0hrFx .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uOVsB0hrFx .topLineTextSettings {
  margin: 0;
  background: none;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1;
}
.cid-uOVsB0hrFx .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uOVsB0hrFx img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uOVsB0hrFx .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uOVsB0hrFx .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uOVsB0hrFx .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uOVsB0hrFx a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uOVsB0hrFx .mylogo {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  border-width: 3px;
  border-color: #f52110;
  border-radius: 0px;
  margin-top: 0;
  padding-top: 0;
}
.cid-uOVsB0hrFx .socicon {
  line-height: inherit;
}
.cid-uOVsB0hrFx .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-uOVsB0KVBE {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uOVsB0KVBE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOVsB0KVBE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOVsB0KVBE .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uOVsB0KVBE .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-uOVsB0KVBE .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-uOVsB0XKtF {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uOVsB0XKtF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOVsB0XKtF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uOVsB0XKtF .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOVsB0XKtF img {
  width: 100%;
  padding: 0;
}
.cid-uOVsB0XKtF .text-wrapper {
  padding: 0rem 1rem 2rem 1rem;
}
@media (min-width: 992px) {
  .cid-uOVsB0XKtF img {
    width: 100%;
    padding: 0 2rem 1rem 0;
  }
  .cid-uOVsB0XKtF .text-wrapper {
    padding: 0 1rem 2rem 0;
  }
}
.cid-uOVsB0XKtF .mbr-description {
  text-align: center;
}
.cid-uOVsB0XKtF .mbr-text {
  color: #000000;
}
.cid-uOVsB0XKtF .mbr-section-title {
  color: #000000;
}
.cid-uOVsB0XKtF .p-redsub {
  color: #5c1f3d;
  font-weight: bold;
}
.cid-uOVsB0XKtF .p-cofesub {
  color: #736451;
}
.cid-uOVsB0XKtF ul.disc {
  list-style: disc;
}
.cid-uOVsB0XKtF li.disc {
  position: relative;
  padding-left: 0;
}
.cid-uOVsB0XKtF ul.decimal {
  list-style: decimal;
}
.cid-uOVsB0XKtF li.decimal {
  position: relative;
  padding-left: 0;
}
.cid-uOVsB0XKtF ul.star {
  list-style: "* ";
}
.cid-uOVsB0XKtF li.star {
  position: relative;
  padding-left: 0;
}
.cid-uOVsB0XKtF ul.note {
  list-style: "Note: ";
  padding-left: 3.5rem;
}
.cid-uOVsB0XKtF li.note {
  position: relative;
  padding-left: 0rem;
}
.cid-uOVsB1dn0K {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOVsB1dn0K .mbr-section-btn {
  justify-content: flex-end;
  display: flex;
  flex-wrap: wrap;
}
.cid-uOVsB1pH1V {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uOVsB1pH1V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOVsB1pH1V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOVsB1pH1V .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uOVsB1pH1V .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOVsB1pH1V .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uOVsB1pH1V .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uOVsB1pH1V div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uOVsB1pH1V .copyright {
  color: #bbbbbb;
}
.cid-uOVsB1pH1V .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uOVsB1pH1V .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uOVsB1pH1V .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
