body {
  font-family: Sora;
}
.display-1 {
  font-family: 'Avenir LT 35 Light';
  font-size: 1.8rem;
  line-height: 1.075;
  letter-spacing: .15px;
}
.display-1 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-2 {
  font-family: 'Avenir LT 35 Light';
  font-size: 1.2rem;
  line-height: 1.075;
  letter-spacing: .46px;
}
.display-2 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-4 {
  font-family: 'Avenir LT 35 Light';
  font-size: 3rem;
  line-height: 2;
  letter-spacing: .37px;
}
.display-4 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-5 {
  font-family: 'Avenir LT 35 Light';
  font-size: 2rem;
  line-height: 1.375;
  letter-spacing: .09px;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Avenir LT 35 Light';
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: .37px;
}
.display-7 > .mbr-iconfont {
  font-size: 1.875rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 1.44rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.26rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 14px 40px;
  border-radius: 0;
}
.btn-sm {
  padding: 12px 31px;
  border-radius: 0;
}
.btn-md {
  padding: 14px 40px;
  border-radius: 0;
}
.btn-lg {
  padding: 14px 40px;
  border-radius: 0;
}
.bg-primary {
  background-color: #ffa952 !important;
}
.bg-success {
  background-color: #0a5f3e !important;
}
.bg-info {
  background-color: #93281e !important;
}
.bg-warning {
  background-color: #0a5f3e !important;
}
.bg-danger {
  background-color: #ffa952 !important;
}
.btn-primary,
.btn-primary:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #ffa952 !important;
  border-color: #ffa952 !important;
  color: #ffffff !important;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #0a5f3e;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  border-color: #0a5f3e !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before,
.btn-primary.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0a5f3e !important;
  border-color: #0a5f3e !important;
}
.btn-secondary,
.btn-secondary:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #0a5f3e !important;
  border-color: #0a5f3e !important;
  color: #ffffff !important;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #ffa952;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  border-color: #ffa952 !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before,
.btn-secondary.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ffa952 !important;
  border-color: #ffa952 !important;
}
.btn-info,
.btn-info:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #93281e !important;
  border-color: #93281e !important;
  color: #ffffff !important;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #0a5f3e;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  border-color: #0a5f3e !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before,
.btn-info.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0a5f3e !important;
  border-color: #0a5f3e !important;
}
.btn-success,
.btn-success:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #0a5f3e !important;
  border-color: #0a5f3e !important;
  color: #ffffff !important;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #ffa952;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  border-color: #ffa952 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before,
.btn-success.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #ffa952 !important;
  border-color: #ffa952 !important;
}
.btn-warning,
.btn-warning:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #0a5f3e !important;
  border-color: #0a5f3e !important;
  color: #ffffff !important;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #0a5f3e;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  border-color: #0a5f3e !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before,
.btn-warning.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #0a5f3e !important;
  border-color: #0a5f3e !important;
}
.btn-danger,
.btn-danger:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #ffa952 !important;
  border-color: #ffa952 !important;
  color: #ffffff !important;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #0a5f3e;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  border-color: #0a5f3e !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before,
.btn-danger.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0a5f3e !important;
  border-color: #0a5f3e !important;
}
.btn-white,
.btn-white:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #cac8bc;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #ffffff !important;
  border-color: #cac8bc !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before,
