.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: #c6b361 !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: #c6b361 !important;
  border-color: #c6b361 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #998737 !important;
  border-color: #998737 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #998737 !important;
  border-color: #998737 !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: #c6b361;
  color: #c6b361;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #998737 !important;
  background-color: transparent!important;
  border-color: #998737 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #c6b361 !important;
  border-color: #c6b361 !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: #c6b361 !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: #8e7d33 !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: #e8e0bf;
}
.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-uHy9cL0Lbc .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-uHy9cL0Lbc .display-7 {
  font-size: 1.3rem;
}
.cid-uHy9cL0Lbc .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHy9cL0Lbc .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHy9cL0Lbc .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-uHy9cL0Lbc .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHy9cL0Lbc .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHy9cL0Lbc.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHy9cL0Lbc.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHy9cL0Lbc.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHy9cL0Lbc.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHy9cL0Lbc.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-uHy9cL0Lbc.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHy9cL0Lbc.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHy9cL0Lbc.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHy9cL0Lbc .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHy9cL0Lbc .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHy9cL0Lbc.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHy9cL0Lbc .dropdown-menu {
    top: 0;
  }
  .cid-uHy9cL0Lbc .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHy9cL0Lbc .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHy9cL0Lbc .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-uHy9cL0Lbc .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHy9cL0Lbc ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHy9cL0Lbc .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-uHy9cL0Lbc .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-uHy9cL0Lbc .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHy9cL0Lbc .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHy9cL0Lbc .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHy9cL0Lbc .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHy9cL0Lbc .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHy9cL0Lbc .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHy9cL0Lbc .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHy9cL0Lbc .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHy9cL0Lbc .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHy9cL0Lbc .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-uHy9cL0Lbc .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHy9cL0Lbc .navbar.opened {
  transition: all .3s;
}
.cid-uHy9cL0Lbc .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHy9cL0Lbc .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHy9cL0Lbc .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHy9cL0Lbc .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHy9cL0Lbc .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHy9cL0Lbc .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .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-uHy9cL0Lbc .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHy9cL0Lbc .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHy9cL0Lbc .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHy9cL0Lbc .navbar-caption {
  padding-right: 1rem;
}
.cid-uHy9cL0Lbc .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHy9cL0Lbc .dropdown-menu,
  .cid-uHy9cL0Lbc .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .dropdown-menu,
  .cid-uHy9cL0Lbc .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHy9cL0Lbc .nav-item:focus,