.btn-white.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #cac8bc !important;
  border-color: #cac8bc !important;
}
.btn-black,
.btn-black:active {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #282727 !important;
  border-color: #282727 !important;
  color: #ffffff !important;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -10%;
  width: 120%;
  height: 200%;
  background: #000000;
  transform: rotate(-25deg) scaleX(0);
  transform-origin: 0 50%;
  transition: transform ease-out 0.5s;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before,
.btn-black.active:before {
  transform: rotate(0) scaleX(1);
  transition-timing-function: ease-in;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn[class*="outline"] {
  border: 0;
  border-bottom: 1px solid;
  padding: 0 0 4px 0;
}
.btn[class*="outline"].btn-lg {
  padding: 0 0 5px 0;
}
.btn-primary-outline {
  border-color: #ffa952;
  color: #ffa952;
  background-color: transparent;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #0a5f3e;
  color: #0a5f3e;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  background-color: transparent !important;
  color: #031a11;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #0a5f3e !important;
  border-color: #0a5f3e !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #93281e;
  color: #93281e;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  background-color: transparent !important;
  color: #531711;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #93281e !important;
  border-color: #93281e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #0a5f3e;
  color: #0a5f3e;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  background-color: transparent !important;
  color: #031a11;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #0a5f3e !important;
  border-color: #0a5f3e !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #0a5f3e;
  color: #0a5f3e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  background-color: transparent !important;
  color: #031a11;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #0a5f3e !important;
  border-color: #0a5f3e !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ffa952;
  color: #ffa952;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  background-color: transparent !important;
  color: #ff8305;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ffa952 !important;
  border-color: #ffa952 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #282727;
  color: #282727;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  background-color: transparent !important;
  color: #010101;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #282727 !important;
  border-color: #282727 !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 {
  background-color: transparent !important;
  color: #d4d4d4;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ffa952 !important;
}
.text-secondary {
  color: #0a5f3e !important;
}
.text-success {
  color: #0a5f3e !important;
}
.text-info {
  color: #93281e !important;
}
.text-warning {
  color: #0a5f3e !important;
}
.text-danger {
  color: #ffa952 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #282727 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #eb7600 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000302 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000302 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #3e110d !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #000302 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #eb7600 !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;
}
.nav-tabs .nav-link.active {
  color: #ffa952;
}
.nav-tabs .nav-link:not(.active) {
  color: #282727;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #93281e;
}
.alert-warning {
  background-color: #0a5f3e;
}
.alert-danger {
  background-color: #ffa952;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffa952;
  border-color: #ffa952;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffa952;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #16d289;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dc6054;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #16d289;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Avenir LT 35 Light';
  font-size: 3rem;
  line-height: 2;
  letter-spacing: .37px;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 3.75rem;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Avenir LT 35 Light';
  font-size: 3rem;
  line-height: 2;
  letter-spacing: .37px;
  font-weight: 400;
  color: #ef8e81 !important;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 3.75rem;
}
blockquote {
  border-color: #ffa952;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
form .btn {
  border-radius: 0 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffa952;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffa952;
}
.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: #ffa952;
  border-bottom-color: #ffa952;
}
.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: #000000 !important;
  background-color: #ffa952 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #0a5f3e !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='%23ffa952' %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-se8hkYiDL2 .nav-item:focus,
.cid-se8hkYiDL2 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-se8hkYiDL2 .nav-item {
    position: relative;
  }
}
.cid-se8hkYiDL2 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-se8hkYiDL2 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #6a3629;
}
.cid-se8hkYiDL2 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #6a3629 !important;
}
.cid-se8hkYiDL2 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-se8hkYiDL2 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-se8hkYiDL2 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-se8hkYiDL2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-se8hkYiDL2 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se8hkYiDL2 .navbar.collapsed .navbar-collapse.show,
.cid-se8hkYiDL2 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-se8hkYiDL2 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-se8hkYiDL2 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-se8hkYiDL2 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-se8hkYiDL2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-se8hkYiDL2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-se8hkYiDL2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-se8hkYiDL2 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-se8hkYiDL2 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-se8hkYiDL2 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-se8hkYiDL2 .navbar.collapsed .right-menu,
.cid-se8hkYiDL2 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-se8hkYiDL2 .navbar .navbar-collapse.show,
  .cid-se8hkYiDL2 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-se8hkYiDL2 .navbar .navbar-collapse.show .brand-container,
  .cid-se8hkYiDL2 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-se8hkYiDL2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-se8hkYiDL2 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-se8hkYiDL2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-se8hkYiDL2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-se8hkYiDL2 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-se8hkYiDL2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-se8hkYiDL2 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-se8hkYiDL2 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-se8hkYiDL2 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-se8hkYiDL2 .navbar .right-menu,
  .cid-se8hkYiDL2 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-se8hkYiDL2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-se8hkYiDL2 .navbar.navbar-short .mbr-overlay {
  background: #6a3629 !important;
}
.cid-se8hkYiDL2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-se8hkYiDL2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-se8hkYiDL2 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-se8hkYiDL2 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-se8hkYiDL2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-se8hkYiDL2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-se8hkYiDL2 .dropdown-item.active,
.cid-se8hkYiDL2 .dropdown-item:active {
  background-color: transparent;
}
.cid-se8hkYiDL2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-se8hkYiDL2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-se8hkYiDL2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6a3629;
}
.cid-se8hkYiDL2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-se8hkYiDL2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-se8hkYiDL2 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-se8hkYiDL2 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-se8hkYiDL2 .navbar-buttons {
  margin-left: auto;
}
.cid-se8hkYiDL2 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-se8hkYiDL2 button.navbar-toggler:hover {
  outline: none;
}
.cid-se8hkYiDL2 button.navbar-toggler:active {
  outline: none;
}
.cid-se8hkYiDL2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffa952;
}
.cid-se8hkYiDL2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-se8hkYiDL2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-se8hkYiDL2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-se8hkYiDL2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-se8hkYiDL2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se8hkYiDL2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-se8hkYiDL2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-se8hkYiDL2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-se8hkYiDL2 a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-se8hkYiDL2 a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-se8hkYiDL2 a.nav-link:hover:before {
  transform: scale(1);
}
.cid-se8hkYiDL2 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-se8hkYiDL2 .right-menu,
.cid-se8hkYiDL2 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-se8hkYiDL2 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se8hkYiDL2 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-se8hkYiDL2 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-se8hkYiDL2 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-se8hkYiDL2 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-se8hkYiDL2 .card-wrapper {
  z-index: 3;
}
.cid-se8hkYiDL2 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-se8hkYiDL2 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-se8hkYiDL2 .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-se8hkYiDL2 .navbar-brand img {
  width: auto !important;
}
.cid-se8xQhJViB {
  display: flex;
  background-image: url("../../../assets/images/couvok-1920x1080.jpeg");
}
.cid-se8xQhJViB .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-se8xQhJViB .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-se8xQhJViB {
    align-items: center;
  }
  .cid-se8xQhJViB .row {
    justify-content: flex-start;
  }
  .cid-se8xQhJViB .content-wrap {
    width: 32%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-se8xQhJViB .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-se8xQhJViB {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-se8xQhJViB .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-se8xQhJViB .content-wrap {
    width: 100%;
  }
}
.cid-se8xQhJViB .mbr-section-title {
  color: #6a3629;
  text-align: left;
}
.cid-se8xQhJViB .mbr-text {
  margin-bottom: 20.4px;
}
.cid-se8xQhJViB .mbr-text,
.cid-se8xQhJViB .mbr-section-btn {
  color: #6a3629;
}
.cid-uRSvok80nt {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffa952;
}
.cid-uRSvok80nt .mbr-overlay {
  padding: 0;
  background: #93281e;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-uRSvok80nt img,
.cid-uRSvok80nt .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uRSvok80nt .mbr-section-subtitle {
  margin-bottom: 60px;
  color: #93281e;
}
.cid-uRSvok80nt .mbr-section-title {
  margin-bottom: 60px;
  color: #6a3649;
}
.cid-uRSvok80nt .item:focus,
.cid-uRSvok80nt span:focus {
  outline: none;
}
.cid-uRSvok80nt .item {
  cursor: pointer;
}
.cid-uRSvok80nt .item-title {
  letter-spacing: 2.54px;
  color: #6a3649;
}
.cid-uRSvok80nt .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uRSvok80nt .item:not(:last-child) {
  margin-bottom: 30px;
}
.cid-uRSvok80nt .item-subtitle {
  color: #93281e;
}
.cid-uRSvok80nt .mbr-text,
.cid-uRSvok80nt .mbr-section-btn {
  color: #93281e;
  text-align: center;
}
.cid-se98dFEVei {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffa952;
}
.cid-se98dFEVei .mbr-overlay {
  padding: 0;
  background: #93281e;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-se98dFEVei img,
.cid-se98dFEVei .item-img {
  width: 100%;
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-se98dFEVei .mbr-section-head h5 {
  margin-bottom: 30px;
}
.cid-se98dFEVei .item-title {
  margin-bottom: 20px;
}
.cid-se98dFEVei .item-subtitle {
  margin: 0 0 25px 0;
}
.cid-se98dFEVei .item-content {
  padding: 0;
  padding: 30px 2rem;
}
.cid-se98dFEVei .item:focus,
.cid-se98dFEVei span:focus {
  outline: none;
}
.cid-se98dFEVei .item {
  cursor: pointer;
  margin-bottom: 30px;
}
.cid-se98dFEVei .item:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .cid-se98dFEVei .item:nth-child(2n+1):nth-last-child(2) {
    margin-bottom: 0;
  }
}
.cid-se98dFEVei .mb-6 {
  margin-bottom: 60px;
}
.cid-se98dFEVei .list-item-header {
  margin-bottom: 10px;
}
.cid-se98dFEVei .list-block:not(:last-child) {
  margin-bottom: 30px;
}
.cid-se98dFEVei .item-wrapper {
  background-color: #ffffff;
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-se98dFEVei .mbr-section-title {
  color: #362641;
  text-align: center;
}
.cid-se98dFEVei .mbr-text {
  text-align: left;
  margin: 0;
  padding: 0;
}
.cid-se98dFEVei LI {
  color: #4479d9;
}
.cid-se98dFEVei p {
  margin: 0;
}
.cid-se98dFEVei .list-group .list-item {
  color: #9fdbf8;
}
.cid-se98dFEVei .list-group .list-item-header {
  color: #0a5f3e;
  text-align: left;
}
.cid-se98dFEVei .list-group .list-item,
.cid-se98dFEVei .line {
  color: #282727;
}
.cid-se98dFEVei .mbr-section-subtitle {
  color: #362641;
  text-align: center;
}
.cid-se98dFEVei .page-subtitle {
  color: #ebc6b8;
}
.cid-se98dFEVei .item-title {
  color: #93281e;
}
.cid-se98dFEVei .item-subtitle {
  text-align: left;
  min-height: 35px;
  color: #362641;
}
.cid-uzG5UIfQW4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #6a3629;
}
.cid-uzG5UIfQW4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzG5UIfQW4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzG5UIfQW4 .content-wrap {
  justify-content: center;
}
.cid-uzG5UIfQW4 .title-wrapper .logo-wrapper {
  margin-bottom: 16px;
}
.cid-uzG5UIfQW4 .title-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 100%;
}
.cid-uzG5UIfQW4 .title-wrapper .logo-wrapper a {
  display: inline-flex;
}
.cid-uzG5UIfQW4 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uzG5UIfQW4 .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uzG5UIfQW4 .social-wrapper {
  margin-bottom: 16px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uzG5UIfQW4 .social-wrapper {
    margin-bottom: 46px;
    text-align: left;
  }
}
.cid-uzG5UIfQW4 .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uzG5UIfQW4 .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uzG5UIfQW4 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uzG5UIfQW4 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #ff543d;
}
.cid-uzG5UIfQW4 .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  color: #93281e;
  background-color: #ffa952;
  font-size: 32px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uzG5UIfQW4 .copy-wrapper .mbr-copy {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uzG5UIfQW4 .copy-wrapper .mbr-copy {
    width: 100%;
    text-align: left;
  }
}
.cid-uzG5UIfQW4 .mbr-section-title {
  color: #ff8576;
}
.cid-uzG5UIfQW4 .mbr-copy {
  color: #51565c;
}
.cid-uzG5UIfQW4 .mbr-copy,
.cid-uzG5UIfQW4 .copy-wrapper {
  text-align: right;
}
.cid-uzG5UIfQW4 .mbr-section-title,
.cid-uzG5UIfQW4 .logo-wrapper {
  color: #ffa952;
}
.cid-uzG5UIfQW4 .mbr-copy,
.cid-uzG5UIfQW4 .copy-wrapper,
.cid-uzG5UIfQW4 .social-wrapper {
  color: #ffa952;
  text-align: right;
}
.cid-uzG8rZIOBY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #060424;
  overflow: hidden;
}
.cid-uzGbJQmXOU .nav-item:focus,
.cid-uzGbJQmXOU .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uzGbJQmXOU .nav-item {
    position: relative;
  }
}
.cid-uzGbJQmXOU .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uzGbJQmXOU .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #6a3629;
}
.cid-uzGbJQmXOU .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #6a3629 !important;
}
.cid-uzGbJQmXOU .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uzGbJQmXOU .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-uzGbJQmXOU .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uzGbJQmXOU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uzGbJQmXOU .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uzGbJQmXOU .navbar.collapsed .navbar-collapse.show,
.cid-uzGbJQmXOU .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uzGbJQmXOU .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uzGbJQmXOU .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uzGbJQmXOU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uzGbJQmXOU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uzGbJQmXOU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uzGbJQmXOU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uzGbJQmXOU .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-uzGbJQmXOU .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uzGbJQmXOU .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-uzGbJQmXOU .navbar.collapsed .right-menu,
.cid-uzGbJQmXOU .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uzGbJQmXOU .navbar .navbar-collapse.show,
  .cid-uzGbJQmXOU .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-uzGbJQmXOU .navbar .navbar-collapse.show .brand-container,
  .cid-uzGbJQmXOU .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uzGbJQmXOU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uzGbJQmXOU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uzGbJQmXOU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uzGbJQmXOU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uzGbJQmXOU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uzGbJQmXOU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uzGbJQmXOU .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-uzGbJQmXOU .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uzGbJQmXOU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uzGbJQmXOU .navbar .right-menu,
  .cid-uzGbJQmXOU .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uzGbJQmXOU .navbar.navbar-short {
  min-height: 60px;
}
.cid-uzGbJQmXOU .navbar.navbar-short .mbr-overlay {
  background: #6a3629 !important;
}
.cid-uzGbJQmXOU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uzGbJQmXOU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uzGbJQmXOU .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-uzGbJQmXOU .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uzGbJQmXOU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uzGbJQmXOU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uzGbJQmXOU .dropdown-item.active,
.cid-uzGbJQmXOU .dropdown-item:active {
  background-color: transparent;
}
.cid-uzGbJQmXOU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uzGbJQmXOU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-uzGbJQmXOU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6a3629;
}
.cid-uzGbJQmXOU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uzGbJQmXOU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uzGbJQmXOU ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uzGbJQmXOU ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uzGbJQmXOU .navbar-buttons {
  margin-left: auto;
}
.cid-uzGbJQmXOU button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-uzGbJQmXOU button.navbar-toggler:hover {
  outline: none;
}
.cid-uzGbJQmXOU button.navbar-toggler:active {
  outline: none;
}
.cid-uzGbJQmXOU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffa952;
}
.cid-uzGbJQmXOU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uzGbJQmXOU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uzGbJQmXOU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uzGbJQmXOU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uzGbJQmXOU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uzGbJQmXOU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uzGbJQmXOU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uzGbJQmXOU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uzGbJQmXOU a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-uzGbJQmXOU a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-uzGbJQmXOU a.nav-link:hover:before {
  transform: scale(1);
}
.cid-uzGbJQmXOU .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uzGbJQmXOU .right-menu,
.cid-uzGbJQmXOU .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uzGbJQmXOU .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uzGbJQmXOU .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uzGbJQmXOU .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uzGbJQmXOU .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uzGbJQmXOU .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uzGbJQmXOU .card-wrapper {
  z-index: 3;
}
.cid-uzGbJQmXOU .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uzGbJQmXOU .navbar-collapse {
    padding-top: 0;
  }
}
.cid-uzGbJQmXOU .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-uzGbJQmXOU .navbar-brand img {
  width: auto !important;
}
.cid-uzGbRhpVhz {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #ffa952;
}
.cid-uzGbRhpVhz .mbr-overlay {
  padding: 0;
  background: #93281e;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
@media (max-width: 992px) {
  .cid-uzGbRhpVhz .mbr-overlay {
    background-color: #ffa952;
  }
}
.cid-uzGbRhpVhz .mbr-text {
  color: #6a3629;
}
.cid-uzGbRhpVhz .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-uzGbRhpVhz .mbr-section-subtitle {
  color: #93281e;
}
.cid-uzGbJRgqG5 {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #93281e;
}
.cid-uzGbJRgqG5 .mbr-overlay {
  padding: 0;
  background: #ffa952;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
.cid-uzGbJRgqG5 img,
.cid-uzGbJRgqG5 .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uzGbJRgqG5 .mbr-section-head h5 {
  margin-bottom: 30px;
}
.cid-uzGbJRgqG5 .item-title {
  margin-bottom: 20px;
}
.cid-uzGbJRgqG5 .item-subtitle {
  margin: 0 0 25px 0;
}
.cid-uzGbJRgqG5 .item-content {
  padding: 0;
  padding: 30px 2rem;
}
.cid-uzGbJRgqG5 .item:focus,
.cid-uzGbJRgqG5 span:focus {
  outline: none;
}
.cid-uzGbJRgqG5 .item {
  cursor: pointer;
  margin-bottom: 30px;
}
.cid-uzGbJRgqG5 .item:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .cid-uzGbJRgqG5 .item:nth-child(2n+1):nth-last-child(2) {
    margin-bottom: 0;
  }
}
.cid-uzGbJRgqG5 .mb-6 {
  margin-bottom: 60px;
}
.cid-uzGbJRgqG5 .list-item-header {
  margin-bottom: 10px;
}
.cid-uzGbJRgqG5 .list-block:not(:last-child) {
  margin-bottom: 30px;
}
.cid-uzGbJRgqG5 .item-wrapper {
  background-color: #ffffff;
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uzGbJRgqG5 .mbr-section-title {
  color: #362641;
  text-align: center;
}
.cid-uzGbJRgqG5 .mbr-text {
  text-align: left;
  margin: 0;
  padding: 0;
}
.cid-uzGbJRgqG5 LI {
  color: #4479d9;
}
.cid-uzGbJRgqG5 p {
  margin: 0;
}
.cid-uzGbJRgqG5 .list-group .list-item {
  color: #9fdbf8;
}
.cid-uzGbJRgqG5 .list-group .list-item-header {
  color: #0a5f3e;
  text-align: left;
}
.cid-uzGbJRgqG5 .list-group .list-item,
.cid-uzGbJRgqG5 .line {
  color: #282727;
}
.cid-uzGbJRgqG5 .mbr-section-subtitle {
  color: #362641;
  text-align: center;
}
.cid-uzGbJRgqG5 .page-subtitle {
  color: #ebc6b8;
}
.cid-uzGbJRgqG5 .item-title {
  color: #93281e;
}
.cid-uzGbJRgqG5 .item-subtitle {
  text-align: left;
  min-height: 35px;
  color: #362641;
}
.cid-uzGbJRKFTm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #6a3629;
}
.cid-uzGbJRKFTm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGbJRKFTm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGbJRKFTm .content-wrap {
  justify-content: center;
}
.cid-uzGbJRKFTm .title-wrapper .logo-wrapper {
  margin-bottom: 16px;
}
.cid-uzGbJRKFTm .title-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 100%;
}
.cid-uzGbJRKFTm .title-wrapper .logo-wrapper a {
  display: inline-flex;
}
.cid-uzGbJRKFTm .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uzGbJRKFTm .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uzGbJRKFTm .social-wrapper {
  margin-bottom: 16px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uzGbJRKFTm .social-wrapper {
    margin-bottom: 46px;
    text-align: left;
  }
}
.cid-uzGbJRKFTm .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uzGbJRKFTm .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uzGbJRKFTm .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uzGbJRKFTm .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #ff543d;
}
.cid-uzGbJRKFTm .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  color: #93281e;
  background-color: #ffa952;
  font-size: 32px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uzGbJRKFTm .copy-wrapper .mbr-copy {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uzGbJRKFTm .copy-wrapper .mbr-copy {
    width: 100%;
    text-align: left;
  }
}
.cid-uzGbJRKFTm .mbr-section-title {
  color: #ff8576;
}
.cid-uzGbJRKFTm .mbr-copy {
  color: #51565c;
}
.cid-uzGbJRKFTm .mbr-copy,
.cid-uzGbJRKFTm .copy-wrapper {
  text-align: right;
}
.cid-uzGbJRKFTm .mbr-section-title,
.cid-uzGbJRKFTm .logo-wrapper {
  color: #ffa952;
}
.cid-uzGbJRKFTm .mbr-copy,
.cid-uzGbJRKFTm .copy-wrapper,
.cid-uzGbJRKFTm .social-wrapper {
  color: #ffa952;
  text-align: right;
}
.cid-uzGbJSufjo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #060424;
  overflow: hidden;
}
.cid-uzGd4otsqk .nav-item:focus,
.cid-uzGd4otsqk .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uzGd4otsqk .nav-item {
    position: relative;
  }
}
.cid-uzGd4otsqk .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uzGd4otsqk .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #6a3629;
}
.cid-uzGd4otsqk .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #6a3629 !important;
}
.cid-uzGd4otsqk .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uzGd4otsqk .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-uzGd4otsqk .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uzGd4otsqk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uzGd4otsqk .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uzGd4otsqk .navbar.collapsed .navbar-collapse.show,
.cid-uzGd4otsqk .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uzGd4otsqk .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uzGd4otsqk .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uzGd4otsqk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uzGd4otsqk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uzGd4otsqk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uzGd4otsqk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uzGd4otsqk .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-uzGd4otsqk .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uzGd4otsqk .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-uzGd4otsqk .navbar.collapsed .right-menu,
.cid-uzGd4otsqk .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uzGd4otsqk .navbar .navbar-collapse.show,
  .cid-uzGd4otsqk .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-uzGd4otsqk .navbar .navbar-collapse.show .brand-container,
  .cid-uzGd4otsqk .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uzGd4otsqk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uzGd4otsqk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uzGd4otsqk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uzGd4otsqk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uzGd4otsqk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uzGd4otsqk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uzGd4otsqk .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-uzGd4otsqk .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uzGd4otsqk .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uzGd4otsqk .navbar .right-menu,
  .cid-uzGd4otsqk .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uzGd4otsqk .navbar.navbar-short {
  min-height: 60px;
}
.cid-uzGd4otsqk .navbar.navbar-short .mbr-overlay {
  background: #6a3629 !important;
}
.cid-uzGd4otsqk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uzGd4otsqk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uzGd4otsqk .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-uzGd4otsqk .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uzGd4otsqk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uzGd4otsqk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uzGd4otsqk .dropdown-item.active,
.cid-uzGd4otsqk .dropdown-item:active {
  background-color: transparent;
}
.cid-uzGd4otsqk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uzGd4otsqk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-uzGd4otsqk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6a3629;
}
.cid-uzGd4otsqk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uzGd4otsqk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uzGd4otsqk ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uzGd4otsqk ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uzGd4otsqk .navbar-buttons {
  margin-left: auto;
}
.cid-uzGd4otsqk button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-uzGd4otsqk button.navbar-toggler:hover {
  outline: none;
}
.cid-uzGd4otsqk button.navbar-toggler:active {
  outline: none;
}
.cid-uzGd4otsqk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffa952;
}
.cid-uzGd4otsqk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uzGd4otsqk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uzGd4otsqk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uzGd4otsqk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uzGd4otsqk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uzGd4otsqk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uzGd4otsqk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uzGd4otsqk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uzGd4otsqk a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-uzGd4otsqk a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-uzGd4otsqk a.nav-link:hover:before {
  transform: scale(1);
}
.cid-uzGd4otsqk .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uzGd4otsqk .right-menu,
.cid-uzGd4otsqk .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uzGd4otsqk .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uzGd4otsqk .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uzGd4otsqk .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uzGd4otsqk .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uzGd4otsqk .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uzGd4otsqk .card-wrapper {
  z-index: 3;
}
.cid-uzGd4otsqk .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uzGd4otsqk .navbar-collapse {
    padding-top: 0;
  }
}
.cid-uzGd4otsqk .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-uzGd4otsqk .navbar-brand img {
  width: auto !important;
}
.cid-uzGj0U89Vq {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #6a3629;
}
.cid-uzGj0U89Vq .mbr-overlay {
  padding: 0;
  background: #ffa952;
  opacity: 1;
  transform: scale(3) skewX(25deg);
  transform-origin: left bottom;
  left: -100%;
}
@media (min-width: 768px) {
  .cid-uzGj0U89Vq .row {
    justify-content: flex-start;
  }
}
.cid-uzGj0U89Vq form .mbr-section-btn {
  width: 100%;
}
.cid-uzGj0U89Vq form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uzGj0U89Vq form .mbr-section-btn .btn {
    width: 100%;
  }
}
@media (min-width: 767px) {
  .cid-uzGj0U89Vq .form-with-styler {
    padding: 30px;
  }
  .cid-uzGj0U89Vq .mbr-section-head {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-uzGj0U89Vq input::-webkit-input-placeholder,
.cid-uzGj0U89Vq textarea::-webkit-input-placeholder {
  color: #93281e !important;
  opacity: 0.5;
}
.cid-uzGj0U89Vq input:-moz-placeholder,
.cid-uzGj0U89Vq textarea:-moz-placeholder {
  color: #93281e !important;
  opacity: 0.5;
}
.cid-uzGj0U89Vq .mbr-section-btn {
  margin-top: 10.8px;
}
.cid-uzGj0U89Vq .mbr-section-title {
  color: #231f59;
  text-align: left;
}
.cid-uzGj0U89Vq .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uzGj0U89Vq .mbr-section-text,
.cid-uzGj0U89Vq .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uzGd4pt4wr {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #6a3629;
}
.cid-uzGd4pt4wr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzGd4pt4wr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzGd4pt4wr .content-wrap {
  justify-content: center;
}
.cid-uzGd4pt4wr .title-wrapper .logo-wrapper {
  margin-bottom: 16px;
}
.cid-uzGd4pt4wr .title-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 100%;
}
.cid-uzGd4pt4wr .title-wrapper .logo-wrapper a {
  display: inline-flex;
}
.cid-uzGd4pt4wr .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uzGd4pt4wr .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uzGd4pt4wr .social-wrapper {
  margin-bottom: 16px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uzGd4pt4wr .social-wrapper {
    margin-bottom: 46px;
    text-align: left;
  }
}
.cid-uzGd4pt4wr .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uzGd4pt4wr .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uzGd4pt4wr .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uzGd4pt4wr .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #ff543d;
}
.cid-uzGd4pt4wr .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  color: #93281e;
  background-color: #ffa952;
  font-size: 32px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uzGd4pt4wr .copy-wrapper .mbr-copy {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uzGd4pt4wr .copy-wrapper .mbr-copy {
    width: 100%;
    text-align: left;
  }
}
.cid-uzGd4pt4wr .mbr-section-title {
  color: #ff8576;
}
.cid-uzGd4pt4wr .mbr-copy {
  color: #51565c;
}
.cid-uzGd4pt4wr .mbr-copy,
.cid-uzGd4pt4wr .copy-wrapper {
  text-align: right;
}
.cid-uzGd4pt4wr .mbr-section-title,
.cid-uzGd4pt4wr .logo-wrapper {
  color: #ffa952;
}
.cid-uzGd4pt4wr .mbr-copy,
.cid-uzGd4pt4wr .copy-wrapper,
.cid-uzGd4pt4wr .social-wrapper {
  color: #ffa952;
  text-align: right;
}
.cid-uzGd4qjVrq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #060424;
  overflow: hidden;
}
.cid-uzY0qDwr1B .nav-item:focus,
.cid-uzY0qDwr1B .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uzY0qDwr1B .nav-item {
    position: relative;
  }
}
.cid-uzY0qDwr1B .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uzY0qDwr1B .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #6a3629;
}
.cid-uzY0qDwr1B .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #6a3629 !important;
}
.cid-uzY0qDwr1B .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uzY0qDwr1B .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-uzY0qDwr1B .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uzY0qDwr1B .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uzY0qDwr1B .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uzY0qDwr1B .navbar.collapsed .navbar-collapse.show,
.cid-uzY0qDwr1B .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uzY0qDwr1B .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uzY0qDwr1B .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uzY0qDwr1B .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uzY0qDwr1B .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uzY0qDwr1B .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uzY0qDwr1B .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uzY0qDwr1B .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-uzY0qDwr1B .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uzY0qDwr1B .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-uzY0qDwr1B .navbar.collapsed .right-menu,
.cid-uzY0qDwr1B .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uzY0qDwr1B .navbar .navbar-collapse.show,
  .cid-uzY0qDwr1B .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-uzY0qDwr1B .navbar .navbar-collapse.show .brand-container,
  .cid-uzY0qDwr1B .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uzY0qDwr1B .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uzY0qDwr1B .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uzY0qDwr1B .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uzY0qDwr1B .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uzY0qDwr1B .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uzY0qDwr1B .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uzY0qDwr1B .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-uzY0qDwr1B .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uzY0qDwr1B .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uzY0qDwr1B .navbar .right-menu,
  .cid-uzY0qDwr1B .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uzY0qDwr1B .navbar.navbar-short {
  min-height: 60px;
}
.cid-uzY0qDwr1B .navbar.navbar-short .mbr-overlay {
  background: #6a3629 !important;
}
.cid-uzY0qDwr1B .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uzY0qDwr1B .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uzY0qDwr1B .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-uzY0qDwr1B .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uzY0qDwr1B .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uzY0qDwr1B .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uzY0qDwr1B .dropdown-item.active,
.cid-uzY0qDwr1B .dropdown-item:active {
  background-color: transparent;
}
.cid-uzY0qDwr1B .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uzY0qDwr1B .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-uzY0qDwr1B .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6a3629;
}
.cid-uzY0qDwr1B .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uzY0qDwr1B .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uzY0qDwr1B ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uzY0qDwr1B ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uzY0qDwr1B .navbar-buttons {
  margin-left: auto;
}
.cid-uzY0qDwr1B button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-uzY0qDwr1B button.navbar-toggler:hover {
  outline: none;
}
.cid-uzY0qDwr1B button.navbar-toggler:active {
  outline: none;
}
.cid-uzY0qDwr1B button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffa952;
}
.cid-uzY0qDwr1B button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uzY0qDwr1B button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uzY0qDwr1B button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uzY0qDwr1B button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uzY0qDwr1B nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uzY0qDwr1B nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uzY0qDwr1B nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uzY0qDwr1B nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uzY0qDwr1B a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-uzY0qDwr1B a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-uzY0qDwr1B a.nav-link:hover:before {
  transform: scale(1);
}
.cid-uzY0qDwr1B .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uzY0qDwr1B .right-menu,
.cid-uzY0qDwr1B .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uzY0qDwr1B .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uzY0qDwr1B .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uzY0qDwr1B .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uzY0qDwr1B .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uzY0qDwr1B .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uzY0qDwr1B .card-wrapper {
  z-index: 3;
}
.cid-uzY0qDwr1B .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uzY0qDwr1B .navbar-collapse {
    padding-top: 0;
  }
}
.cid-uzY0qDwr1B .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-uzY0qDwr1B .navbar-brand img {
  width: auto !important;
}
.cid-uCjOFIjuAq {
  padding-top: 6rem;
  padding-bottom: 0rem;
}
.cid-uCjOFIjuAq .carousel {
  height: 800px;
}
.cid-uCjOFIjuAq .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uCjOFIjuAq .carousel-item,
.cid-uCjOFIjuAq .carousel-inner {
  height: 100%;
}
.cid-uCjOFIjuAq .mbr-overlay {
  z-index: 1;
}
.cid-uCjOFIjuAq .carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 20%;
  overflow: hidden;
  bottom: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 50px;
}
@media (max-width: 767px) {
  .cid-uCjOFIjuAq .carousel-caption {
    height: 34%;
  }
}
.cid-uCjOFIjuAq .carousel-control {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
  top: calc(50% + 20%/2 + 1rem);
  transform: translateY(-50%);
  left: 0;
  margin-left: 50px;
  color: #f5a755;
  opacity: 1;
}
.cid-uCjOFIjuAq .carousel-control.carousel-control-next {
  margin-left: 100px;
}
.cid-uCjOFIjuAq .carousel-control > span {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-uCjOFIjuAq .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uCjOFIjuAq .carousel-control:hover {
  opacity: 0.6;
}
.cid-uCjOFIjuAq .item-wrapper {
  width: 100%;
}
.cid-uCjOFIjuAq .mbr-section-subtitle,
.cid-uCjOFIjuAq .slider-subtitle {
  margin-bottom: 30px;
}
.cid-uCjOFIjuAq .caption-text {
  margin-bottom: 20.4px;
}
@media (max-width: 767px) {
  .cid-uCjOFIjuAq .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uCjOFIjuAq .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uCjOFIjuAq .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uCjOFIjuAq .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uCjOFIjuAq .carousel-indicators li.active,
.cid-uCjOFIjuAq .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uCjOFIjuAq .carousel-indicators li::after,
.cid-uCjOFIjuAq .carousel-indicators li::before {
  content: none;
}
.cid-uCjOFIjuAq .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCjOFIjuAq .carousel-indicators {
    display: none !important;
  }
}
.cid-uCjOFIjuAq H5 {
  color: #e9ddd8;
}
.cid-uCjOFIjuAq .mbr-section-subtitle {
  color: #ebc6b8;
}
.cid-uCjOFIjuAq P {
  color: #ffffff;
}
.cid-uCjMvxonal {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #6a3629;
}
.cid-uCjMvxonal .svg-wrapper {
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1964' height='920'%3E%3Cpolygon points='0,0 985,0 920,23 0,23' class='svg1' style='fill:%23ffa952'%3E%3C/polygon%3E%3Cpolygon points='985,0 1964,0 1941,23 920,23' class='svg2' style='fill:%2393281e'%3E%3C/polygon%3E%3Cpolygon points='1964,0 1964,469.65 1941,525.5 1941,23' class='svg3' style='fill:%230a5f3e'%3E%3C/polygon%3E%3Cpolygon points='1964,469.65 1964,920 1941,920 1941,525.5' class='svg4' style='fill:%23ffa952'%3E%3C/polygon%3E%3C/svg%3E");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position-x: right;
  width: 100%;
  max-height: 454px;
  height: 100%;
  position: absolute;
  top: -25px;
  right: 30px;
  bottom: 25px;
}
@media (max-width: 992px) {
  .cid-uCjMvxonal .svg-wrapper {
    top: -10px;
    right: 10px;
  }
}
.cid-uCjMvxonal .text-wrapper {
  padding: 70px 50px;
  margin: 0 auto;
  position: relative;
  display: flex;
  background-color: #ecc5b6;
  flex-direction: column;
}
.cid-uCjMvxonal .mbr-section-title,
.cid-uCjMvxonal .mbr-section-text,
.cid-uCjMvxonal .section-subtitle,
.cid-uCjMvxonal .mbr-section-btn {
  z-index: 0;
}
.cid-uCjMvxonal .section-subtitle {
  margin-bottom: 20.4px;
}
.cid-uCjMvxonal .section-subtitle,
.cid-uCjMvxonal .mbr-section-btn {
  color: #93281e;
}
.cid-uCjMvxonal .mbr-section-text,
.cid-uCjMvxonal .mbr-section-btn {
  color: #6a3629;
}
.cid-uCjMvxonal .mbr-section-title {
  color: #0a5f3e;
}
.cid-uzY0qEIvLk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #6a3629;
}
.cid-uzY0qEIvLk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzY0qEIvLk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzY0qEIvLk .content-wrap {
  justify-content: center;
}
.cid-uzY0qEIvLk .title-wrapper .logo-wrapper {
  margin-bottom: 16px;
}
.cid-uzY0qEIvLk .title-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 100%;
}
.cid-uzY0qEIvLk .title-wrapper .logo-wrapper a {
  display: inline-flex;
}
.cid-uzY0qEIvLk .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uzY0qEIvLk .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uzY0qEIvLk .social-wrapper {
  margin-bottom: 16px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uzY0qEIvLk .social-wrapper {
    margin-bottom: 46px;
    text-align: left;
  }
}
.cid-uzY0qEIvLk .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uzY0qEIvLk .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uzY0qEIvLk .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uzY0qEIvLk .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #ff543d;
}
.cid-uzY0qEIvLk .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  color: #93281e;
  background-color: #ffa952;
  font-size: 32px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uzY0qEIvLk .copy-wrapper .mbr-copy {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uzY0qEIvLk .copy-wrapper .mbr-copy {
    width: 100%;
    text-align: left;
  }
}
.cid-uzY0qEIvLk .mbr-section-title {
  color: #ff8576;
}
.cid-uzY0qEIvLk .mbr-copy {
  color: #51565c;
}
.cid-uzY0qEIvLk .mbr-copy,
.cid-uzY0qEIvLk .copy-wrapper {
  text-align: right;
}
.cid-uzY0qEIvLk .mbr-section-title,
.cid-uzY0qEIvLk .logo-wrapper {
  color: #ffa952;
}
.cid-uzY0qEIvLk .mbr-copy,
.cid-uzY0qEIvLk .copy-wrapper,
.cid-uzY0qEIvLk .social-wrapper {
  color: #ffa952;
  text-align: right;
}
.cid-uzY0qF1YUE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #060424;
  overflow: hidden;
}
.cid-uCjTKBoJsA .nav-item:focus,
.cid-uCjTKBoJsA .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uCjTKBoJsA .nav-item {
    position: relative;
  }
}
.cid-uCjTKBoJsA .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uCjTKBoJsA .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #6a3629;
}
.cid-uCjTKBoJsA .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #6a3629 !important;
}
.cid-uCjTKBoJsA .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uCjTKBoJsA .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-uCjTKBoJsA .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uCjTKBoJsA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uCjTKBoJsA .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uCjTKBoJsA .navbar.collapsed .navbar-collapse.show,
.cid-uCjTKBoJsA .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uCjTKBoJsA .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uCjTKBoJsA .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uCjTKBoJsA .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uCjTKBoJsA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCjTKBoJsA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCjTKBoJsA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCjTKBoJsA .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-uCjTKBoJsA .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uCjTKBoJsA .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-uCjTKBoJsA .navbar.collapsed .right-menu,
.cid-uCjTKBoJsA .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uCjTKBoJsA .navbar .navbar-collapse.show,
  .cid-uCjTKBoJsA .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-uCjTKBoJsA .navbar .navbar-collapse.show .brand-container,
  .cid-uCjTKBoJsA .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uCjTKBoJsA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCjTKBoJsA .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uCjTKBoJsA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCjTKBoJsA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCjTKBoJsA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCjTKBoJsA .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uCjTKBoJsA .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-uCjTKBoJsA .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uCjTKBoJsA .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uCjTKBoJsA .navbar .right-menu,
  .cid-uCjTKBoJsA .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uCjTKBoJsA .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCjTKBoJsA .navbar.navbar-short .mbr-overlay {
  background: #6a3629 !important;
}
.cid-uCjTKBoJsA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCjTKBoJsA .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uCjTKBoJsA .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-uCjTKBoJsA .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uCjTKBoJsA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCjTKBoJsA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCjTKBoJsA .dropdown-item.active,
.cid-uCjTKBoJsA .dropdown-item:active {
  background-color: transparent;
}
.cid-uCjTKBoJsA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCjTKBoJsA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-uCjTKBoJsA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6a3629;
}
.cid-uCjTKBoJsA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCjTKBoJsA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCjTKBoJsA ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uCjTKBoJsA ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uCjTKBoJsA .navbar-buttons {
  margin-left: auto;
}
.cid-uCjTKBoJsA button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-uCjTKBoJsA button.navbar-toggler:hover {
  outline: none;
}
.cid-uCjTKBoJsA button.navbar-toggler:active {
  outline: none;
}
.cid-uCjTKBoJsA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffa952;
}
.cid-uCjTKBoJsA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCjTKBoJsA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCjTKBoJsA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCjTKBoJsA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCjTKBoJsA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCjTKBoJsA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uCjTKBoJsA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uCjTKBoJsA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCjTKBoJsA a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-uCjTKBoJsA a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-uCjTKBoJsA a.nav-link:hover:before {
  transform: scale(1);
}
.cid-uCjTKBoJsA .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCjTKBoJsA .right-menu,
.cid-uCjTKBoJsA .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uCjTKBoJsA .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uCjTKBoJsA .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uCjTKBoJsA .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uCjTKBoJsA .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uCjTKBoJsA .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uCjTKBoJsA .card-wrapper {
  z-index: 3;
}
.cid-uCjTKBoJsA .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uCjTKBoJsA .navbar-collapse {
    padding-top: 0;
  }
}
.cid-uCjTKBoJsA .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-uCjTKBoJsA .navbar-brand img {
  width: auto !important;
}
.cid-uCjTKBTCds {
  padding-top: 6rem;
  padding-bottom: 0rem;
}
.cid-uCjTKBTCds .carousel {
  height: 800px;
}
.cid-uCjTKBTCds .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uCjTKBTCds .carousel-item,
.cid-uCjTKBTCds .carousel-inner {
  height: 100%;
}
.cid-uCjTKBTCds .mbr-overlay {
  z-index: 1;
}
.cid-uCjTKBTCds .carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 20%;
  overflow: hidden;
  bottom: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 50px;
}
@media (max-width: 767px) {
  .cid-uCjTKBTCds .carousel-caption {
    height: 34%;
  }
}
.cid-uCjTKBTCds .carousel-control {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
  top: calc(50% + 20%/2 + 1rem);
  transform: translateY(-50%);
  left: 0;
  margin-left: 50px;
  color: #f5a755;
  opacity: 1;
}
.cid-uCjTKBTCds .carousel-control.carousel-control-next {
  margin-left: 100px;
}
.cid-uCjTKBTCds .carousel-control > span {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-uCjTKBTCds .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uCjTKBTCds .carousel-control:hover {
  opacity: 0.6;
}
.cid-uCjTKBTCds .item-wrapper {
  width: 100%;
}
.cid-uCjTKBTCds .mbr-section-subtitle,
.cid-uCjTKBTCds .slider-subtitle {
  margin-bottom: 30px;
}
.cid-uCjTKBTCds .caption-text {
  margin-bottom: 20.4px;
}
@media (max-width: 767px) {
  .cid-uCjTKBTCds .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uCjTKBTCds .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uCjTKBTCds .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uCjTKBTCds .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uCjTKBTCds .carousel-indicators li.active,
.cid-uCjTKBTCds .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uCjTKBTCds .carousel-indicators li::after,
.cid-uCjTKBTCds .carousel-indicators li::before {
  content: none;
}
.cid-uCjTKBTCds .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCjTKBTCds .carousel-indicators {
    display: none !important;
  }
}
.cid-uCjTKBTCds H5 {
  color: #e9ddd8;
}
.cid-uCjTKBTCds .mbr-section-subtitle {
  color: #ebc6b8;
}
.cid-uCjTKBTCds P {
  color: #ffffff;
}
.cid-uCjTKCseqy {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #6a3629;
}
.cid-uCjTKCseqy .svg-wrapper {
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1964' height='920'%3E%3Cpolygon points='0,0 985,0 920,23 0,23' class='svg1' style='fill:%23ffa952'%3E%3C/polygon%3E%3Cpolygon points='985,0 1964,0 1941,23 920,23' class='svg2' style='fill:%2393281e'%3E%3C/polygon%3E%3Cpolygon points='1964,0 1964,469.65 1941,525.5 1941,23' class='svg3' style='fill:%230a5f3e'%3E%3C/polygon%3E%3Cpolygon points='1964,469.65 1964,920 1941,920 1941,525.5' class='svg4' style='fill:%23ffa952'%3E%3C/polygon%3E%3C/svg%3E");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position-x: right;
  width: 100%;
  max-height: 454px;
  height: 100%;
  position: absolute;
  top: -25px;
  right: 30px;
  bottom: 25px;
}
@media (max-width: 992px) {
  .cid-uCjTKCseqy .svg-wrapper {
    top: -10px;
    right: 10px;
  }
}
.cid-uCjTKCseqy .text-wrapper {
  padding: 70px 50px;
  margin: 0 auto;
  position: relative;
  display: flex;
  background-color: #ecc5b6;
  flex-direction: column;
}
.cid-uCjTKCseqy .mbr-section-title,
.cid-uCjTKCseqy .mbr-section-text,
.cid-uCjTKCseqy .section-subtitle,
.cid-uCjTKCseqy .mbr-section-btn {
  z-index: 0;
}
.cid-uCjTKCseqy .section-subtitle {
  margin-bottom: 20.4px;
}
.cid-uCjTKCseqy .section-subtitle,
.cid-uCjTKCseqy .mbr-section-btn {
  color: #93281e;
}
.cid-uCjTKCseqy .mbr-section-text,
.cid-uCjTKCseqy .mbr-section-btn {
  color: #6a3629;
}
.cid-uCjTKCseqy .mbr-section-title {
  color: #0a5f3e;
}
.cid-uCjTKCRTVk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #6a3629;
}
.cid-uCjTKCRTVk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCjTKCRTVk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCjTKCRTVk .content-wrap {
  justify-content: center;
}
.cid-uCjTKCRTVk .title-wrapper .logo-wrapper {
  margin-bottom: 16px;
}
.cid-uCjTKCRTVk .title-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 100%;
}
.cid-uCjTKCRTVk .title-wrapper .logo-wrapper a {
  display: inline-flex;
}
.cid-uCjTKCRTVk .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCjTKCRTVk .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uCjTKCRTVk .social-wrapper {
  margin-bottom: 16px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uCjTKCRTVk .social-wrapper {
    margin-bottom: 46px;
    text-align: left;
  }
}
.cid-uCjTKCRTVk .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCjTKCRTVk .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCjTKCRTVk .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCjTKCRTVk .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #ff543d;
}
.cid-uCjTKCRTVk .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  color: #93281e;
  background-color: #ffa952;
  font-size: 32px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uCjTKCRTVk .copy-wrapper .mbr-copy {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCjTKCRTVk .copy-wrapper .mbr-copy {
    width: 100%;
    text-align: left;
  }
}
.cid-uCjTKCRTVk .mbr-section-title {
  color: #ff8576;
}
.cid-uCjTKCRTVk .mbr-copy {
  color: #51565c;
}
.cid-uCjTKCRTVk .mbr-copy,
.cid-uCjTKCRTVk .copy-wrapper {
  text-align: right;
}
.cid-uCjTKCRTVk .mbr-section-title,
.cid-uCjTKCRTVk .logo-wrapper {
  color: #ffa952;
}
.cid-uCjTKCRTVk .mbr-copy,
.cid-uCjTKCRTVk .copy-wrapper,
.cid-uCjTKCRTVk .social-wrapper {
  color: #ffa952;
  text-align: right;
}
.cid-uCjTKDe5tH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #060424;
  overflow: hidden;
}
.cid-uCjTObUMC5 .nav-item:focus,
.cid-uCjTObUMC5 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uCjTObUMC5 .nav-item {
    position: relative;
  }
}
.cid-uCjTObUMC5 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uCjTObUMC5 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #6a3629;
}
.cid-uCjTObUMC5 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #6a3629 !important;
}
.cid-uCjTObUMC5 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uCjTObUMC5 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-uCjTObUMC5 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uCjTObUMC5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uCjTObUMC5 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uCjTObUMC5 .navbar.collapsed .navbar-collapse.show,
.cid-uCjTObUMC5 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uCjTObUMC5 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uCjTObUMC5 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uCjTObUMC5 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uCjTObUMC5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCjTObUMC5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCjTObUMC5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCjTObUMC5 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-uCjTObUMC5 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uCjTObUMC5 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-uCjTObUMC5 .navbar.collapsed .right-menu,
.cid-uCjTObUMC5 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uCjTObUMC5 .navbar .navbar-collapse.show,
  .cid-uCjTObUMC5 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-uCjTObUMC5 .navbar .navbar-collapse.show .brand-container,
  .cid-uCjTObUMC5 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uCjTObUMC5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCjTObUMC5 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uCjTObUMC5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCjTObUMC5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCjTObUMC5 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCjTObUMC5 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uCjTObUMC5 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-uCjTObUMC5 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uCjTObUMC5 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uCjTObUMC5 .navbar .right-menu,
  .cid-uCjTObUMC5 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uCjTObUMC5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCjTObUMC5 .navbar.navbar-short .mbr-overlay {
  background: #6a3629 !important;
}
.cid-uCjTObUMC5 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCjTObUMC5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uCjTObUMC5 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-uCjTObUMC5 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uCjTObUMC5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCjTObUMC5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCjTObUMC5 .dropdown-item.active,
.cid-uCjTObUMC5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uCjTObUMC5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCjTObUMC5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-uCjTObUMC5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6a3629;
}
.cid-uCjTObUMC5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCjTObUMC5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCjTObUMC5 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uCjTObUMC5 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uCjTObUMC5 .navbar-buttons {
  margin-left: auto;
}
.cid-uCjTObUMC5 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-uCjTObUMC5 button.navbar-toggler:hover {
  outline: none;
}
.cid-uCjTObUMC5 button.navbar-toggler:active {
  outline: none;
}
.cid-uCjTObUMC5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffa952;
}
.cid-uCjTObUMC5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCjTObUMC5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCjTObUMC5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCjTObUMC5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCjTObUMC5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCjTObUMC5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uCjTObUMC5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uCjTObUMC5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCjTObUMC5 a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-uCjTObUMC5 a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-uCjTObUMC5 a.nav-link:hover:before {
  transform: scale(1);
}
.cid-uCjTObUMC5 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCjTObUMC5 .right-menu,
.cid-uCjTObUMC5 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uCjTObUMC5 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uCjTObUMC5 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uCjTObUMC5 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uCjTObUMC5 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uCjTObUMC5 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uCjTObUMC5 .card-wrapper {
  z-index: 3;
}
.cid-uCjTObUMC5 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uCjTObUMC5 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-uCjTObUMC5 .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-uCjTObUMC5 .navbar-brand img {
  width: auto !important;
}
.cid-uCjTOczdhD {
  padding-top: 6rem;
  padding-bottom: 0rem;
}
.cid-uCjTOczdhD .carousel {
  height: 800px;
}
.cid-uCjTOczdhD .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uCjTOczdhD .carousel-item,
.cid-uCjTOczdhD .carousel-inner {
  height: 100%;
}
.cid-uCjTOczdhD .mbr-overlay {
  z-index: 1;
}
.cid-uCjTOczdhD .carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 20%;
  overflow: hidden;
  bottom: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 50px;
}
@media (max-width: 767px) {
  .cid-uCjTOczdhD .carousel-caption {
    height: 34%;
  }
}
.cid-uCjTOczdhD .carousel-control {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
  top: calc(50% + 20%/2 + 1rem);
  transform: translateY(-50%);
  left: 0;
  margin-left: 50px;
  color: #f5a755;
  opacity: 1;
}
.cid-uCjTOczdhD .carousel-control.carousel-control-next {
  margin-left: 100px;
}
.cid-uCjTOczdhD .carousel-control > span {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-uCjTOczdhD .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uCjTOczdhD .carousel-control:hover {
  opacity: 0.6;
}
.cid-uCjTOczdhD .item-wrapper {
  width: 100%;
}
.cid-uCjTOczdhD .mbr-section-subtitle,
.cid-uCjTOczdhD .slider-subtitle {
  margin-bottom: 30px;
}
.cid-uCjTOczdhD .caption-text {
  margin-bottom: 20.4px;
}
@media (max-width: 767px) {
  .cid-uCjTOczdhD .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uCjTOczdhD .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uCjTOczdhD .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uCjTOczdhD .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uCjTOczdhD .carousel-indicators li.active,
.cid-uCjTOczdhD .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uCjTOczdhD .carousel-indicators li::after,
.cid-uCjTOczdhD .carousel-indicators li::before {
  content: none;
}
.cid-uCjTOczdhD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCjTOczdhD .carousel-indicators {
    display: none !important;
  }
}
.cid-uCjTOczdhD H5 {
  color: #e9ddd8;
}
.cid-uCjTOczdhD .mbr-section-subtitle {
  color: #ebc6b8;
}
.cid-uCjTOczdhD P {
  color: #ffffff;
}
.cid-uCjTOd2W7D {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #6a3629;
}
.cid-uCjTOd2W7D .svg-wrapper {
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1964' height='920'%3E%3Cpolygon points='0,0 985,0 920,23 0,23' class='svg1' style='fill:%23ffa952'%3E%3C/polygon%3E%3Cpolygon points='985,0 1964,0 1941,23 920,23' class='svg2' style='fill:%2393281e'%3E%3C/polygon%3E%3Cpolygon points='1964,0 1964,469.65 1941,525.5 1941,23' class='svg3' style='fill:%230a5f3e'%3E%3C/polygon%3E%3Cpolygon points='1964,469.65 1964,920 1941,920 1941,525.5' class='svg4' style='fill:%23ffa952'%3E%3C/polygon%3E%3C/svg%3E");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position-x: right;
  width: 100%;
  max-height: 454px;
  height: 100%;
  position: absolute;
  top: -25px;
  right: 30px;
  bottom: 25px;
}
@media (max-width: 992px) {
  .cid-uCjTOd2W7D .svg-wrapper {
    top: -10px;
    right: 10px;
  }
}
.cid-uCjTOd2W7D .text-wrapper {
  padding: 70px 50px;
  margin: 0 auto;
  position: relative;
  display: flex;
  background-color: #ecc5b6;
  flex-direction: column;
}
.cid-uCjTOd2W7D .mbr-section-title,
.cid-uCjTOd2W7D .mbr-section-text,
.cid-uCjTOd2W7D .section-subtitle,
.cid-uCjTOd2W7D .mbr-section-btn {
  z-index: 0;
}
.cid-uCjTOd2W7D .section-subtitle {
  margin-bottom: 20.4px;
}
.cid-uCjTOd2W7D .section-subtitle,
.cid-uCjTOd2W7D .mbr-section-btn {
  color: #93281e;
}
.cid-uCjTOd2W7D .mbr-section-text,
.cid-uCjTOd2W7D .mbr-section-btn {
  color: #6a3629;
}
.cid-uCjTOd2W7D .mbr-section-title {
  color: #0a5f3e;
}
.cid-uCjTOdnZMJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #6a3629;
}
.cid-uCjTOdnZMJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCjTOdnZMJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCjTOdnZMJ .content-wrap {
  justify-content: center;
}
.cid-uCjTOdnZMJ .title-wrapper .logo-wrapper {
  margin-bottom: 16px;
}
.cid-uCjTOdnZMJ .title-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 100%;
}
.cid-uCjTOdnZMJ .title-wrapper .logo-wrapper a {
  display: inline-flex;
}
.cid-uCjTOdnZMJ .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCjTOdnZMJ .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uCjTOdnZMJ .social-wrapper {
  margin-bottom: 16px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uCjTOdnZMJ .social-wrapper {
    margin-bottom: 46px;
    text-align: left;
  }
}
.cid-uCjTOdnZMJ .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCjTOdnZMJ .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCjTOdnZMJ .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCjTOdnZMJ .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #ff543d;
}
.cid-uCjTOdnZMJ .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  color: #93281e;
  background-color: #ffa952;
  font-size: 32px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uCjTOdnZMJ .copy-wrapper .mbr-copy {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCjTOdnZMJ .copy-wrapper .mbr-copy {
    width: 100%;
    text-align: left;
  }
}
.cid-uCjTOdnZMJ .mbr-section-title {
  color: #ff8576;
}
.cid-uCjTOdnZMJ .mbr-copy {
  color: #51565c;
}
.cid-uCjTOdnZMJ .mbr-copy,
.cid-uCjTOdnZMJ .copy-wrapper {
  text-align: right;
}
.cid-uCjTOdnZMJ .mbr-section-title,
.cid-uCjTOdnZMJ .logo-wrapper {
  color: #ffa952;
}
.cid-uCjTOdnZMJ .mbr-copy,
.cid-uCjTOdnZMJ .copy-wrapper,
.cid-uCjTOdnZMJ .social-wrapper {
  color: #ffa952;
  text-align: right;
}
.cid-uCjTOdMo85 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #060424;
  overflow: hidden;
}
.cid-uCjTPRZfrv .nav-item:focus,
.cid-uCjTPRZfrv .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uCjTPRZfrv .nav-item {
    position: relative;
  }
}
.cid-uCjTPRZfrv .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uCjTPRZfrv .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #6a3629;
}
.cid-uCjTPRZfrv .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #6a3629 !important;
}
.cid-uCjTPRZfrv .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uCjTPRZfrv .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-uCjTPRZfrv .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uCjTPRZfrv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uCjTPRZfrv .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uCjTPRZfrv .navbar.collapsed .navbar-collapse.show,
.cid-uCjTPRZfrv .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uCjTPRZfrv .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uCjTPRZfrv .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uCjTPRZfrv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uCjTPRZfrv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCjTPRZfrv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCjTPRZfrv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uCjTPRZfrv .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-uCjTPRZfrv .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uCjTPRZfrv .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-uCjTPRZfrv .navbar.collapsed .right-menu,
.cid-uCjTPRZfrv .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uCjTPRZfrv .navbar .navbar-collapse.show,
  .cid-uCjTPRZfrv .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-uCjTPRZfrv .navbar .navbar-collapse.show .brand-container,
  .cid-uCjTPRZfrv .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uCjTPRZfrv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCjTPRZfrv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uCjTPRZfrv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCjTPRZfrv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCjTPRZfrv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uCjTPRZfrv .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uCjTPRZfrv .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-uCjTPRZfrv .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uCjTPRZfrv .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uCjTPRZfrv .navbar .right-menu,
  .cid-uCjTPRZfrv .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uCjTPRZfrv .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCjTPRZfrv .navbar.navbar-short .mbr-overlay {
  background: #6a3629 !important;
}
.cid-uCjTPRZfrv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uCjTPRZfrv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uCjTPRZfrv .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-uCjTPRZfrv .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uCjTPRZfrv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCjTPRZfrv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCjTPRZfrv .dropdown-item.active,
.cid-uCjTPRZfrv .dropdown-item:active {
  background-color: transparent;
}
.cid-uCjTPRZfrv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCjTPRZfrv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-uCjTPRZfrv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6a3629;
}
.cid-uCjTPRZfrv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCjTPRZfrv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCjTPRZfrv ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uCjTPRZfrv ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uCjTPRZfrv .navbar-buttons {
  margin-left: auto;
}
.cid-uCjTPRZfrv button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-uCjTPRZfrv button.navbar-toggler:hover {
  outline: none;
}
.cid-uCjTPRZfrv button.navbar-toggler:active {
  outline: none;
}
.cid-uCjTPRZfrv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffa952;
}
.cid-uCjTPRZfrv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uCjTPRZfrv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uCjTPRZfrv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uCjTPRZfrv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uCjTPRZfrv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCjTPRZfrv nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uCjTPRZfrv nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uCjTPRZfrv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uCjTPRZfrv a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-uCjTPRZfrv a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-uCjTPRZfrv a.nav-link:hover:before {
  transform: scale(1);
}
.cid-uCjTPRZfrv .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uCjTPRZfrv .right-menu,
.cid-uCjTPRZfrv .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uCjTPRZfrv .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uCjTPRZfrv .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uCjTPRZfrv .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uCjTPRZfrv .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uCjTPRZfrv .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uCjTPRZfrv .card-wrapper {
  z-index: 3;
}
.cid-uCjTPRZfrv .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uCjTPRZfrv .navbar-collapse {
    padding-top: 0;
  }
}
.cid-uCjTPRZfrv .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-uCjTPRZfrv .navbar-brand img {
  width: auto !important;
}
.cid-uCjTPSAiib {
  padding-top: 6rem;
  padding-bottom: 0rem;
}
.cid-uCjTPSAiib .carousel {
  height: 800px;
}
.cid-uCjTPSAiib .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uCjTPSAiib .carousel-item,
.cid-uCjTPSAiib .carousel-inner {
  height: 100%;
}
.cid-uCjTPSAiib .mbr-overlay {
  z-index: 1;
}
.cid-uCjTPSAiib .carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 20%;
  overflow: hidden;
  bottom: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 50px;
}
@media (max-width: 767px) {
  .cid-uCjTPSAiib .carousel-caption {
    height: 34%;
  }
}
.cid-uCjTPSAiib .carousel-control {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
  top: calc(50% + 20%/2 + 1rem);
  transform: translateY(-50%);
  left: 0;
  margin-left: 50px;
  color: #f5a755;
  opacity: 1;
}
.cid-uCjTPSAiib .carousel-control.carousel-control-next {
  margin-left: 100px;
}
.cid-uCjTPSAiib .carousel-control > span {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-uCjTPSAiib .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uCjTPSAiib .carousel-control:hover {
  opacity: 0.6;
}
.cid-uCjTPSAiib .item-wrapper {
  width: 100%;
}
.cid-uCjTPSAiib .mbr-section-subtitle,
.cid-uCjTPSAiib .slider-subtitle {
  margin-bottom: 30px;
}
.cid-uCjTPSAiib .caption-text {
  margin-bottom: 20.4px;
}
@media (max-width: 767px) {
  .cid-uCjTPSAiib .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uCjTPSAiib .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uCjTPSAiib .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uCjTPSAiib .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uCjTPSAiib .carousel-indicators li.active,
.cid-uCjTPSAiib .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uCjTPSAiib .carousel-indicators li::after,
.cid-uCjTPSAiib .carousel-indicators li::before {
  content: none;
}
.cid-uCjTPSAiib .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uCjTPSAiib .carousel-indicators {
    display: none !important;
  }
}
.cid-uCjTPSAiib H5 {
  color: #e9ddd8;
}
.cid-uCjTPSAiib .mbr-section-subtitle {
  color: #ebc6b8;
}
.cid-uCjTPSAiib P {
  color: #ffffff;
}
.cid-uCjTPT1Uxy {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #6a3629;
}
.cid-uCjTPT1Uxy .svg-wrapper {
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1964' height='920'%3E%3Cpolygon points='0,0 985,0 920,23 0,23' class='svg1' style='fill:%23ffa952'%3E%3C/polygon%3E%3Cpolygon points='985,0 1964,0 1941,23 920,23' class='svg2' style='fill:%2393281e'%3E%3C/polygon%3E%3Cpolygon points='1964,0 1964,469.65 1941,525.5 1941,23' class='svg3' style='fill:%230a5f3e'%3E%3C/polygon%3E%3Cpolygon points='1964,469.65 1964,920 1941,920 1941,525.5' class='svg4' style='fill:%23ffa952'%3E%3C/polygon%3E%3C/svg%3E");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position-x: right;
  width: 100%;
  max-height: 454px;
  height: 100%;
  position: absolute;
  top: -25px;
  right: 30px;
  bottom: 25px;
}
@media (max-width: 992px) {
  .cid-uCjTPT1Uxy .svg-wrapper {
    top: -10px;
    right: 10px;
  }
}
.cid-uCjTPT1Uxy .text-wrapper {
  padding: 70px 50px;
  margin: 0 auto;
  position: relative;
  display: flex;
  background-color: #ecc5b6;
  flex-direction: column;
}
.cid-uCjTPT1Uxy .mbr-section-title,
.cid-uCjTPT1Uxy .mbr-section-text,
.cid-uCjTPT1Uxy .section-subtitle,
.cid-uCjTPT1Uxy .mbr-section-btn {
  z-index: 0;
}
.cid-uCjTPT1Uxy .section-subtitle {
  margin-bottom: 20.4px;
}
.cid-uCjTPT1Uxy .section-subtitle,
.cid-uCjTPT1Uxy .mbr-section-btn {
  color: #93281e;
}
.cid-uCjTPT1Uxy .mbr-section-text,
.cid-uCjTPT1Uxy .mbr-section-btn {
  color: #6a3629;
}
.cid-uCjTPT1Uxy .mbr-section-title {
  color: #0a5f3e;
}
.cid-uCjTPTkiBB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #6a3629;
}
.cid-uCjTPTkiBB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCjTPTkiBB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCjTPTkiBB .content-wrap {
  justify-content: center;
}
.cid-uCjTPTkiBB .title-wrapper .logo-wrapper {
  margin-bottom: 16px;
}
.cid-uCjTPTkiBB .title-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 100%;
}
.cid-uCjTPTkiBB .title-wrapper .logo-wrapper a {
  display: inline-flex;
}
.cid-uCjTPTkiBB .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCjTPTkiBB .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uCjTPTkiBB .social-wrapper {
  margin-bottom: 16px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uCjTPTkiBB .social-wrapper {
    margin-bottom: 46px;
    text-align: left;
  }
}
.cid-uCjTPTkiBB .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCjTPTkiBB .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCjTPTkiBB .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCjTPTkiBB .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #ff543d;
}
.cid-uCjTPTkiBB .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  color: #93281e;
  background-color: #ffa952;
  font-size: 32px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uCjTPTkiBB .copy-wrapper .mbr-copy {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uCjTPTkiBB .copy-wrapper .mbr-copy {
    width: 100%;
    text-align: left;
  }
}
.cid-uCjTPTkiBB .mbr-section-title {
  color: #ff8576;
}
.cid-uCjTPTkiBB .mbr-copy {
  color: #51565c;
}
.cid-uCjTPTkiBB .mbr-copy,
.cid-uCjTPTkiBB .copy-wrapper {
  text-align: right;
}
.cid-uCjTPTkiBB .mbr-section-title,
.cid-uCjTPTkiBB .logo-wrapper {
  color: #ffa952;
}
.cid-uCjTPTkiBB .mbr-copy,
.cid-uCjTPTkiBB .copy-wrapper,
.cid-uCjTPTkiBB .social-wrapper {
  color: #ffa952;
  text-align: right;
}
.cid-uCjTPTAYjJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #060424;
  overflow: hidden;
}
.cid-uGFORUXmZf .nav-item:focus,
.cid-uGFORUXmZf .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uGFORUXmZf .nav-item {
    position: relative;
  }
}
.cid-uGFORUXmZf .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uGFORUXmZf .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #6a3629;
}
.cid-uGFORUXmZf .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #6a3629 !important;
}
.cid-uGFORUXmZf .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uGFORUXmZf .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-uGFORUXmZf .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uGFORUXmZf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uGFORUXmZf .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uGFORUXmZf .navbar.collapsed .navbar-collapse.show,
.cid-uGFORUXmZf .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uGFORUXmZf .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uGFORUXmZf .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uGFORUXmZf .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uGFORUXmZf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGFORUXmZf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGFORUXmZf .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uGFORUXmZf .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-uGFORUXmZf .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uGFORUXmZf .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-uGFORUXmZf .navbar.collapsed .right-menu,
.cid-uGFORUXmZf .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uGFORUXmZf .navbar .navbar-collapse.show,
  .cid-uGFORUXmZf .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-uGFORUXmZf .navbar .navbar-collapse.show .brand-container,
  .cid-uGFORUXmZf .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uGFORUXmZf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGFORUXmZf .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uGFORUXmZf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGFORUXmZf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGFORUXmZf .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uGFORUXmZf .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uGFORUXmZf .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-uGFORUXmZf .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uGFORUXmZf .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uGFORUXmZf .navbar .right-menu,
  .cid-uGFORUXmZf .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uGFORUXmZf .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGFORUXmZf .navbar.navbar-short .mbr-overlay {
  background: #6a3629 !important;
}
.cid-uGFORUXmZf .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uGFORUXmZf .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uGFORUXmZf .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-uGFORUXmZf .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uGFORUXmZf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGFORUXmZf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGFORUXmZf .dropdown-item.active,
.cid-uGFORUXmZf .dropdown-item:active {
  background-color: transparent;
}
.cid-uGFORUXmZf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGFORUXmZf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-uGFORUXmZf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6a3629;
}
.cid-uGFORUXmZf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGFORUXmZf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGFORUXmZf ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uGFORUXmZf ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uGFORUXmZf .navbar-buttons {
  margin-left: auto;
}
.cid-uGFORUXmZf button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-uGFORUXmZf button.navbar-toggler:hover {
  outline: none;
}
.cid-uGFORUXmZf button.navbar-toggler:active {
  outline: none;
}
.cid-uGFORUXmZf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffa952;
}
.cid-uGFORUXmZf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uGFORUXmZf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uGFORUXmZf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uGFORUXmZf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uGFORUXmZf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uGFORUXmZf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uGFORUXmZf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uGFORUXmZf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uGFORUXmZf a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-uGFORUXmZf a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-uGFORUXmZf a.nav-link:hover:before {
  transform: scale(1);
}
.cid-uGFORUXmZf .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uGFORUXmZf .right-menu,
.cid-uGFORUXmZf .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uGFORUXmZf .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uGFORUXmZf .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uGFORUXmZf .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uGFORUXmZf .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uGFORUXmZf .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uGFORUXmZf .card-wrapper {
  z-index: 3;
}
.cid-uGFORUXmZf .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uGFORUXmZf .navbar-collapse {
    padding-top: 0;
  }
}
.cid-uGFORUXmZf .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-uGFORUXmZf .navbar-brand img {
  width: auto !important;
}
.cid-uVS4PFCzgG {
  padding-top: 10rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #6a3629;
}
.cid-uVS4PFCzgG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVS4PFCzgG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uVS4PFCzgG .container {
    padding: 0 25px;
  }
}
.cid-uVS4PFCzgG .row {
  justify-content: center;
}
.cid-uVS4PFCzgG .item {
  margin-bottom: 32px;
}
.cid-uVS4PFCzgG .item .item-wrapper {
  transition: all 0.3s ease-in-out;
  background-color: #000000;
  overflow: hidden;
}
.cid-uVS4PFCzgG .item .item-wrapper:hover,
.cid-uVS4PFCzgG .item .item-wrapper:focus {
  box-shadow: 2px 2px 0 0 #f5a755;
}
.cid-uVS4PFCzgG .item .item-wrapper a {
  display: block;
}
.cid-uVS4PFCzgG .item .item-wrapper a:hover .item-img::after,
.cid-uVS4PFCzgG .item .item-wrapper a:focus .item-img::after {
  opacity: 0;
}
.cid-uVS4PFCzgG .item .item-wrapper a .item-img {
  position: relative;
}
.cid-uVS4PFCzgG .item .item-wrapper a .item-img img {
  background-color: #f5a755;
  padding: 4px;
  height: 310px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-uVS4PFCzgG .item .item-wrapper a .item-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4b4b4b;
  opacity: 0.4;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.cid-uVS4PFCzgG .mbr-section-title,
.cid-uVS4PFCzgG .icon-wrap {
  color: #f5a755;
}
.cid-uGFWlwnYdU {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #6a3629;
}
.cid-uGFWlwnYdU .container {
  padding: 0 5%;
}
.cid-uGFWlwnYdU img,
.cid-uGFWlwnYdU .item-img {
  width: 100%;
}
.cid-uGFWlwnYdU .item:focus,
.cid-uGFWlwnYdU span:focus {
  outline: none;
}
.cid-uGFWlwnYdU .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uGFWlwnYdU .item-wrapper {
  position: unset;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uGFWlwnYdU .mbr-section-title {
  margin-bottom: 4.5rem;
  color: #f5a755;
}
.cid-uGFWlwnYdU .mbr-section-subtitle {
  margin: 1rem 0 3rem 0;
  color: #f5a755;
}
.cid-uGFYqOR9nN {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #6a3629;
}
.cid-uGFYqOR9nN .container {
  padding: 0 5%;
}
.cid-uGFYqOR9nN img,
.cid-uGFYqOR9nN .item-img {
  width: 100%;
}
.cid-uGFYqOR9nN .item:focus,
.cid-uGFYqOR9nN span:focus {
  outline: none;
}
.cid-uGFYqOR9nN .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uGFYqOR9nN .item-wrapper {
  position: unset;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uGFYqOR9nN .mbr-section-title {
  margin-bottom: 4.5rem;
  color: #6870d1;
}
.cid-uGFYqOR9nN .mbr-section-subtitle {
  margin: 1rem 0 3rem 0;
  color: #f5a755;
}
.cid-uGFYTGIPNT {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #6a3629;
}
.cid-uGFYTGIPNT .container {
  padding: 0 5%;
}
.cid-uGFYTGIPNT img,
.cid-uGFYTGIPNT .item-img {
  width: 100%;
}
.cid-uGFYTGIPNT .item:focus,
.cid-uGFYTGIPNT span:focus {
  outline: none;
}
.cid-uGFYTGIPNT .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uGFYTGIPNT .item-wrapper {
  position: unset;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uGFYTGIPNT .mbr-section-title {
  margin-bottom: 4.5rem;
  color: #6870d1;
}
.cid-uGFYTGIPNT .mbr-section-subtitle {
  margin: 1rem 0 3rem 0;
  color: #f5a755;
}
.cid-uGFORWrP6R {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #6a3629;
}
.cid-uGFORWrP6R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGFORWrP6R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGFORWrP6R .content-wrap {
  justify-content: center;
}
.cid-uGFORWrP6R .title-wrapper .logo-wrapper {
  margin-bottom: 16px;
}
.cid-uGFORWrP6R .title-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 100%;
}
.cid-uGFORWrP6R .title-wrapper .logo-wrapper a {
  display: inline-flex;
}
.cid-uGFORWrP6R .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uGFORWrP6R .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uGFORWrP6R .social-wrapper {
  margin-bottom: 16px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uGFORWrP6R .social-wrapper {
    margin-bottom: 46px;
    text-align: left;
  }
}
.cid-uGFORWrP6R .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uGFORWrP6R .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uGFORWrP6R .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uGFORWrP6R .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #ff543d;
}
.cid-uGFORWrP6R .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  color: #93281e;
  background-color: #ffa952;
  font-size: 32px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uGFORWrP6R .copy-wrapper .mbr-copy {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uGFORWrP6R .copy-wrapper .mbr-copy {
    width: 100%;
    text-align: left;
  }
}
.cid-uGFORWrP6R .mbr-section-title {
  color: #ff8576;
}
.cid-uGFORWrP6R .mbr-copy {
  color: #51565c;
}
.cid-uGFORWrP6R .mbr-copy,
.cid-uGFORWrP6R .copy-wrapper {
  text-align: right;
}
.cid-uGFORWrP6R .mbr-section-title,
.cid-uGFORWrP6R .logo-wrapper {
  color: #ffa952;
}
.cid-uGFORWrP6R .mbr-copy,
.cid-uGFORWrP6R .copy-wrapper,
.cid-uGFORWrP6R .social-wrapper {
  color: #ffa952;
  text-align: right;
}
.cid-uGFORWOWUZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #060424;
  overflow: hidden;
}
.cid-uHFOGAPsuE .nav-item:focus,
.cid-uHFOGAPsuE .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uHFOGAPsuE .nav-item {
    position: relative;
  }
}
.cid-uHFOGAPsuE .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uHFOGAPsuE .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #6a3629;
}
.cid-uHFOGAPsuE .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #6a3629 !important;
}
.cid-uHFOGAPsuE .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uHFOGAPsuE .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-uHFOGAPsuE .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uHFOGAPsuE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uHFOGAPsuE .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uHFOGAPsuE .navbar.collapsed .navbar-collapse.show,
.cid-uHFOGAPsuE .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uHFOGAPsuE .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uHFOGAPsuE .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uHFOGAPsuE .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uHFOGAPsuE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHFOGAPsuE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHFOGAPsuE .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uHFOGAPsuE .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-uHFOGAPsuE .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uHFOGAPsuE .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-uHFOGAPsuE .navbar.collapsed .right-menu,
.cid-uHFOGAPsuE .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uHFOGAPsuE .navbar .navbar-collapse.show,
  .cid-uHFOGAPsuE .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-uHFOGAPsuE .navbar .navbar-collapse.show .brand-container,
  .cid-uHFOGAPsuE .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uHFOGAPsuE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHFOGAPsuE .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uHFOGAPsuE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHFOGAPsuE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHFOGAPsuE .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uHFOGAPsuE .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uHFOGAPsuE .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-uHFOGAPsuE .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uHFOGAPsuE .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHFOGAPsuE .navbar .right-menu,
  .cid-uHFOGAPsuE .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uHFOGAPsuE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHFOGAPsuE .navbar.navbar-short .mbr-overlay {
  background: #6a3629 !important;
}
.cid-uHFOGAPsuE .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uHFOGAPsuE .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uHFOGAPsuE .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-uHFOGAPsuE .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uHFOGAPsuE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHFOGAPsuE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHFOGAPsuE .dropdown-item.active,
.cid-uHFOGAPsuE .dropdown-item:active {
  background-color: transparent;
}
.cid-uHFOGAPsuE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHFOGAPsuE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-uHFOGAPsuE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6a3629;
}
.cid-uHFOGAPsuE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHFOGAPsuE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHFOGAPsuE ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uHFOGAPsuE ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uHFOGAPsuE .navbar-buttons {
  margin-left: auto;
}
.cid-uHFOGAPsuE button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-uHFOGAPsuE button.navbar-toggler:hover {
  outline: none;
}
.cid-uHFOGAPsuE button.navbar-toggler:active {
  outline: none;
}
.cid-uHFOGAPsuE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffa952;
}
.cid-uHFOGAPsuE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHFOGAPsuE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHFOGAPsuE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHFOGAPsuE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHFOGAPsuE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHFOGAPsuE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uHFOGAPsuE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uHFOGAPsuE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHFOGAPsuE a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-uHFOGAPsuE a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-uHFOGAPsuE a.nav-link:hover:before {
  transform: scale(1);
}
.cid-uHFOGAPsuE .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHFOGAPsuE .right-menu,
.cid-uHFOGAPsuE .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uHFOGAPsuE .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uHFOGAPsuE .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uHFOGAPsuE .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uHFOGAPsuE .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uHFOGAPsuE .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uHFOGAPsuE .card-wrapper {
  z-index: 3;
}
.cid-uHFOGAPsuE .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uHFOGAPsuE .navbar-collapse {
    padding-top: 0;
  }
}
.cid-uHFOGAPsuE .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-uHFOGAPsuE .navbar-brand img {
  width: auto !important;
}
.cid-uHFOGB8Ats {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #6a3629;
}
.cid-uHFOGB8Ats .container {
  padding: 0 5%;
}
.cid-uHFOGB8Ats img,
.cid-uHFOGB8Ats .item-img {
  width: 100%;
}
.cid-uHFOGB8Ats .item:focus,
.cid-uHFOGB8Ats span:focus {
  outline: none;
}
.cid-uHFOGB8Ats .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uHFOGB8Ats .item-wrapper {
  position: unset;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uHFOGB8Ats .mbr-section-title {
  margin-bottom: 4.5rem;
  color: #6870d1;
}
.cid-uHFOGB8Ats .mbr-section-subtitle {
  margin: 1rem 0 3rem 0;
  color: #f5a755;
}
.cid-uHFQ9ED9qz {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #6a3629;
}
.cid-uHFQ9ED9qz .container {
  padding: 0 5%;
}
.cid-uHFQ9ED9qz img,
.cid-uHFQ9ED9qz .item-img {
  width: 100%;
}
.cid-uHFQ9ED9qz .item:focus,
.cid-uHFQ9ED9qz span:focus {
  outline: none;
}
.cid-uHFQ9ED9qz .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uHFQ9ED9qz .item-wrapper {
  position: unset;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uHFQ9ED9qz .mbr-section-title {
  margin-bottom: 4.5rem;
  color: #f5a755;
}
.cid-uHFQ9ED9qz .mbr-section-subtitle {
  margin: 1rem 0 3rem 0;
  color: #f5a755;
}
.cid-uHFOGBPm4g {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #6a3629;
}
.cid-uHFOGBPm4g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHFOGBPm4g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHFOGBPm4g .content-wrap {
  justify-content: center;
}
.cid-uHFOGBPm4g .title-wrapper .logo-wrapper {
  margin-bottom: 16px;
}
.cid-uHFOGBPm4g .title-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 100%;
}
.cid-uHFOGBPm4g .title-wrapper .logo-wrapper a {
  display: inline-flex;
}
.cid-uHFOGBPm4g .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHFOGBPm4g .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uHFOGBPm4g .social-wrapper {
  margin-bottom: 16px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uHFOGBPm4g .social-wrapper {
    margin-bottom: 46px;
    text-align: left;
  }
}
.cid-uHFOGBPm4g .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uHFOGBPm4g .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uHFOGBPm4g .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uHFOGBPm4g .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #ff543d;
}
.cid-uHFOGBPm4g .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  color: #93281e;
  background-color: #ffa952;
  font-size: 32px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uHFOGBPm4g .copy-wrapper .mbr-copy {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHFOGBPm4g .copy-wrapper .mbr-copy {
    width: 100%;
    text-align: left;
  }
}
.cid-uHFOGBPm4g .mbr-section-title {
  color: #ff8576;
}
.cid-uHFOGBPm4g .mbr-copy {
  color: #51565c;
}
.cid-uHFOGBPm4g .mbr-copy,
.cid-uHFOGBPm4g .copy-wrapper {
  text-align: right;
}
.cid-uHFOGBPm4g .mbr-section-title,
.cid-uHFOGBPm4g .logo-wrapper {
  color: #ffa952;
}
.cid-uHFOGBPm4g .mbr-copy,
.cid-uHFOGBPm4g .copy-wrapper,
.cid-uHFOGBPm4g .social-wrapper {
  color: #ffa952;
  text-align: right;
}
.cid-uHFOGCaNHQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #060424;
  overflow: hidden;
}
.cid-uHFQH7Loc2 .nav-item:focus,
.cid-uHFQH7Loc2 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uHFQH7Loc2 .nav-item {
    position: relative;
  }
}
.cid-uHFQH7Loc2 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uHFQH7Loc2 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #6a3629;
}
.cid-uHFQH7Loc2 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #6a3629 !important;
}
.cid-uHFQH7Loc2 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uHFQH7Loc2 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-uHFQH7Loc2 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uHFQH7Loc2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uHFQH7Loc2 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uHFQH7Loc2 .navbar.collapsed .navbar-collapse.show,
.cid-uHFQH7Loc2 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uHFQH7Loc2 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uHFQH7Loc2 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uHFQH7Loc2 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uHFQH7Loc2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHFQH7Loc2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHFQH7Loc2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uHFQH7Loc2 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-uHFQH7Loc2 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uHFQH7Loc2 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-uHFQH7Loc2 .navbar.collapsed .right-menu,
.cid-uHFQH7Loc2 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uHFQH7Loc2 .navbar .navbar-collapse.show,
  .cid-uHFQH7Loc2 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-uHFQH7Loc2 .navbar .navbar-collapse.show .brand-container,
  .cid-uHFQH7Loc2 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uHFQH7Loc2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHFQH7Loc2 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uHFQH7Loc2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHFQH7Loc2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHFQH7Loc2 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uHFQH7Loc2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uHFQH7Loc2 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-uHFQH7Loc2 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uHFQH7Loc2 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHFQH7Loc2 .navbar .right-menu,
  .cid-uHFQH7Loc2 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uHFQH7Loc2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHFQH7Loc2 .navbar.navbar-short .mbr-overlay {
  background: #6a3629 !important;
}
.cid-uHFQH7Loc2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uHFQH7Loc2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uHFQH7Loc2 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-uHFQH7Loc2 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uHFQH7Loc2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHFQH7Loc2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHFQH7Loc2 .dropdown-item.active,
.cid-uHFQH7Loc2 .dropdown-item:active {
  background-color: transparent;
}
.cid-uHFQH7Loc2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHFQH7Loc2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-uHFQH7Loc2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6a3629;
}
.cid-uHFQH7Loc2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHFQH7Loc2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHFQH7Loc2 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uHFQH7Loc2 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uHFQH7Loc2 .navbar-buttons {
  margin-left: auto;
}
.cid-uHFQH7Loc2 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-uHFQH7Loc2 button.navbar-toggler:hover {
  outline: none;
}
.cid-uHFQH7Loc2 button.navbar-toggler:active {
  outline: none;
}
.cid-uHFQH7Loc2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffa952;
}
.cid-uHFQH7Loc2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHFQH7Loc2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHFQH7Loc2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHFQH7Loc2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHFQH7Loc2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHFQH7Loc2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uHFQH7Loc2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uHFQH7Loc2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHFQH7Loc2 a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-uHFQH7Loc2 a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-uHFQH7Loc2 a.nav-link:hover:before {
  transform: scale(1);
}
.cid-uHFQH7Loc2 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHFQH7Loc2 .right-menu,
.cid-uHFQH7Loc2 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uHFQH7Loc2 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uHFQH7Loc2 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uHFQH7Loc2 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uHFQH7Loc2 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uHFQH7Loc2 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uHFQH7Loc2 .card-wrapper {
  z-index: 3;
}
.cid-uHFQH7Loc2 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uHFQH7Loc2 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-uHFQH7Loc2 .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-uHFQH7Loc2 .navbar-brand img {
  width: auto !important;
}
.cid-uHFQH7h3gS {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #6a3629;
}
.cid-uHFQH7h3gS .container {
  padding: 0 5%;
}
.cid-uHFQH7h3gS img,
.cid-uHFQH7h3gS .item-img {
  width: 100%;
}
.cid-uHFQH7h3gS .item:focus,
.cid-uHFQH7h3gS span:focus {
  outline: none;
}
.cid-uHFQH7h3gS .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uHFQH7h3gS .item-wrapper {
  position: unset;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uHFQH7h3gS .mbr-section-title {
  margin-bottom: 4.5rem;
  color: #f5a755;
}
.cid-uHFQH7h3gS .mbr-section-subtitle {
  margin: 1rem 0 3rem 0;
  color: #f5a755;
}
.cid-uHFQH84dQy {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #6a3629;
}
.cid-uHFQH84dQy .container {
  padding: 0 5%;
}
.cid-uHFQH84dQy img,
.cid-uHFQH84dQy .item-img {
  width: 100%;
}
.cid-uHFQH84dQy .item:focus,
.cid-uHFQH84dQy span:focus {
  outline: none;
}
.cid-uHFQH84dQy .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uHFQH84dQy .item-wrapper {
  position: unset;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uHFQH84dQy .mbr-section-title {
  margin-bottom: 4.5rem;
  color: #6870d1;
}
.cid-uHFQH84dQy .mbr-section-subtitle {
  margin: 1rem 0 3rem 0;
  color: #f5a755;
}
.cid-uHFQH8IVSe {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #6a3629;
}
.cid-uHFQH8IVSe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHFQH8IVSe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHFQH8IVSe .content-wrap {
  justify-content: center;
}
.cid-uHFQH8IVSe .title-wrapper .logo-wrapper {
  margin-bottom: 16px;
}
.cid-uHFQH8IVSe .title-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 100%;
}
.cid-uHFQH8IVSe .title-wrapper .logo-wrapper a {
  display: inline-flex;
}
.cid-uHFQH8IVSe .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHFQH8IVSe .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uHFQH8IVSe .social-wrapper {
  margin-bottom: 16px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uHFQH8IVSe .social-wrapper {
    margin-bottom: 46px;
    text-align: left;
  }
}
.cid-uHFQH8IVSe .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uHFQH8IVSe .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uHFQH8IVSe .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uHFQH8IVSe .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #ff543d;
}
.cid-uHFQH8IVSe .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  color: #93281e;
  background-color: #ffa952;
  font-size: 32px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uHFQH8IVSe .copy-wrapper .mbr-copy {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHFQH8IVSe .copy-wrapper .mbr-copy {
    width: 100%;
    text-align: left;
  }
}
.cid-uHFQH8IVSe .mbr-section-title {
  color: #ff8576;
}
.cid-uHFQH8IVSe .mbr-copy {
  color: #51565c;
}
.cid-uHFQH8IVSe .mbr-copy,
.cid-uHFQH8IVSe .copy-wrapper {
  text-align: right;
}
.cid-uHFQH8IVSe .mbr-section-title,
.cid-uHFQH8IVSe .logo-wrapper {
  color: #ffa952;
}
.cid-uHFQH8IVSe .mbr-copy,
.cid-uHFQH8IVSe .copy-wrapper,
.cid-uHFQH8IVSe .social-wrapper {
  color: #ffa952;
  text-align: right;
}
.cid-uHFQH99Zij {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #060424;
  overflow: hidden;
}
.cid-uHFRmqPNV3 .nav-item:focus,
.cid-uHFRmqPNV3 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uHFRmqPNV3 .nav-item {
    position: relative;
  }
}
.cid-uHFRmqPNV3 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uHFRmqPNV3 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #6a3629;
}
.cid-uHFRmqPNV3 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #6a3629 !important;
}
.cid-uHFRmqPNV3 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uHFRmqPNV3 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-uHFRmqPNV3 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uHFRmqPNV3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uHFRmqPNV3 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uHFRmqPNV3 .navbar.collapsed .navbar-collapse.show,
.cid-uHFRmqPNV3 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uHFRmqPNV3 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uHFRmqPNV3 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uHFRmqPNV3 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uHFRmqPNV3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHFRmqPNV3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHFRmqPNV3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uHFRmqPNV3 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-uHFRmqPNV3 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uHFRmqPNV3 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-uHFRmqPNV3 .navbar.collapsed .right-menu,
.cid-uHFRmqPNV3 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uHFRmqPNV3 .navbar .navbar-collapse.show,
  .cid-uHFRmqPNV3 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-uHFRmqPNV3 .navbar .navbar-collapse.show .brand-container,
  .cid-uHFRmqPNV3 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uHFRmqPNV3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHFRmqPNV3 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uHFRmqPNV3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHFRmqPNV3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHFRmqPNV3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uHFRmqPNV3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uHFRmqPNV3 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-uHFRmqPNV3 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uHFRmqPNV3 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHFRmqPNV3 .navbar .right-menu,
  .cid-uHFRmqPNV3 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uHFRmqPNV3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHFRmqPNV3 .navbar.navbar-short .mbr-overlay {
  background: #6a3629 !important;
}
.cid-uHFRmqPNV3 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uHFRmqPNV3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uHFRmqPNV3 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-uHFRmqPNV3 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uHFRmqPNV3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHFRmqPNV3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHFRmqPNV3 .dropdown-item.active,
.cid-uHFRmqPNV3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uHFRmqPNV3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHFRmqPNV3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-uHFRmqPNV3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6a3629;
}
.cid-uHFRmqPNV3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHFRmqPNV3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHFRmqPNV3 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uHFRmqPNV3 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uHFRmqPNV3 .navbar-buttons {
  margin-left: auto;
}
.cid-uHFRmqPNV3 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-uHFRmqPNV3 button.navbar-toggler:hover {
  outline: none;
}
.cid-uHFRmqPNV3 button.navbar-toggler:active {
  outline: none;
}
.cid-uHFRmqPNV3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffa952;
}
.cid-uHFRmqPNV3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHFRmqPNV3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHFRmqPNV3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHFRmqPNV3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHFRmqPNV3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHFRmqPNV3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uHFRmqPNV3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uHFRmqPNV3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHFRmqPNV3 a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-uHFRmqPNV3 a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-uHFRmqPNV3 a.nav-link:hover:before {
  transform: scale(1);
}
.cid-uHFRmqPNV3 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHFRmqPNV3 .right-menu,
.cid-uHFRmqPNV3 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uHFRmqPNV3 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uHFRmqPNV3 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uHFRmqPNV3 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uHFRmqPNV3 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uHFRmqPNV3 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uHFRmqPNV3 .card-wrapper {
  z-index: 3;
}
.cid-uHFRmqPNV3 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uHFRmqPNV3 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-uHFRmqPNV3 .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-uHFRmqPNV3 .navbar-brand img {
  width: auto !important;
}
.cid-uHFRmqbI0N {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #6a3629;
}
.cid-uHFRmqbI0N .container {
  padding: 0 5%;
}
.cid-uHFRmqbI0N img,
.cid-uHFRmqbI0N .item-img {
  width: 100%;
}
.cid-uHFRmqbI0N .item:focus,
.cid-uHFRmqbI0N span:focus {
  outline: none;
}
.cid-uHFRmqbI0N .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uHFRmqbI0N .item-wrapper {
  position: unset;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uHFRmqbI0N .mbr-section-title {
  margin-bottom: 4.5rem;
  color: #f5a755;
}
.cid-uHFRmqbI0N .mbr-section-subtitle {
  margin: 1rem 0 3rem 0;
  color: #f5a755;
}
.cid-uHFRmrE0HW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #6a3629;
}
.cid-uHFRmrE0HW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHFRmrE0HW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHFRmrE0HW .content-wrap {
  justify-content: center;
}
.cid-uHFRmrE0HW .title-wrapper .logo-wrapper {
  margin-bottom: 16px;
}
.cid-uHFRmrE0HW .title-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 100%;
}
.cid-uHFRmrE0HW .title-wrapper .logo-wrapper a {
  display: inline-flex;
}
.cid-uHFRmrE0HW .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHFRmrE0HW .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uHFRmrE0HW .social-wrapper {
  margin-bottom: 16px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uHFRmrE0HW .social-wrapper {
    margin-bottom: 46px;
    text-align: left;
  }
}
.cid-uHFRmrE0HW .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uHFRmrE0HW .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uHFRmrE0HW .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uHFRmrE0HW .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #ff543d;
}
.cid-uHFRmrE0HW .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  color: #93281e;
  background-color: #ffa952;
  font-size: 32px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uHFRmrE0HW .copy-wrapper .mbr-copy {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHFRmrE0HW .copy-wrapper .mbr-copy {
    width: 100%;
    text-align: left;
  }
}
.cid-uHFRmrE0HW .mbr-section-title {
  color: #ff8576;
}
.cid-uHFRmrE0HW .mbr-copy {
  color: #51565c;
}
.cid-uHFRmrE0HW .mbr-copy,
.cid-uHFRmrE0HW .copy-wrapper {
  text-align: right;
}
.cid-uHFRmrE0HW .mbr-section-title,
.cid-uHFRmrE0HW .logo-wrapper {
  color: #ffa952;
}
.cid-uHFRmrE0HW .mbr-copy,
.cid-uHFRmrE0HW .copy-wrapper,
.cid-uHFRmrE0HW .social-wrapper {
  color: #ffa952;
  text-align: right;
}
.cid-uHFRmrZw0X {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #060424;
  overflow: hidden;
}
.cid-uHFRiovIJ2 .nav-item:focus,
.cid-uHFRiovIJ2 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uHFRiovIJ2 .nav-item {
    position: relative;
  }
}
.cid-uHFRiovIJ2 .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uHFRiovIJ2 .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #6a3629;
}
.cid-uHFRiovIJ2 .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #6a3629 !important;
}
.cid-uHFRiovIJ2 .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uHFRiovIJ2 .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-uHFRiovIJ2 .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uHFRiovIJ2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uHFRiovIJ2 .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uHFRiovIJ2 .navbar.collapsed .navbar-collapse.show,
.cid-uHFRiovIJ2 .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uHFRiovIJ2 .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uHFRiovIJ2 .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uHFRiovIJ2 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uHFRiovIJ2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHFRiovIJ2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHFRiovIJ2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uHFRiovIJ2 .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-uHFRiovIJ2 .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uHFRiovIJ2 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-uHFRiovIJ2 .navbar.collapsed .right-menu,
.cid-uHFRiovIJ2 .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uHFRiovIJ2 .navbar .navbar-collapse.show,
  .cid-uHFRiovIJ2 .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-uHFRiovIJ2 .navbar .navbar-collapse.show .brand-container,
  .cid-uHFRiovIJ2 .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uHFRiovIJ2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHFRiovIJ2 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uHFRiovIJ2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHFRiovIJ2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHFRiovIJ2 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uHFRiovIJ2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uHFRiovIJ2 .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-uHFRiovIJ2 .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uHFRiovIJ2 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHFRiovIJ2 .navbar .right-menu,
  .cid-uHFRiovIJ2 .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uHFRiovIJ2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHFRiovIJ2 .navbar.navbar-short .mbr-overlay {
  background: #6a3629 !important;
}
.cid-uHFRiovIJ2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uHFRiovIJ2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uHFRiovIJ2 .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-uHFRiovIJ2 .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uHFRiovIJ2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHFRiovIJ2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHFRiovIJ2 .dropdown-item.active,
.cid-uHFRiovIJ2 .dropdown-item:active {
  background-color: transparent;
}
.cid-uHFRiovIJ2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHFRiovIJ2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-uHFRiovIJ2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6a3629;
}
.cid-uHFRiovIJ2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHFRiovIJ2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHFRiovIJ2 ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uHFRiovIJ2 ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uHFRiovIJ2 .navbar-buttons {
  margin-left: auto;
}
.cid-uHFRiovIJ2 button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-uHFRiovIJ2 button.navbar-toggler:hover {
  outline: none;
}
.cid-uHFRiovIJ2 button.navbar-toggler:active {
  outline: none;
}
.cid-uHFRiovIJ2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffa952;
}
.cid-uHFRiovIJ2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHFRiovIJ2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHFRiovIJ2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHFRiovIJ2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHFRiovIJ2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHFRiovIJ2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uHFRiovIJ2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uHFRiovIJ2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHFRiovIJ2 a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-uHFRiovIJ2 a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-uHFRiovIJ2 a.nav-link:hover:before {
  transform: scale(1);
}
.cid-uHFRiovIJ2 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHFRiovIJ2 .right-menu,
.cid-uHFRiovIJ2 .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uHFRiovIJ2 .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uHFRiovIJ2 .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uHFRiovIJ2 .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uHFRiovIJ2 .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uHFRiovIJ2 .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uHFRiovIJ2 .card-wrapper {
  z-index: 3;
}
.cid-uHFRiovIJ2 .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uHFRiovIJ2 .navbar-collapse {
    padding-top: 0;
  }
}
.cid-uHFRiovIJ2 .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-uHFRiovIJ2 .navbar-brand img {
  width: auto !important;
}
.cid-uHFRinTUk8 {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #6a3629;
}
.cid-uHFRinTUk8 .container {
  padding: 0 5%;
}
.cid-uHFRinTUk8 img,
.cid-uHFRinTUk8 .item-img {
  width: 100%;
}
.cid-uHFRinTUk8 .item:focus,
.cid-uHFRinTUk8 span:focus {
  outline: none;
}
.cid-uHFRinTUk8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uHFRinTUk8 .item-wrapper {
  position: unset;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uHFRinTUk8 .mbr-section-title {
  margin-bottom: 4.5rem;
  color: #f5a755;
}
.cid-uHFRinTUk8 .mbr-section-subtitle {
  margin: 1rem 0 3rem 0;
  color: #f5a755;
}
.cid-uHFRioQA9P {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #6a3629;
}
.cid-uHFRioQA9P .container {
  padding: 0 5%;
}
.cid-uHFRioQA9P img,
.cid-uHFRioQA9P .item-img {
  width: 100%;
}
.cid-uHFRioQA9P .item:focus,
.cid-uHFRioQA9P span:focus {
  outline: none;
}
.cid-uHFRioQA9P .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uHFRioQA9P .item-wrapper {
  position: unset;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uHFRioQA9P .mbr-section-title {
  margin-bottom: 4.5rem;
  color: #6870d1;
}
.cid-uHFRioQA9P .mbr-section-subtitle {
  margin: 1rem 0 3rem 0;
  color: #f5a755;
}
.cid-uHFRipptni {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #6a3629;
}
.cid-uHFRipptni .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHFRipptni .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHFRipptni .content-wrap {
  justify-content: center;
}
.cid-uHFRipptni .title-wrapper .logo-wrapper {
  margin-bottom: 16px;
}
.cid-uHFRipptni .title-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 100%;
}
.cid-uHFRipptni .title-wrapper .logo-wrapper a {
  display: inline-flex;
}
.cid-uHFRipptni .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHFRipptni .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uHFRipptni .social-wrapper {
  margin-bottom: 16px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uHFRipptni .social-wrapper {
    margin-bottom: 46px;
    text-align: left;
  }
}
.cid-uHFRipptni .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uHFRipptni .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uHFRipptni .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uHFRipptni .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #ff543d;
}
.cid-uHFRipptni .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  color: #93281e;
  background-color: #ffa952;
  font-size: 32px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uHFRipptni .copy-wrapper .mbr-copy {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHFRipptni .copy-wrapper .mbr-copy {
    width: 100%;
    text-align: left;
  }
}
.cid-uHFRipptni .mbr-section-title {
  color: #ff8576;
}
.cid-uHFRipptni .mbr-copy {
  color: #51565c;
}
.cid-uHFRipptni .mbr-copy,
.cid-uHFRipptni .copy-wrapper {
  text-align: right;
}
.cid-uHFRipptni .mbr-section-title,
.cid-uHFRipptni .logo-wrapper {
  color: #ffa952;
}
.cid-uHFRipptni .mbr-copy,
.cid-uHFRipptni .copy-wrapper,
.cid-uHFRipptni .social-wrapper {
  color: #ffa952;
  text-align: right;
}
.cid-uHFRipJvNS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #060424;
  overflow: hidden;
}
.cid-uHFRdYGy8y .nav-item:focus,
.cid-uHFRdYGy8y .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uHFRdYGy8y .nav-item {
    position: relative;
  }
}
.cid-uHFRdYGy8y .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uHFRdYGy8y .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #6a3629;
}
.cid-uHFRdYGy8y .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #6a3629 !important;
}
.cid-uHFRdYGy8y .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uHFRdYGy8y .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-uHFRdYGy8y .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uHFRdYGy8y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uHFRdYGy8y .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uHFRdYGy8y .navbar.collapsed .navbar-collapse.show,
.cid-uHFRdYGy8y .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uHFRdYGy8y .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uHFRdYGy8y .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uHFRdYGy8y .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uHFRdYGy8y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHFRdYGy8y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHFRdYGy8y .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uHFRdYGy8y .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-uHFRdYGy8y .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uHFRdYGy8y .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-uHFRdYGy8y .navbar.collapsed .right-menu,
.cid-uHFRdYGy8y .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uHFRdYGy8y .navbar .navbar-collapse.show,
  .cid-uHFRdYGy8y .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-uHFRdYGy8y .navbar .navbar-collapse.show .brand-container,
  .cid-uHFRdYGy8y .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uHFRdYGy8y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHFRdYGy8y .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uHFRdYGy8y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHFRdYGy8y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHFRdYGy8y .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uHFRdYGy8y .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uHFRdYGy8y .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-uHFRdYGy8y .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uHFRdYGy8y .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHFRdYGy8y .navbar .right-menu,
  .cid-uHFRdYGy8y .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uHFRdYGy8y .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHFRdYGy8y .navbar.navbar-short .mbr-overlay {
  background: #6a3629 !important;
}
.cid-uHFRdYGy8y .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uHFRdYGy8y .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uHFRdYGy8y .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-uHFRdYGy8y .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uHFRdYGy8y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHFRdYGy8y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHFRdYGy8y .dropdown-item.active,
.cid-uHFRdYGy8y .dropdown-item:active {
  background-color: transparent;
}
.cid-uHFRdYGy8y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHFRdYGy8y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-uHFRdYGy8y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6a3629;
}
.cid-uHFRdYGy8y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHFRdYGy8y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHFRdYGy8y ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uHFRdYGy8y ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uHFRdYGy8y .navbar-buttons {
  margin-left: auto;
}
.cid-uHFRdYGy8y button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-uHFRdYGy8y button.navbar-toggler:hover {
  outline: none;
}
.cid-uHFRdYGy8y button.navbar-toggler:active {
  outline: none;
}
.cid-uHFRdYGy8y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffa952;
}
.cid-uHFRdYGy8y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHFRdYGy8y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHFRdYGy8y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHFRdYGy8y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHFRdYGy8y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHFRdYGy8y nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uHFRdYGy8y nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uHFRdYGy8y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHFRdYGy8y a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-uHFRdYGy8y a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-uHFRdYGy8y a.nav-link:hover:before {
  transform: scale(1);
}
.cid-uHFRdYGy8y .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHFRdYGy8y .right-menu,
.cid-uHFRdYGy8y .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uHFRdYGy8y .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uHFRdYGy8y .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uHFRdYGy8y .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uHFRdYGy8y .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uHFRdYGy8y .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uHFRdYGy8y .card-wrapper {
  z-index: 3;
}
.cid-uHFRdYGy8y .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uHFRdYGy8y .navbar-collapse {
    padding-top: 0;
  }
}
.cid-uHFRdYGy8y .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-uHFRdYGy8y .navbar-brand img {
  width: auto !important;
}
.cid-uVRvUcXpl7 {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background: #6a3629;
}
.cid-uVRvUcXpl7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVRvUcXpl7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .cid-uVRvUcXpl7 .container-fluid {
    padding: 0;
  }
}
.cid-uVRvUcXpl7 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 490px;
  max-width: 490px;
}
@media (max-width: 768px) {
  .cid-uVRvUcXpl7 .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uVRvUcXpl7 .embla__button--next,
.cid-uVRvUcXpl7 .embla__button--prev {
  display: flex;
}
.cid-uVRvUcXpl7 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uVRvUcXpl7 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uVRvUcXpl7 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uVRvUcXpl7 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uVRvUcXpl7 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uVRvUcXpl7 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uVRvUcXpl7 .embla__button {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uVRvUcXpl7 .embla {
  position: relative;
  width: 100%;
}
.cid-uVRvUcXpl7 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uVRvUcXpl7 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uVRvUcXpl7 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uVRvUcXpl7 .embla__slide a {
  cursor: grab;
}
.cid-uVRvUcXpl7 .embla__slide a:active {
  cursor: grabbing;
}
.cid-uVRvUcXpl7 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uVRvUcXpl7 .item-menu-overlay {
  border-radius: 2rem;
}
.cid-uVRvUcXpl7 .mbr-section-title {
  color: #f5a755;
}
.cid-uVRvUcXpl7 .mbr-section-subtitle {
  color: #232323;
}
.cid-uVRvUcXpl7 .mbr-box {
  color: #ffffff;
}
.cid-uVRvUcXpl7 .slide-content {
  position: relative;
  border-radius: 4px;
  height: 100%;
  width: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uVRvUcXpl7 img,
.cid-uVRvUcXpl7 .item-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uVRvUcXpl7 .item-wrapper {
  position: relative;
}
.cid-uVRvUcXpl7 .content-head {
  max-width: 800px;
}
.cid-uHFRdXPdU5 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #6a3629;
}
.cid-uHFRdXPdU5 .container {
  padding: 0 5%;
}
.cid-uHFRdXPdU5 img,
.cid-uHFRdXPdU5 .item-img {
  width: 100%;
}
.cid-uHFRdXPdU5 .item:focus,
.cid-uHFRdXPdU5 span:focus {
  outline: none;
}
.cid-uHFRdXPdU5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uHFRdXPdU5 .item-wrapper {
  position: unset;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uHFRdXPdU5 .mbr-section-title {
  margin-bottom: 4.5rem;
  color: #f5a755;
}
.cid-uHFRdXPdU5 .mbr-section-subtitle {
  margin: 1rem 0 3rem 0;
  color: #f5a755;
}
.cid-uVRPBC0iHw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6a3629;
}
.cid-uVRPBC0iHw .mbr-overlay {
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uVRPBC0iHw .carousel {
    min-height: 500px;
  }
  .cid-uVRPBC0iHw .carousel img {
    max-height: 500px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uVRPBC0iHw .carousel {
    min-height: 325px;
  }
  .cid-uVRPBC0iHw .carousel img {
    max-height: 325px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-uVRPBC0iHw .carousel {
    min-height: 275px;
  }
  .cid-uVRPBC0iHw .carousel img {
    max-height: 275px;
    object-fit: contain;
  }
  .cid-uVRPBC0iHw .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uVRPBC0iHw .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uVRPBC0iHw .carousel,
.cid-uVRPBC0iHw .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uVRPBC0iHw .item-wrapper {
  width: 100%;
}
.cid-uVRPBC0iHw .carousel-caption {
  bottom: 40px;
}
.cid-uVRPBC0iHw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uVRPBC0iHw .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uVRPBC0iHw .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uVRPBC0iHw .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uVRPBC0iHw .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uVRPBC0iHw .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uVRPBC0iHw .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uVRPBC0iHw .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uVRPBC0iHw .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uVRPBC0iHw .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uVRPBC0iHw .carousel-indicators li.active,
.cid-uVRPBC0iHw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uVRPBC0iHw .carousel-indicators li::after,
.cid-uVRPBC0iHw .carousel-indicators li::before {
  content: none;
}
.cid-uVRPBC0iHw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uVRPBC0iHw .carousel-indicators {
    display: none !important;
  }
}
.cid-uHFRdZluRX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6a3629;
}
.cid-uHFRdZluRX .container {
  padding: 0 5%;
}
.cid-uHFRdZluRX img,
.cid-uHFRdZluRX .item-img {
  width: 100%;
}
.cid-uHFRdZluRX .item:focus,
.cid-uHFRdZluRX span:focus {
  outline: none;
}
.cid-uHFRdZluRX .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uHFRdZluRX .item-wrapper {
  position: unset;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uHFRdZluRX .mbr-section-title {
  margin-bottom: 4.5rem;
  color: #6870d1;
}
.cid-uHFRdZluRX .mbr-section-subtitle {
  margin: 1rem 0 3rem 0;
  color: #f5a755;
}
.cid-uHFRdZBPH1 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #6a3629;
}
.cid-uHFRdZBPH1 .container {
  padding: 0 5%;
}
.cid-uHFRdZBPH1 img,
.cid-uHFRdZBPH1 .item-img {
  width: 100%;
}
.cid-uHFRdZBPH1 .item:focus,
.cid-uHFRdZBPH1 span:focus {
  outline: none;
}
.cid-uHFRdZBPH1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uHFRdZBPH1 .item-wrapper {
  position: unset;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uHFRdZBPH1 .mbr-section-title {
  margin-bottom: 4.5rem;
  color: #6870d1;
}
.cid-uHFRdZBPH1 .mbr-section-subtitle {
  margin: 1rem 0 3rem 0;
  color: #f5a755;
}
.cid-uHFRdZTVki {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #6a3629;
}
.cid-uHFRdZTVki .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHFRdZTVki .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHFRdZTVki .content-wrap {
  justify-content: center;
}
.cid-uHFRdZTVki .title-wrapper .logo-wrapper {
  margin-bottom: 16px;
}
.cid-uHFRdZTVki .title-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 100%;
}
.cid-uHFRdZTVki .title-wrapper .logo-wrapper a {
  display: inline-flex;
}
.cid-uHFRdZTVki .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHFRdZTVki .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uHFRdZTVki .social-wrapper {
  margin-bottom: 16px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uHFRdZTVki .social-wrapper {
    margin-bottom: 46px;
    text-align: left;
  }
}
.cid-uHFRdZTVki .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uHFRdZTVki .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uHFRdZTVki .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uHFRdZTVki .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #ff543d;
}
.cid-uHFRdZTVki .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  color: #93281e;
  background-color: #ffa952;
  font-size: 32px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uHFRdZTVki .copy-wrapper .mbr-copy {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHFRdZTVki .copy-wrapper .mbr-copy {
    width: 100%;
    text-align: left;
  }
}
.cid-uHFRdZTVki .mbr-section-title {
  color: #ff8576;
}
.cid-uHFRdZTVki .mbr-copy {
  color: #51565c;
}
.cid-uHFRdZTVki .mbr-copy,
.cid-uHFRdZTVki .copy-wrapper {
  text-align: right;
}
.cid-uHFRdZTVki .mbr-section-title,
.cid-uHFRdZTVki .logo-wrapper {
  color: #ffa952;
}
.cid-uHFRdZTVki .mbr-copy,
.cid-uHFRdZTVki .copy-wrapper,
.cid-uHFRdZTVki .social-wrapper {
  color: #ffa952;
  text-align: right;
}
.cid-uHFRe0fgrc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #060424;
  overflow: hidden;
}
.cid-uHFR9BVTtB .nav-item:focus,
.cid-uHFR9BVTtB .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uHFR9BVTtB .nav-item {
    position: relative;
  }
}
.cid-uHFR9BVTtB .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uHFR9BVTtB .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #6a3629;
}
.cid-uHFR9BVTtB .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #6a3629 !important;
}
.cid-uHFR9BVTtB .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uHFR9BVTtB .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-uHFR9BVTtB .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uHFR9BVTtB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uHFR9BVTtB .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uHFR9BVTtB .navbar.collapsed .navbar-collapse.show,
.cid-uHFR9BVTtB .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uHFR9BVTtB .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uHFR9BVTtB .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uHFR9BVTtB .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uHFR9BVTtB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHFR9BVTtB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHFR9BVTtB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uHFR9BVTtB .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-uHFR9BVTtB .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uHFR9BVTtB .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-uHFR9BVTtB .navbar.collapsed .right-menu,
.cid-uHFR9BVTtB .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uHFR9BVTtB .navbar .navbar-collapse.show,
  .cid-uHFR9BVTtB .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-uHFR9BVTtB .navbar .navbar-collapse.show .brand-container,
  .cid-uHFR9BVTtB .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uHFR9BVTtB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHFR9BVTtB .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uHFR9BVTtB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHFR9BVTtB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHFR9BVTtB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uHFR9BVTtB .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uHFR9BVTtB .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-uHFR9BVTtB .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uHFR9BVTtB .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHFR9BVTtB .navbar .right-menu,
  .cid-uHFR9BVTtB .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uHFR9BVTtB .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHFR9BVTtB .navbar.navbar-short .mbr-overlay {
  background: #6a3629 !important;
}
.cid-uHFR9BVTtB .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uHFR9BVTtB .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uHFR9BVTtB .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-uHFR9BVTtB .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uHFR9BVTtB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHFR9BVTtB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHFR9BVTtB .dropdown-item.active,
.cid-uHFR9BVTtB .dropdown-item:active {
  background-color: transparent;
}
.cid-uHFR9BVTtB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHFR9BVTtB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-uHFR9BVTtB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6a3629;
}
.cid-uHFR9BVTtB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHFR9BVTtB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHFR9BVTtB ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uHFR9BVTtB ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uHFR9BVTtB .navbar-buttons {
  margin-left: auto;
}
.cid-uHFR9BVTtB button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-uHFR9BVTtB button.navbar-toggler:hover {
  outline: none;
}
.cid-uHFR9BVTtB button.navbar-toggler:active {
  outline: none;
}
.cid-uHFR9BVTtB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffa952;
}
.cid-uHFR9BVTtB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHFR9BVTtB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHFR9BVTtB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHFR9BVTtB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHFR9BVTtB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHFR9BVTtB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uHFR9BVTtB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uHFR9BVTtB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHFR9BVTtB a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-uHFR9BVTtB a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-uHFR9BVTtB a.nav-link:hover:before {
  transform: scale(1);
}
.cid-uHFR9BVTtB .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHFR9BVTtB .right-menu,
.cid-uHFR9BVTtB .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uHFR9BVTtB .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uHFR9BVTtB .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uHFR9BVTtB .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uHFR9BVTtB .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uHFR9BVTtB .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uHFR9BVTtB .card-wrapper {
  z-index: 3;
}
.cid-uHFR9BVTtB .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uHFR9BVTtB .navbar-collapse {
    padding-top: 0;
  }
}
.cid-uHFR9BVTtB .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-uHFR9BVTtB .navbar-brand img {
  width: auto !important;
}
.cid-uHFR9Bqs31 {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #6a3629;
}
.cid-uHFR9Bqs31 .container {
  padding: 0 5%;
}
.cid-uHFR9Bqs31 img,
.cid-uHFR9Bqs31 .item-img {
  width: 100%;
}
.cid-uHFR9Bqs31 .item:focus,
.cid-uHFR9Bqs31 span:focus {
  outline: none;
}
.cid-uHFR9Bqs31 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uHFR9Bqs31 .item-wrapper {
  position: unset;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uHFR9Bqs31 .mbr-section-title {
  margin-bottom: 4.5rem;
  color: #f5a755;
}
.cid-uHFR9Bqs31 .mbr-section-subtitle {
  margin: 1rem 0 3rem 0;
  color: #f5a755;
}
.cid-uHFR9C9yxW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #6a3629;
}
.cid-uHFR9C9yxW .container {
  padding: 0 5%;
}
.cid-uHFR9C9yxW img,
.cid-uHFR9C9yxW .item-img {
  width: 100%;
}
.cid-uHFR9C9yxW .item:focus,
.cid-uHFR9C9yxW span:focus {
  outline: none;
}
.cid-uHFR9C9yxW .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uHFR9C9yxW .item-wrapper {
  position: unset;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uHFR9C9yxW .mbr-section-title {
  margin-bottom: 4.5rem;
  color: #6870d1;
}
.cid-uHFR9C9yxW .mbr-section-subtitle {
  margin: 1rem 0 3rem 0;
  color: #f5a755;
}
.cid-uW3GQ8yTKN {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #6a3629;
}
.cid-uW3GQ8yTKN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uW3GQ8yTKN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uW3GQ8yTKN .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uW3GQ8yTKN .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uW3GQ8yTKN .embla__slide .slide-content {
  width: 100%;
}
.cid-uW3GQ8yTKN .embla__slide .slide-content .item-wrapper {
  height: 100%;
}
.cid-uW3GQ8yTKN .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 660px;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 1440px) {
  .cid-uW3GQ8yTKN .embla__slide .slide-content .item-wrapper .item-img img {
    height: 590px;
  }
}
@media (max-width: 992px) {
  .cid-uW3GQ8yTKN .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uW3GQ8yTKN .embla__button--next,
.cid-uW3GQ8yTKN .embla__button--prev {
  display: flex;
}
.cid-uW3GQ8yTKN .embla__button {
  top: 45%;
  width: 56px;
  height: 56px;
  font-size: 16px;
  backdrop-filter: blur(10px);
  background-color: transparent !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 100%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uW3GQ8yTKN .embla__button::before {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  background-color: #000000;
  opacity: .2;
  border-radius: 100%;
  pointer-events: none;
  transition: all 0.3s ease;
}
.cid-uW3GQ8yTKN .embla__button:hover::before {
  opacity: .5;
}
.cid-uW3GQ8yTKN .embla__button:disabled {
  background-color: transparent !important;
  color: #ffffff !important;
  opacity: .5 !important;
}
.cid-uW3GQ8yTKN .embla__button:disabled::before {
  opacity: .2;
}
.cid-uW3GQ8yTKN .embla__button .mbr-iconfont {
  z-index: 1;
}
.cid-uW3GQ8yTKN .embla__button.embla__button--prev {
  left: 32px;
}
@media (max-width: 992px) {
  .cid-uW3GQ8yTKN .embla__button.embla__button--prev {
    left: 16px;
  }
}
.cid-uW3GQ8yTKN .embla__button.embla__button--prev .mbr-iconfont {
  margin-right: 4px;
}
.cid-uW3GQ8yTKN .embla__button.embla__button--next {
  right: 32px;
}
@media (max-width: 992px) {
  .cid-uW3GQ8yTKN .embla__button.embla__button--next {
    right: 16px;
  }
}
.cid-uW3GQ8yTKN .embla__button.embla__button--next .mbr-iconfont {
  margin-left: 4px;
}
.cid-uW3GQ8yTKN .embla {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cid-uW3GQ8yTKN .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uW3GQ8yTKN .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uW3GQ8yTKN .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uW3GQ8yTKN .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uW3GQ8yTKN .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uHFR9CFBwd {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #6a3629;
}
.cid-uHFR9CFBwd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHFR9CFBwd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHFR9CFBwd .content-wrap {
  justify-content: center;
}
.cid-uHFR9CFBwd .title-wrapper .logo-wrapper {
  margin-bottom: 16px;
}
.cid-uHFR9CFBwd .title-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 100%;
}
.cid-uHFR9CFBwd .title-wrapper .logo-wrapper a {
  display: inline-flex;
}
.cid-uHFR9CFBwd .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHFR9CFBwd .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uHFR9CFBwd .social-wrapper {
  margin-bottom: 16px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uHFR9CFBwd .social-wrapper {
    margin-bottom: 46px;
    text-align: left;
  }
}
.cid-uHFR9CFBwd .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uHFR9CFBwd .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uHFR9CFBwd .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uHFR9CFBwd .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #ff543d;
}
.cid-uHFR9CFBwd .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  color: #93281e;
  background-color: #ffa952;
  font-size: 32px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uHFR9CFBwd .copy-wrapper .mbr-copy {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHFR9CFBwd .copy-wrapper .mbr-copy {
    width: 100%;
    text-align: left;
  }
}
.cid-uHFR9CFBwd .mbr-section-title {
  color: #ff8576;
}
.cid-uHFR9CFBwd .mbr-copy {
  color: #51565c;
}
.cid-uHFR9CFBwd .mbr-copy,
.cid-uHFR9CFBwd .copy-wrapper {
  text-align: right;
}
.cid-uHFR9CFBwd .mbr-section-title,
.cid-uHFR9CFBwd .logo-wrapper {
  color: #ffa952;
}
.cid-uHFR9CFBwd .mbr-copy,
.cid-uHFR9CFBwd .copy-wrapper,
.cid-uHFR9CFBwd .social-wrapper {
  color: #ffa952;
  text-align: right;
}
.cid-uHFR9CXYMX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #060424;
  overflow: hidden;
}
.cid-uHFR3JOPei .nav-item:focus,
.cid-uHFR3JOPei .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uHFR3JOPei .nav-item {
    position: relative;
  }
}
.cid-uHFR3JOPei .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-uHFR3JOPei .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #6a3629;
}
.cid-uHFR3JOPei .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #6a3629 !important;
}
.cid-uHFR3JOPei .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-uHFR3JOPei .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  z-index: 1;
  padding: .5rem 0;
}
@media (max-width: 991px) {
  .cid-uHFR3JOPei .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uHFR3JOPei .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uHFR3JOPei .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uHFR3JOPei .navbar.collapsed .navbar-collapse.show,
.cid-uHFR3JOPei .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uHFR3JOPei .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uHFR3JOPei .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uHFR3JOPei .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uHFR3JOPei .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHFR3JOPei .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHFR3JOPei .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 1rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uHFR3JOPei .navbar.collapsed ul.navbar-nav li {
  margin-right: 14px;
}
.cid-uHFR3JOPei .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uHFR3JOPei .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
}
.cid-uHFR3JOPei .navbar.collapsed .right-menu,
.cid-uHFR3JOPei .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uHFR3JOPei .navbar .navbar-collapse.show,
  .cid-uHFR3JOPei .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
  }
  .cid-uHFR3JOPei .navbar .navbar-collapse.show .brand-container,
  .cid-uHFR3JOPei .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uHFR3JOPei .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHFR3JOPei .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uHFR3JOPei .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHFR3JOPei .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHFR3JOPei .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uHFR3JOPei .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uHFR3JOPei .navbar ul.navbar-nav li {
    margin: auto !important;
  }
  .cid-uHFR3JOPei .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uHFR3JOPei .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uHFR3JOPei .navbar .right-menu,
  .cid-uHFR3JOPei .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uHFR3JOPei .navbar.navbar-short {
  min-height: 60px;
}
.cid-uHFR3JOPei .navbar.navbar-short .mbr-overlay {
  background: #6a3629 !important;
}
.cid-uHFR3JOPei .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uHFR3JOPei .navbar.navbar-short .navbar-brand {
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uHFR3JOPei .navbar {
    padding-left: 65px;
    padding-right: 65px;
  }
}
.cid-uHFR3JOPei .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uHFR3JOPei .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHFR3JOPei .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHFR3JOPei .dropdown-item.active,
.cid-uHFR3JOPei .dropdown-item:active {
  background-color: transparent;
}
.cid-uHFR3JOPei .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHFR3JOPei .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
}
.cid-uHFR3JOPei .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6a3629;
}
.cid-uHFR3JOPei .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHFR3JOPei .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHFR3JOPei ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uHFR3JOPei ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uHFR3JOPei .navbar-buttons {
  margin-left: auto;
}
.cid-uHFR3JOPei button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
  outline: none;
}
.cid-uHFR3JOPei button.navbar-toggler:hover {
  outline: none;
}
.cid-uHFR3JOPei button.navbar-toggler:active {
  outline: none;
}
.cid-uHFR3JOPei button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffa952;
}
.cid-uHFR3JOPei button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHFR3JOPei button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHFR3JOPei button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHFR3JOPei button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHFR3JOPei nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHFR3JOPei nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uHFR3JOPei nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uHFR3JOPei nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHFR3JOPei a.nav-link {
  position: relative;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 3.41px;
}
.cid-uHFR3JOPei a.nav-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0);
  transition: .3s ease;
}
.cid-uHFR3JOPei a.nav-link:hover:before {
  transform: scale(1);
}
.cid-uHFR3JOPei .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uHFR3JOPei .right-menu,
.cid-uHFR3JOPei .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uHFR3JOPei .left-menu .navbar-nav {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uHFR3JOPei .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uHFR3JOPei .right-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uHFR3JOPei .right-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uHFR3JOPei .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uHFR3JOPei .card-wrapper {
  z-index: 3;
}
.cid-uHFR3JOPei .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uHFR3JOPei .navbar-collapse {
    padding-top: 0;
  }
}
.cid-uHFR3JOPei .nav-item:not(:last-child) {
  margin-right: 14px !important;
}
.cid-uHFR3JOPei .navbar-brand img {
  width: auto !important;
}
.cid-uHFR3J4fMI {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #6a3629;
}
.cid-uHFR3J4fMI .container {
  padding: 0 5%;
}
.cid-uHFR3J4fMI img,
.cid-uHFR3J4fMI .item-img {
  width: 100%;
}
.cid-uHFR3J4fMI .item:focus,
.cid-uHFR3J4fMI span:focus {
  outline: none;
}
.cid-uHFR3J4fMI .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uHFR3J4fMI .item-wrapper {
  position: unset;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uHFR3J4fMI .mbr-section-title {
  margin-bottom: 4.5rem;
  color: #f5a755;
}
.cid-uHFR3J4fMI .mbr-section-subtitle {
  margin: 1rem 0 3rem 0;
  color: #f5a755;
}
.cid-uHFR3KenzR {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #6a3629;
}
.cid-uHFR3KenzR .container {
  padding: 0 5%;
}
.cid-uHFR3KenzR img,
.cid-uHFR3KenzR .item-img {
  width: 100%;
}
.cid-uHFR3KenzR .item:focus,
.cid-uHFR3KenzR span:focus {
  outline: none;
}
.cid-uHFR3KenzR .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uHFR3KenzR .item-wrapper {
  position: unset;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uHFR3KenzR .mbr-section-title {
  margin-bottom: 4.5rem;
  color: #6870d1;
}
.cid-uHFR3KenzR .mbr-section-subtitle {
  margin: 1rem 0 3rem 0;
  color: #f5a755;
}
.cid-uHFR3KqVPL {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #6a3629;
}
.cid-uHFR3KqVPL .container {
  padding: 0 5%;
}
.cid-uHFR3KqVPL img,
.cid-uHFR3KqVPL .item-img {
  width: 100%;
}
.cid-uHFR3KqVPL .item:focus,
.cid-uHFR3KqVPL span:focus {
  outline: none;
}
.cid-uHFR3KqVPL .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uHFR3KqVPL .item-wrapper {
  position: unset;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uHFR3KqVPL .mbr-section-title {
  margin-bottom: 4.5rem;
  color: #6870d1;
}
.cid-uHFR3KqVPL .mbr-section-subtitle {
  margin: 1rem 0 3rem 0;
  color: #f5a755;
}
.cid-uHFR3KIYIm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #6a3629;
}
.cid-uHFR3KIYIm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHFR3KIYIm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHFR3KIYIm .content-wrap {
  justify-content: center;
}
.cid-uHFR3KIYIm .title-wrapper .logo-wrapper {
  margin-bottom: 16px;
}
.cid-uHFR3KIYIm .title-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 100%;
}
.cid-uHFR3KIYIm .title-wrapper .logo-wrapper a {
  display: inline-flex;
}
.cid-uHFR3KIYIm .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHFR3KIYIm .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uHFR3KIYIm .social-wrapper {
  margin-bottom: 16px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uHFR3KIYIm .social-wrapper {
    margin-bottom: 46px;
    text-align: left;
  }
}
.cid-uHFR3KIYIm .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uHFR3KIYIm .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uHFR3KIYIm .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uHFR3KIYIm .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #ff543d;
}
.cid-uHFR3KIYIm .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  color: #93281e;
  background-color: #ffa952;
  font-size: 32px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px;
}
.cid-uHFR3KIYIm .copy-wrapper .mbr-copy {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHFR3KIYIm .copy-wrapper .mbr-copy {
    width: 100%;
    text-align: left;
  }
}
.cid-uHFR3KIYIm .mbr-section-title {
  color: #ff8576;
}
.cid-uHFR3KIYIm .mbr-copy {
  color: #51565c;
}
.cid-uHFR3KIYIm .mbr-copy,
.cid-uHFR3KIYIm .copy-wrapper {
  text-align: right;
}
.cid-uHFR3KIYIm .mbr-section-title,
.cid-uHFR3KIYIm .logo-wrapper {
  color: #ffa952;
}
.cid-uHFR3KIYIm .mbr-copy,
.cid-uHFR3KIYIm .copy-wrapper,
.cid-uHFR3KIYIm .social-wrapper {
  color: #ffa952;
  text-align: right;
}
.cid-uHFR3LaDBj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #060424;
  overflow: hidden;
}