.cid-uHy9cL0Lbc .nav-link:focus {
  outline: none;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHy9cL0Lbc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHy9cL0Lbc .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHy9cL0Lbc .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHy9cL0Lbc .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHy9cL0Lbc .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHy9cL0Lbc .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHy9cL0Lbc .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHy9cL0Lbc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHy9cL0Lbc .dropdown-item.active,
.cid-uHy9cL0Lbc .dropdown-item:active {
  background-color: transparent;
}
.cid-uHy9cL0Lbc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHy9cL0Lbc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHy9cL0Lbc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHy9cL0Lbc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHy9cL0Lbc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHy9cL0Lbc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHy9cL0Lbc ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHy9cL0Lbc .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHy9cL0Lbc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHy9cL0Lbc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHy9cL0Lbc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHy9cL0Lbc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHy9cL0Lbc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHy9cL0Lbc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHy9cL0Lbc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHy9cL0Lbc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHy9cL0Lbc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHy9cL0Lbc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHy9cL0Lbc .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHy9cL0Lbc a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHy9cL0Lbc .navbar-brand span {
  display: inline-block;
}
.cid-uHy9cL0Lbc .navbar-brand a {
  font-weight: 550;
}
.cid-uHy9cL0Lbc .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHy9cL0Lbc .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHy9cL0Lbc .btn .mbr-iconfont,
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .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-uHy9cL0Lbc .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHy9cL0Lbc img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHy9cL0Lbc .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHy9cL0Lbc .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHy9cL0Lbc .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHy9cL0Lbc a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .socicon {
  line-height: inherit;
}
.cid-uHy9cL0Lbc .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-uw8QlXgLWt {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uw8QlXgLWt img,
.cid-uw8QlXgLWt .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uw8QlXgLWt .item:focus,
.cid-uw8QlXgLWt span:focus {
  outline: none;
}
.cid-uw8QlXgLWt .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uw8QlXgLWt .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uw8QlXgLWt .item-wrapper .item-content {
    padding: 0.5rem 0rem;
  }
}
@media (max-width: 991px) {
  .cid-uw8QlXgLWt .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uw8QlXgLWt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uw8QlXgLWt .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uw8QlXgLWt .mbr-text,
.cid-uw8QlXgLWt .mbr-section-btn {
  text-align: center;
}
.cid-uw8QlXgLWt .item-title {
  text-align: left;
}
.cid-uw8QlXgLWt .item-subtitle {
  text-align: center;
}
.cid-uw8QlXgLWt .iconfont-subtitle-1 {
  text-indent: -0.75em;
  margin-left: 0.9em;
}
.cid-uw8FZVbUIa {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uw8FZVbUIa img,
.cid-uw8FZVbUIa .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uw8FZVbUIa .item:focus,
.cid-uw8FZVbUIa span:focus {
  outline: none;
}
.cid-uw8FZVbUIa .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uw8FZVbUIa .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uw8FZVbUIa .item-wrapper .item-content {
    padding: 0.5rem 0rem;
  }
}
@media (max-width: 991px) {
  .cid-uw8FZVbUIa .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uw8FZVbUIa .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uw8FZVbUIa .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uw8FZVbUIa .mbr-text,
.cid-uw8FZVbUIa .mbr-section-btn {
  text-align: center;
}
.cid-uw8FZVbUIa .item-title {
  text-align: left;
}
.cid-uw8FZVbUIa .item-subtitle {
  text-align: center;
}
.cid-uw8FZVbUIa .iconfont-subtitle-1 {
  text-indent: -0.75em;
  margin-left: 0.9em;
}
.cid-u18uVobwcs {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u18uVobwcs img,
.cid-u18uVobwcs .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-u18uVobwcs .item:focus,
.cid-u18uVobwcs span:focus {
  outline: none;
}
.cid-u18uVobwcs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u18uVobwcs .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u18uVobwcs .item-wrapper .item-content {
    padding: 0.5rem 0rem;
  }
}
@media (max-width: 991px) {
  .cid-u18uVobwcs .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u18uVobwcs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u18uVobwcs .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-u18uVobwcs .mbr-text,
.cid-u18uVobwcs .mbr-section-btn {
  text-align: center;
}
.cid-u18uVobwcs .item-title {
  text-align: left;
}
.cid-u18uVobwcs .item-subtitle {
  text-align: center;
}
.cid-u18uVobwcs .iconfont-subtitle-1 {
  text-indent: -0.75em;
  margin-left: 0.9em;
}
.cid-tt9QI8VRPY {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tt9QI8VRPY img,
.cid-tt9QI8VRPY .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-tt9QI8VRPY .item:focus,
.cid-tt9QI8VRPY span:focus {
  outline: none;
}
.cid-tt9QI8VRPY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tt9QI8VRPY .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tt9QI8VRPY .item-wrapper .item-content {
    padding: 0.5rem 0rem;
  }
}
@media (max-width: 991px) {
  .cid-tt9QI8VRPY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tt9QI8VRPY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tt9QI8VRPY .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tt9QI8VRPY .mbr-text,
.cid-tt9QI8VRPY .mbr-section-btn {
  text-align: center;
}
.cid-tt9QI8VRPY .item-title {
  text-align: left;
}
.cid-tt9QI8VRPY .item-subtitle {
  text-align: center;
}
.cid-tt9QI8VRPY .iconfont-subtitle-1 {
  text-indent: -0.75em;
  margin-left: 0.9em;
}
.cid-uHyihNQq85 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uHyihNQq85 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHyihNQq85 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHyihNQq85 .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uHyihNQq85 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uHyihNQq85 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uHyihNQq85 .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uHyihNQq85 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uHyihNQq85 .copyright {
  color: #bbbbbb;
}
.cid-uHyihNQq85 .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uHyihNQq85 .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uHyihNQq85 .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .display-7 {
  font-size: 1.3rem;
}
.cid-uHy9cL0Lbc .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHy9cL0Lbc .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHy9cL0Lbc .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-uHy9cL0Lbc .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHy9cL0Lbc .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHy9cL0Lbc.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHy9cL0Lbc.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHy9cL0Lbc.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHy9cL0Lbc.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHy9cL0Lbc.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-uHy9cL0Lbc.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHy9cL0Lbc.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHy9cL0Lbc.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHy9cL0Lbc .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHy9cL0Lbc .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHy9cL0Lbc.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHy9cL0Lbc .dropdown-menu {
    top: 0;
  }
  .cid-uHy9cL0Lbc .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHy9cL0Lbc .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHy9cL0Lbc .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-uHy9cL0Lbc .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHy9cL0Lbc ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHy9cL0Lbc .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-uHy9cL0Lbc .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-uHy9cL0Lbc .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHy9cL0Lbc .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHy9cL0Lbc .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHy9cL0Lbc .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHy9cL0Lbc .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHy9cL0Lbc .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHy9cL0Lbc .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHy9cL0Lbc .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHy9cL0Lbc .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHy9cL0Lbc .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-uHy9cL0Lbc .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHy9cL0Lbc .navbar.opened {
  transition: all .3s;
}
.cid-uHy9cL0Lbc .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHy9cL0Lbc .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHy9cL0Lbc .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHy9cL0Lbc .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHy9cL0Lbc .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHy9cL0Lbc .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .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-uHy9cL0Lbc .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHy9cL0Lbc .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHy9cL0Lbc .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHy9cL0Lbc .navbar-caption {
  padding-right: 1rem;
}
.cid-uHy9cL0Lbc .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHy9cL0Lbc .dropdown-menu,
  .cid-uHy9cL0Lbc .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .dropdown-menu,
  .cid-uHy9cL0Lbc .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHy9cL0Lbc .nav-item:focus,
.cid-uHy9cL0Lbc .nav-link:focus {
  outline: none;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHy9cL0Lbc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHy9cL0Lbc .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHy9cL0Lbc .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHy9cL0Lbc .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHy9cL0Lbc .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHy9cL0Lbc .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHy9cL0Lbc .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHy9cL0Lbc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHy9cL0Lbc .dropdown-item.active,
.cid-uHy9cL0Lbc .dropdown-item:active {
  background-color: transparent;
}
.cid-uHy9cL0Lbc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHy9cL0Lbc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHy9cL0Lbc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHy9cL0Lbc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHy9cL0Lbc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHy9cL0Lbc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHy9cL0Lbc ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHy9cL0Lbc .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHy9cL0Lbc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHy9cL0Lbc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHy9cL0Lbc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHy9cL0Lbc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHy9cL0Lbc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHy9cL0Lbc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHy9cL0Lbc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHy9cL0Lbc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHy9cL0Lbc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHy9cL0Lbc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHy9cL0Lbc .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHy9cL0Lbc a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHy9cL0Lbc .navbar-brand span {
  display: inline-block;
}
.cid-uHy9cL0Lbc .navbar-brand a {
  font-weight: 550;
}
.cid-uHy9cL0Lbc .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHy9cL0Lbc .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHy9cL0Lbc .btn .mbr-iconfont,
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .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-uHy9cL0Lbc .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHy9cL0Lbc img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHy9cL0Lbc .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHy9cL0Lbc .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHy9cL0Lbc .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHy9cL0Lbc a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .socicon {
  line-height: inherit;
}
.cid-uHy9cL0Lbc .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-uHtZ7B5oZU {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHtZ7B5oZU img,
.cid-uHtZ7B5oZU .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uHtZ7B5oZU .item:focus,
.cid-uHtZ7B5oZU span:focus {
  outline: none;
}
.cid-uHtZ7B5oZU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uHtZ7B5oZU .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uHtZ7B5oZU .item-wrapper .item-content {
    padding: 0.5rem 0rem;
  }
}
@media (max-width: 991px) {
  .cid-uHtZ7B5oZU .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uHtZ7B5oZU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uHtZ7B5oZU .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uHtZ7B5oZU .mbr-text,
.cid-uHtZ7B5oZU .mbr-section-btn {
  text-align: center;
}
.cid-uHtZ7B5oZU .item-title {
  text-align: left;
}
.cid-uHtZ7B5oZU .item-subtitle {
  text-align: center;
}
.cid-uHtZ7B5oZU .iconfont-subtitle-1 {
  text-indent: -0.75em;
  margin-left: 0.9em;
}
.cid-uHyihNQq85 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uHyihNQq85 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHyihNQq85 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHyihNQq85 .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uHyihNQq85 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uHyihNQq85 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uHyihNQq85 .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uHyihNQq85 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uHyihNQq85 .copyright {
  color: #bbbbbb;
}
.cid-uHyihNQq85 .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uHyihNQq85 .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uHyihNQq85 .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .display-7 {
  font-size: 1.3rem;
}
.cid-uHy9cL0Lbc .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHy9cL0Lbc .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHy9cL0Lbc .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-uHy9cL0Lbc .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHy9cL0Lbc .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHy9cL0Lbc.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHy9cL0Lbc.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHy9cL0Lbc.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHy9cL0Lbc.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHy9cL0Lbc.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-uHy9cL0Lbc.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHy9cL0Lbc.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHy9cL0Lbc.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHy9cL0Lbc .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHy9cL0Lbc .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHy9cL0Lbc.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHy9cL0Lbc .dropdown-menu {
    top: 0;
  }
  .cid-uHy9cL0Lbc .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHy9cL0Lbc .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHy9cL0Lbc .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-uHy9cL0Lbc .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHy9cL0Lbc ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHy9cL0Lbc .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-uHy9cL0Lbc .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-uHy9cL0Lbc .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHy9cL0Lbc .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHy9cL0Lbc .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHy9cL0Lbc .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHy9cL0Lbc .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHy9cL0Lbc .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHy9cL0Lbc .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHy9cL0Lbc .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHy9cL0Lbc .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHy9cL0Lbc .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-uHy9cL0Lbc .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHy9cL0Lbc .navbar.opened {
  transition: all .3s;
}
.cid-uHy9cL0Lbc .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHy9cL0Lbc .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHy9cL0Lbc .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHy9cL0Lbc .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHy9cL0Lbc .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHy9cL0Lbc .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .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-uHy9cL0Lbc .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHy9cL0Lbc .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHy9cL0Lbc .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHy9cL0Lbc .navbar-caption {
  padding-right: 1rem;
}
.cid-uHy9cL0Lbc .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHy9cL0Lbc .dropdown-menu,
  .cid-uHy9cL0Lbc .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .dropdown-menu,
  .cid-uHy9cL0Lbc .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHy9cL0Lbc .nav-item:focus,
.cid-uHy9cL0Lbc .nav-link:focus {
  outline: none;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHy9cL0Lbc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHy9cL0Lbc .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHy9cL0Lbc .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHy9cL0Lbc .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHy9cL0Lbc .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHy9cL0Lbc .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHy9cL0Lbc .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHy9cL0Lbc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHy9cL0Lbc .dropdown-item.active,
.cid-uHy9cL0Lbc .dropdown-item:active {
  background-color: transparent;
}
.cid-uHy9cL0Lbc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHy9cL0Lbc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHy9cL0Lbc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHy9cL0Lbc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHy9cL0Lbc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHy9cL0Lbc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHy9cL0Lbc ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHy9cL0Lbc .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHy9cL0Lbc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHy9cL0Lbc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHy9cL0Lbc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHy9cL0Lbc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHy9cL0Lbc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHy9cL0Lbc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHy9cL0Lbc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHy9cL0Lbc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHy9cL0Lbc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHy9cL0Lbc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHy9cL0Lbc .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHy9cL0Lbc a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHy9cL0Lbc .navbar-brand span {
  display: inline-block;
}
.cid-uHy9cL0Lbc .navbar-brand a {
  font-weight: 550;
}
.cid-uHy9cL0Lbc .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHy9cL0Lbc .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHy9cL0Lbc .btn .mbr-iconfont,
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .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-uHy9cL0Lbc .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHy9cL0Lbc img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHy9cL0Lbc .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHy9cL0Lbc .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHy9cL0Lbc .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHy9cL0Lbc a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .socicon {
  line-height: inherit;
}
.cid-uHy9cL0Lbc .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-uHtYmkZjnj {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uHtYmkZjnj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHtYmkZjnj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHtYmkZjnj .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uHtYmkZjnj .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-uHtYmkZjnj .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-uHtYXXPTvj {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHtYXXPTvj .mbr-section-btn {
  justify-content: flex-start;
  display: flex;
  flex-wrap: wrap;
}
.cid-uHtYn5YnSe {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHtYn5YnSe img,
.cid-uHtYn5YnSe .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uHtYn5YnSe .item:focus,
.cid-uHtYn5YnSe span:focus {
  outline: none;
}
.cid-uHtYn5YnSe .item {
  margin-bottom: 2rem;
}
.cid-uHtYn5YnSe .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uHtYn5YnSe .item-wrapper .item-content {
    padding: 0.5rem 0rem;
  }
}
@media (max-width: 991px) {
  .cid-uHtYn5YnSe .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uHtYn5YnSe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uHtYn5YnSe .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uHtYn5YnSe .mbr-text,
.cid-uHtYn5YnSe .mbr-section-btn {
  text-align: center;
}
.cid-uHtYn5YnSe .item-title {
  text-align: left;
}
.cid-uHtYn5YnSe .item-subtitle {
  text-align: center;
}
.cid-uHtYn5YnSe .iconfont-subtitle-1 {
  text-indent: -0.75em;
  margin-left: 0.9em;
}
.cid-uHtYn5YnSe .mbr-section-subtitle {
  text-align: center;
}
.cid-uHtYnDcLTB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHtYnDcLTB img,
.cid-uHtYnDcLTB .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uHtYnDcLTB .item:focus,
.cid-uHtYnDcLTB span:focus {
  outline: none;
}
.cid-uHtYnDcLTB .item {
  margin-bottom: 2rem;
}
.cid-uHtYnDcLTB .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uHtYnDcLTB .item-wrapper .item-content {
    padding: 0.5rem 0rem;
  }
}
@media (max-width: 991px) {
  .cid-uHtYnDcLTB .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uHtYnDcLTB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uHtYnDcLTB .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uHtYnDcLTB .mbr-text,
.cid-uHtYnDcLTB .mbr-section-btn {
  text-align: center;
}
.cid-uHtYnDcLTB .item-title {
  text-align: left;
}
.cid-uHtYnDcLTB .item-subtitle {
  text-align: center;
}
.cid-uHtYnDcLTB .iconfont-subtitle-1 {
  text-indent: -0.75em;
  margin-left: 0.9em;
}
.cid-uHtYnDcLTB .mbr-section-subtitle {
  text-align: center;
}
.cid-uHtYo4bS6m {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHtYo4bS6m img,
.cid-uHtYo4bS6m .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uHtYo4bS6m .item:focus,
.cid-uHtYo4bS6m span:focus {
  outline: none;
}
.cid-uHtYo4bS6m .item {
  margin-bottom: 2rem;
}
.cid-uHtYo4bS6m .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uHtYo4bS6m .item-wrapper .item-content {
    padding: 0.5rem 0rem;
  }
}
@media (max-width: 991px) {
  .cid-uHtYo4bS6m .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uHtYo4bS6m .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uHtYo4bS6m .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uHtYo4bS6m .mbr-text,
.cid-uHtYo4bS6m .mbr-section-btn {
  text-align: center;
}
.cid-uHtYo4bS6m .item-title {
  text-align: left;
}
.cid-uHtYo4bS6m .item-subtitle {
  text-align: center;
}
.cid-uHtYo4bS6m .iconfont-subtitle-1 {
  text-indent: -0.75em;
  margin-left: 0.9em;
}
.cid-uHtYo4bS6m .mbr-section-subtitle {
  text-align: center;
}
.cid-uHtYp1Om4Y {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uHtYp1Om4Y img,
.cid-uHtYp1Om4Y .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uHtYp1Om4Y .item:focus,
.cid-uHtYp1Om4Y span:focus {
  outline: none;
}
.cid-uHtYp1Om4Y .item {
  margin-bottom: 2rem;
}
.cid-uHtYp1Om4Y .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uHtYp1Om4Y .item-wrapper .item-content {
    padding: 0.5rem 0rem;
  }
}
@media (max-width: 991px) {
  .cid-uHtYp1Om4Y .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uHtYp1Om4Y .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uHtYp1Om4Y .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uHtYp1Om4Y .mbr-text,
.cid-uHtYp1Om4Y .mbr-section-btn {
  text-align: center;
}
.cid-uHtYp1Om4Y .item-title {
  text-align: left;
}
.cid-uHtYp1Om4Y .item-subtitle {
  text-align: center;
}
.cid-uHtYp1Om4Y .iconfont-subtitle-1 {
  text-indent: -0.75em;
  margin-left: 0.9em;
}
.cid-uHtYp1Om4Y .mbr-section-subtitle {
  text-align: center;
}
.cid-uHyihNQq85 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uHyihNQq85 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHyihNQq85 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHyihNQq85 .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uHyihNQq85 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uHyihNQq85 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uHyihNQq85 .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uHyihNQq85 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uHyihNQq85 .copyright {
  color: #bbbbbb;
}
.cid-uHyihNQq85 .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uHyihNQq85 .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uHyihNQq85 .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .display-7 {
  font-size: 1.3rem;
}
.cid-uHy9cL0Lbc .navbar-collapse {
  -webkit-justify-content: flex;
  justify-content: flex;
  z-index: 1;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHy9cL0Lbc .icons-menu {
    padding: 1rem 0!important;
  }
  .cid-uHy9cL0Lbc .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-uHy9cL0Lbc .dropdown-item:hover {
    color: #49351b !important;
  }
  .cid-uHy9cL0Lbc .navbar-collapse {
    justify-content: space-between;
    z-index: 1;
    padding-bottom: 10px;
  }
  .cid-uHy9cL0Lbc.collapsed .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHy9cL0Lbc.collapsed.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHy9cL0Lbc.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHy9cL0Lbc.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHy9cL0Lbc.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-uHy9cL0Lbc.collapsed ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHy9cL0Lbc.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHy9cL0Lbc.collapsed .icons-menu {
    margin: auto;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px !important;
    margin-top: 0px !important;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short .navbar-logo img {
    height: 7rem !important;
  }
  .cid-uHy9cL0Lbc .dropdown-menu {
    padding-top: 0;
    min-width: 5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uHy9cL0Lbc .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHy9cL0Lbc.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHy9cL0Lbc .dropdown-menu {
    top: 0;
  }
  .cid-uHy9cL0Lbc .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHy9cL0Lbc .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHy9cL0Lbc .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-uHy9cL0Lbc .navbar-logo img {
    height: 7rem !important;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
  }
  .cid-uHy9cL0Lbc ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHy9cL0Lbc .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-uHy9cL0Lbc .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-uHy9cL0Lbc .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uHy9cL0Lbc .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
@media (max-width: 575px) {
  .cid-uHy9cL0Lbc .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 185px;
  }
}
@media (min-width: 576px) {
  .cid-uHy9cL0Lbc .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 295px;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 230px;
  }
}
@media (min-width: 1200px) {
  .cid-uHy9cL0Lbc .navbar-caption-wrap {
    word-break: normal;
    display: inline-block;
    max-width: 290px;
  }
}
.cid-uHy9cL0Lbc .container {
  max-width: 1480px !important;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .container {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-end;
  }
}
.cid-uHy9cL0Lbc .navbar {
  min-height: 40px;
  -webkit-flex-direction: column;
  flex-direction: column;
  transition: all .3s;
  background: #dcdac3 !important;
  background: none !important;
}
.cid-uHy9cL0Lbc .navbar ul {
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .cid-uHy9cL0Lbc .navbar ul {
    justify-content: start;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .navbar .navbar-logo {
    padding-right: 1rem;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short {
    background: #dcdac3 !important;
    min-height: 10px;
    margin-top: 0px !important;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short .topLineDivSettings {
    display: none;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short .navbar-logo img {
    padding-top: 0;
    margin-top: 0;
    height: 3.8rem !important;
  }
  .cid-uHy9cL0Lbc .navbar.navbar-short .navbar-brand {
    padding-top: 0;
    padding-bottom: 10px;
    margin-top: 0;
  }
  .cid-uHy9cL0Lbc .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-uHy9cL0Lbc .navbar .dropdown-item:hover {
    color: #d43a32 !important;
    background: white !important;
  }
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .navbar .dropdown-item:hover {
  color: #d43a32 !important;
  background: white !important;
}
.cid-uHy9cL0Lbc .navbar.opened {
  transition: all .3s;
}
.cid-uHy9cL0Lbc .nav-link {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: auto;
  transition: all 0.3s;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .nav-link:hover {
  color: #49351b !important;
  background: none !important;
}
.cid-uHy9cL0Lbc .nav-link:hover:before {
  color: #49351b !important;
  width: 0;
  height: 1px;
  right: auto;
  left: 0;
  bottom: 4px;
  width: 100%;
}
.cid-uHy9cL0Lbc .nav-link.active {
  color: #49351b;
  background-color: #DCDAC366;
  width: 98%;
  border-radius: 5px;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .icons-menu {
    display: flex;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .icons-menu {
    min-width: 100px;
    width: 100px;
    display: unset;
    line-height: 1;
    text-align: left;
    -webkit-justify-content: flex;
    justify-content: flex;
  }
}
.cid-uHy9cL0Lbc .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uHy9cL0Lbc .dropdown-menu {
  margin-left: -0.8rem;
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .dropdown-menu {
    min-width: 5rem;
    padding-top: 0rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uHy9cL0Lbc .dropdown-menu {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .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-uHy9cL0Lbc .nav-dropdown .link.dropdown-toggle::after {
    margin-left: .3em;
    margin-top: 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .nav-dropdown .link.dropdown-toggle::after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    margin-right: 0rem;
  }
}
.cid-uHy9cL0Lbc .nav-dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.cid-uHy9cL0Lbc .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHy9cL0Lbc .navbar-caption {
  padding-right: 1rem;
}
.cid-uHy9cL0Lbc .navbar-nav {
  width: 100%;
  display: flex;
  -webkit-justify-content: flex;
  justify-content: flex;
}
@media (max-width: 991px) {
  .cid-uHy9cL0Lbc .dropdown-menu,
  .cid-uHy9cL0Lbc .navbar.opened {
    background: rgba(220, 218, 195, 0.95) !important;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .dropdown-menu,
  .cid-uHy9cL0Lbc .navbar.opened {
    background: #dcdac3 !important;
  }
}
.cid-uHy9cL0Lbc .nav-item:focus,
.cid-uHy9cL0Lbc .nav-link:focus {
  outline: none;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.0rem;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .dropdown .dropdown-menu .dropdown-item::after {
    right: 0.5rem;
  }
}
.cid-uHy9cL0Lbc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: 0rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .dropdown .dropdown-menu {
  margin-left: -0.8rem;
}
.cid-uHy9cL0Lbc .collapsed .navbar-buttons {
  text-align: center;
  width: auto;
  padding-bottom: 1rem;
}
.cid-uHy9cL0Lbc .collapsed .icons-menu {
  text-align: center;
  width: auto;
}
.cid-uHy9cL0Lbc .collapsed .dropdown-menu {
  top: 0;
  min-width: 2rem !important;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHy9cL0Lbc .collapsed .nav-dropdown .dropdown-item:after {
  right: auto;
}
.cid-uHy9cL0Lbc .collapsed .dropdown .dropdown-menu {
  background: none;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .collapsed .dropdown .dropdown-menu .dropdown-item:hover {
  color: #49351b !important;
}
.cid-uHy9cL0Lbc .collapsed .dropdown .dropdown-menu .dropdown-item .navbar.navbar-short .topLineDivSettings {
  display: none;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHy9cL0Lbc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHy9cL0Lbc .dropdown-item.active,
.cid-uHy9cL0Lbc .dropdown-item:active {
  background-color: transparent;
}
.cid-uHy9cL0Lbc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-weight: 550;
}
.cid-uHy9cL0Lbc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHy9cL0Lbc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHy9cL0Lbc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: none !important;
}
.cid-uHy9cL0Lbc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHy9cL0Lbc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHy9cL0Lbc ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uHy9cL0Lbc .navbar-buttons {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uHy9cL0Lbc .navbar-buttons {
    justify-content: flex-start;
    padding-right: 4rem;
    text-align: left;
    min-width: 120px;
    width: 120px;
  }
}
.cid-uHy9cL0Lbc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHy9cL0Lbc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #49351b;
}
.cid-uHy9cL0Lbc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHy9cL0Lbc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHy9cL0Lbc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHy9cL0Lbc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHy9cL0Lbc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHy9cL0Lbc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHy9cL0Lbc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHy9cL0Lbc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHy9cL0Lbc .navbar-dropdown {
  padding: .0rem 0rem;
}
.cid-uHy9cL0Lbc a.nav-link {
  display: flex;
  font-weight: 550;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uHy9cL0Lbc .navbar-brand span {
  display: inline-block;
}
.cid-uHy9cL0Lbc .navbar-brand a {
  font-weight: 550;
}
.cid-uHy9cL0Lbc .TopMenuUnderline {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0px;
  border-left-width: 0;
  border-right-width: 0;
  border-color: #ffffff;
}
.cid-uHy9cL0Lbc .btn-sm {
  white-space: nowrap;
  margin: 0.3rem;
  padding: 0.3rem;
  border-radius: 5px;
  font-weight: 550;
  font-size: 0.95rem;
}
.cid-uHy9cL0Lbc .btn .mbr-iconfont,
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .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-uHy9cL0Lbc .topLineDivSettings span {
  font-weight: 100 !important;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 10px;
}
.cid-uHy9cL0Lbc img {
  width: auto;
  padding: 0;
  margin: 0;
}
.cid-uHy9cL0Lbc .navbar-dropdown .navbar-brand span {
  vertical-align: middle;
}
.cid-uHy9cL0Lbc .navbar-dropdown.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHy9cL0Lbc .navbar-dropdown .navbar-logo {
  margin-right: 0.8rem;
}
.cid-uHy9cL0Lbc a.btn {
  min-width: auto !important;
  line-height: normal !important;
}
.cid-uHy9cL0Lbc .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-uHy9cL0Lbc .socicon {
  line-height: inherit;
}
.cid-uHy9cL0Lbc .btn:hover {
  -webkit-transform: translateY(0px) !important;
  transform: translateY(0px);
}
.cid-uHtUK6qBBc {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uHtUK6qBBc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHtUK6qBBc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHtUK6qBBc .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uHtUK6qBBc .image-wrap img {
    display: block;
    margin: 0;
    padding: 0;
    padding-right: 2rem;
    width: 114%;
  }
}
.cid-uHtUK6qBBc .mbr-section-title {
  text-align: left;
  color: #5c1f3d;
}
.cid-uHu26TLMCE {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHu26TLMCE .mbr-section-btn {
  justify-content: flex-start;
  display: flex;
  flex-wrap: wrap;
}
.cid-uHtUK7uW9H {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uHtUK7uW9H img,
.cid-uHtUK7uW9H .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uHtUK7uW9H .item:focus,
.cid-uHtUK7uW9H span:focus {
  outline: none;
}
.cid-uHtUK7uW9H .item {
  margin-bottom: 2rem;
}
.cid-uHtUK7uW9H .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uHtUK7uW9H .item-wrapper .item-content {
    padding: 0.5rem 0rem;
  }
}
@media (max-width: 991px) {
  .cid-uHtUK7uW9H .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uHtUK7uW9H .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uHtUK7uW9H .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uHtUK7uW9H .mbr-text,
.cid-uHtUK7uW9H .mbr-section-btn {
  text-align: center;
}
.cid-uHtUK7uW9H .item-title {
  text-align: left;
}
.cid-uHtUK7uW9H .item-subtitle {
  text-align: center;
}
.cid-uHtUK7uW9H .iconfont-subtitle-1 {
  text-indent: -0.75em;
  margin-left: 0.9em;
}
.cid-uHtUK7uW9H .mbr-section-subtitle {
  text-align: center;
}
.cid-uHyihNQq85 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
}
.cid-uHyihNQq85 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHyihNQq85 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHyihNQq85 .list {
  list-style: none;
  color: #ffffff;
  text-align: left;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-uHyihNQq85 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uHyihNQq85 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uHyihNQq85 .row {
    text-align: left;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uHyihNQq85 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uHyihNQq85 .copyright {
  color: #bbbbbb;
}
.cid-uHyihNQq85 .mbr-section-subtitle {
  text-align: left;
  color: #fffdea;
}
.cid-uHyihNQq85 .col-lg-1-7 {
  position: relative;
  min-height: 1px;
  justify-content: start;
}
@media (min-width: 1200px) {
  .cid-uHyihNQq85 .col-lg-1-7 {
    width: 14.2%;
    float: left;
    justify-content: space-between;
    padding-right: 0.1rem;
  }
}
