.btn {
  border-width: 2px;
}
body {
  font-family: Spartan;
}
.display-1 {
  font-family: 'Spartan', sans-serif;
  font-size: 3.75rem;
  line-height: 1.25;
  letter-spacing: -0.07em;
}
.display-1 > .mbr-iconfont {
  font-size: 4.6875rem;
}
.display-2 {
  font-family: 'Spartan', sans-serif;
  font-size: 2.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-4 {
  font-family: 'Spartan', sans-serif;
  font-size: 0.875rem;
  letter-spacing: -0.04em;
}
.display-4 > .mbr-iconfont {
  font-size: 1.09375rem;
}
.display-5 {
  font-family: 'Spartan', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: -0.05em;
}
.display-5 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-7 {
  font-family: 'Spartan', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.1875rem;
}
/* ---- 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: 3rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.625rem;
    font-size: calc( 1.9625rem + (3.75 - 1.9625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.9625rem + (3.75 - 1.9625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.76rem;
    font-size: calc( 0.9824999999999999rem + (0.95 - 0.9824999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9824999999999999rem + (0.95 - 0.9824999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 30px;
}
.bg-primary {
  background-color: #382217 !important;
}
.bg-success {
  background-color: #d58001 !important;
}
.bg-info {
  background-color: #bbbbbb !important;
}
.bg-warning {
  background-color: #65676c !important;
}
.bg-danger {
  background-color: #735b4f !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #382217 !important;
  border-color: #382217 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #cf2f00 !important;
  border-color: #cf2f00 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #781b00 !important;
  border-color: #781b00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #781b00 !important;
  border-color: #781b00 !important;
}
.btn-info,
.btn-info:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
}
.btn-success,
.btn-success:active {
  background-color: #d58001 !important;
  border-color: #d58001 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #7f4c01 !important;
  border-color: #7f4c01 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #7f4c01 !important;
  border-color: #7f4c01 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #65676c !important;
  border-color: #65676c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #3b3c3f !important;
  border-color: #3b3c3f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #3b3c3f !important;
  border-color: #3b3c3f !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #735b4f !important;
  border-color: #735b4f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #40322c !important;
  border-color: #40322c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #40322c !important;
  border-color: #40322c !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #382217;
  color: #382217;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #382217 !important;
  border-color: #382217 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #cf2f00;
  color: #cf2f00;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #781b00 !important;
  background-color: transparent!important;
  border-color: #781b00 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #cf2f00 !important;
  border-color: #cf2f00 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #bbbbbb;
  color: #bbbbbb;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #909090 !important;
  background-color: transparent!important;
  border-color: #909090 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #d58001;
  color: #d58001;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #7f4c01 !important;
  background-color: transparent!important;
  border-color: #7f4c01 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #d58001 !important;
  border-color: #d58001 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #65676c;
  color: #65676c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #3b3c3f !important;
  background-color: transparent!important;
  border-color: #3b3c3f !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #65676c !important;
  border-color: #65676c !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #735b4f;
  color: #735b4f;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #40322c !important;
  background-color: transparent!important;
  border-color: #40322c !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #735b4f !important;
  border-color: #735b4f !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #382217 !important;
}
.text-secondary {
  color: #cf2f00 !important;
}
.text-success {
  color: #d58001 !important;
}
.text-info {
  color: #bbbbbb !important;
}
.text-warning {
  color: #65676c !important;
}
.text-danger {
  color: #735b4f !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #691800 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #6f4301 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #888888 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #343537 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #372b25 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #382217;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #bbbbbb;
}
.alert-warning {
  background-color: #65676c;
}
.alert-danger {
  background-color: #735b4f;
}
.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: #382217;
  border-color: #382217;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #382217;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c48c70;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffdaa3;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fbfbfb;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #a5a7ab;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b29b8f;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Spartan', sans-serif;
  font-size: 0.875rem;
  letter-spacing: -0.04em;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.09375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #382217 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Spartan', sans-serif;
  font-size: 0.875rem;
  letter-spacing: -0.04em;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.09375rem;
}
blockquote {
  border-color: #382217;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #382217;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #382217;
}
.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: #382217;
  border-bottom-color: #382217;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #382217 !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: #cf2f00 !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='%23382217' %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;
}
html,
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.menubar {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.menubar > .mbr-iconfont {
  font-size: 1rem;
}
.font1 {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}
.font1 > .mbr-iconfont {
  font-size: 0.95rem;
}
.font15 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.33rem;
  line-height: 1.5;
}
.font15 > .mbr-iconfont {
  font-size: 1.33rem;
}
.font2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.font2 > .mbr-iconfont {
  font-size: 1.8rem;
}
.font12 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.15rem;
  line-height: 1.5;
}
.font12 > .mbr-iconfont {
  font-size: 1.15rem;
}
.footer {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.footer > .mbr-iconfont {
  font-size: 0.8rem;
}
.cid-vpUdhWAYli {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #463228;
}
.cid-vpUdhWAYli .mbr-section-title {
  color: #ffffff;
}
.cid-vpUdhWAYli .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vpQmzaCu3l {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vpQmzaCu3l .content-wrap .label-wrapper {
    margin-bottom: 12px;
  }
}
.cid-vpQmzaCu3l .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-vpQmzaCu3l .content-wrap .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ff452e;
}
.cid-vpQmzaCu3l .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vpQmzaCu3l .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vpQmzaCu3l .content-wrap .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vpQmzaCu3l .content-wrap .title-wrapper .mbr-text {
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-vpQmzaCu3l .content-wrap .main-btn {
  margin-bottom: -9.6px;
}
@media (max-width: 992px) {
  .cid-vpQmzaCu3l .content-wrap .main-btn {
    margin-top: 10px;
  }
}
.cid-vpQmzaCu3l .content-wrap .border-wrap {
  width: 100%;
  padding-bottom: 48px;
  border-bottom: 1px solid #735b4f;
}
@media (max-width: 992px) {
  .cid-vpQmzaCu3l .content-wrap .border-wrap {
    padding-bottom: 20px;
  }
}
.cid-vpQmzaCu3l .mbr-label {
  color: #707070;
}
.cid-vpQmzaCu3l .mbr-section-title {
  color: #000000;
}
.cid-vpQmzaCu3l .mbr-section-subtitle {
  color: #707070;
}
.cid-vpQmzaCu3l .mbr-text {
  color: #1f242e;
}
.cid-vpQmzaCu3l .main-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vpQmzaCu3l .main-btn {
    text-align: left;
  }
}
.cid-vpQmzaCu3l .mbr-label,
.cid-vpQmzaCu3l .label-wrapper {
  color: #150c0a;
}
.cid-vpQmzaCu3l .mbr-section-subtitle,
.cid-vpQmzaCu3l .subtitle-wrap {
  color: #1f242e;
}
.cid-vpfBL5L5dX {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vpfBL5L5dX .content-wrap .label-wrapper {
    margin-bottom: 12px;
  }
}
.cid-vpfBL5L5dX .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-vpfBL5L5dX .content-wrap .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ff452e;
}
.cid-vpfBL5L5dX .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vpfBL5L5dX .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vpfBL5L5dX .content-wrap .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vpfBL5L5dX .content-wrap .title-wrapper .mbr-text {
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-vpfBL5L5dX .content-wrap .main-btn {
  margin-bottom: -9.6px;
}
@media (max-width: 992px) {
  .cid-vpfBL5L5dX .content-wrap .main-btn {
    margin-top: 10px;
  }
}
.cid-vpfBL5L5dX .content-wrap .border-wrap {
  width: 100%;
  padding-bottom: 48px;
  border-bottom: 1px solid #735b4f;
}
@media (max-width: 992px) {
  .cid-vpfBL5L5dX .content-wrap .border-wrap {
    padding-bottom: 20px;
  }
}
.cid-vpfBL5L5dX .mbr-label {
  color: #707070;
}
.cid-vpfBL5L5dX .mbr-section-title {
  color: #000000;
}
.cid-vpfBL5L5dX .mbr-section-subtitle {
  color: #707070;
}
.cid-vpfBL5L5dX .mbr-text {
  color: #1f242e;
}
.cid-vpfBL5L5dX .main-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vpfBL5L5dX .main-btn {
    text-align: left;
  }
}
.cid-vpfBL5L5dX .mbr-label,
.cid-vpfBL5L5dX .label-wrapper {
  color: #150c0a;
}
.cid-vpfBL5L5dX .mbr-section-subtitle,
.cid-vpfBL5L5dX .subtitle-wrap {
  color: #1f242e;
}
.cid-vqbYp7P73t {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-vqbYp7P73t .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqbYp7P73t .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-vqbYp7P73t .mbr-figure {
    margin-top: 1.5rem;
  }
}
.cid-vqbYp7P73t .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-vqbYp7P73t .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-vqbYp7P73t .media-content,
.cid-vqbYp7P73t .mbr-figure {
  align-self: center;
}
.cid-vqbYp7P73t .mbr-figure iframe {
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
}
.cid-vqbYp7P73t .mbr-figure {
  border-radius: 0rem;
  overflow: hidden;
}
@media (min-width: 767px) {
  .cid-vqbYp7P73t .mbr-figure {
    border-radius: 2rem;
  }
}
.cid-vqbYp7P73t .mbr-section-maintitle {
  text-align: center;
}
.cid-vqbYp7P73t .mbr-section-title {
  text-align: center;
}
.cid-vqbYp7P73t .mbr-text,
.cid-vqbYp7P73t .mbr-section-btn {
  text-align: left;
}
#hrblock-block-4b hr {
  margin: 0;
}
.cid-voHtM09eDK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-voHtM09eDK .mbr-section-title {
  text-align: center;
}
#hrblock-block-p hr {
  margin: 0;
}
.cid-vpirpklBbG {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vpirpklBbG .content-wrap .label-wrapper {
    margin-bottom: 12px;
  }
}
.cid-vpirpklBbG .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-vpirpklBbG .content-wrap .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ff452e;
}
.cid-vpirpklBbG .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vpirpklBbG .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vpirpklBbG .content-wrap .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vpirpklBbG .content-wrap .title-wrapper .mbr-text {
  margin-top: 20px;
  margin-bottom: 0;
}
.cid-vpirpklBbG .content-wrap .main-btn {
  margin-bottom: -9.6px;
}
@media (max-width: 992px) {
  .cid-vpirpklBbG .content-wrap .main-btn {
    margin-top: 10px;
  }
}
.cid-vpirpklBbG .content-wrap .border-wrap {
  width: 100%;
  padding-bottom: 48px;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-vpirpklBbG .content-wrap .border-wrap {
    padding-bottom: 20px;
  }
}
.cid-vpirpklBbG .mbr-label {
  color: #707070;
}
.cid-vpirpklBbG .mbr-section-title {
  color: #000000;
}
.cid-vpirpklBbG .mbr-section-subtitle {
  color: #707070;
}
.cid-vpirpklBbG .mbr-text {
  color: #484a4f;
}
.cid-vpirpklBbG .main-btn {
  text-align: left;
}
@media (max-width: 992px) {
  .cid-vpirpklBbG .main-btn {
    text-align: left;
  }
}
.cid-vpirpklBbG .mbr-label,
.cid-vpirpklBbG .label-wrapper {
  color: #65676c;
}
.cid-vpirpklBbG .mbr-section-subtitle,
.cid-vpirpklBbG .subtitle-wrap {
  color: #1f242e;
}
.cid-vpirpklBbG .card {
  justify-content: center;
  height: 80px;
  width: 120px;
  padding: 0.5rem;
}
@media (max-width: 575px) {
  .cid-vpirpklBbG .card {
    width: 50px;
  }
}
.cid-vpirpklBbG .mbr-section-title,
.cid-vpirpklBbG .title-wrap,
.cid-vpirpklBbG .main-btn {
  color: #65676c;
}
.cid-vp9senQdRa {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #463228;
}
@media (max-width: 992px) {
  .cid-vp9senQdRa .container {
    padding: 0 20px;
  }
}
.cid-vp9senQdRa .row {
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vp9senQdRa .row .title-wrapper {
    margin-bottom: 32px;
    height: auto;
  }
}
.cid-vp9senQdRa .row .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vp9senQdRa .row .title-wrapper .mbr-desc {
  opacity: .5;
  margin-bottom: 16px;
}
.cid-vp9senQdRa .row .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vp9senQdRa .row .list {
  padding: 0;
  margin-bottom: 50px;
  list-style: none;
}
@media (max-width: 992px) {
  .cid-vp9senQdRa .row .list {
    margin-bottom: 32px;
  }
}
.cid-vp9senQdRa .row .list .item-wrap {
  margin-bottom: 16px;
}
.cid-vp9senQdRa .row .list .item-wrap:hover {
  text-decoration: underline;
  color: #382217;
}
.cid-vp9senQdRa .row .copyright {
  opacity: .5;
  margin-bottom: 0;
}
.cid-vp9senQdRa .mbr-section-title {
  color: #ffffff;
}
.cid-vp9senQdRa .mbr-desc {
  color: #ffffff;
}
.cid-vp9senQdRa .mbr-text {
  color: #ffffff;
}
.cid-vp9senQdRa .list {
  color: #ffffff;
}
.cid-vp9senQdRa .copyright {
  color: #ffffff;
}
.cid-vq21k8qUdB {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #463228;
}
.cid-vq21k8qUdB .mbr-section-title {
  color: #ffffff;
}
.cid-vq21k8qUdB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vnaxoTFZJu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vnaxoTFZJu .items-wrapper .item:first-child .item-wrapper {
  border-top: 1px solid #adaeb1;
}
.cid-vnaxoTFZJu .items-wrapper .item:hover .item-wrapper .name-wrapper,
.cid-vnaxoTFZJu .items-wrapper .item:focus .item-wrapper .name-wrapper {
  transform: translateX(20px);
}
.cid-vnaxoTFZJu .items-wrapper .item:hover .item-wrapper .item-content .icon-wrapper,
.cid-vnaxoTFZJu .items-wrapper .item:focus .item-wrapper .item-content .icon-wrapper {
  transform: translateX(-20px);
}
.cid-vnaxoTFZJu .items-wrapper .item .item-wrapper {
  animation: none !important;
  padding: 20px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #adaeb1;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-vnaxoTFZJu .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-vnaxoTFZJu .items-wrapper .item .item-wrapper .name-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all .3s ease;
  width: 50%;
  padding-right: 20px;
}
@media (max-width: 992px) {
  .cid-vnaxoTFZJu .items-wrapper .item .item-wrapper .name-wrapper {
    display: block;
    margin-bottom: 20px;
    width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-vnaxoTFZJu .items-wrapper .item .item-wrapper .name-wrapper .item-img {
    margin-bottom: 15px;
  }
}
.cid-vnaxoTFZJu .items-wrapper .item .item-wrapper .name-wrapper .item-img img {
  width: 75px;
  height: 75px;
  border-radius: 100% !important;
  object-fit: cover;
}
.cid-vnaxoTFZJu .items-wrapper .item .item-wrapper .name-wrapper .item-name {
  margin-bottom: 0;
}
.cid-vnaxoTFZJu .items-wrapper .item .item-wrapper .item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-vnaxoTFZJu .items-wrapper .item .item-wrapper .item-content {
    width: 100%;
  }
}
.cid-vnaxoTFZJu .items-wrapper .item .item-wrapper .item-content .item-role {
  margin-bottom: 0;
}
.cid-vnaxoTFZJu .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  transition: all .3s ease;
}
.cid-vnaxoTFZJu .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  transition: all .3s ease;
  font-size: 20px;
  margin: 0;
}
.cid-vnaxoTFZJu .item-name {
  color: #1f1f1f;
}
.cid-vnaxoTFZJu .item-role {
  color: #000000;
}
.cid-vnaxoTFZJu .mbr-section-title {
  text-align: center;
}
.cid-vnaxoTFZJu .item-name,
.cid-vnaxoTFZJu .item-btn {
  color: #000000;
}
.cid-vp9senQdRa {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #463228;
}
@media (max-width: 992px) {
  .cid-vp9senQdRa .container {
    padding: 0 20px;
  }
}
.cid-vp9senQdRa .row {
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vp9senQdRa .row .title-wrapper {
    margin-bottom: 32px;
    height: auto;
  }
}
.cid-vp9senQdRa .row .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vp9senQdRa .row .title-wrapper .mbr-desc {
  opacity: .5;
  margin-bottom: 16px;
}
.cid-vp9senQdRa .row .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vp9senQdRa .row .list {
  padding: 0;
  margin-bottom: 50px;
  list-style: none;
}
@media (max-width: 992px) {
  .cid-vp9senQdRa .row .list {
    margin-bottom: 32px;
  }
}
.cid-vp9senQdRa .row .list .item-wrap {
  margin-bottom: 16px;
}
.cid-vp9senQdRa .row .list .item-wrap:hover {
  text-decoration: underline;
  color: #382217;
}
.cid-vp9senQdRa .row .copyright {
  opacity: .5;
  margin-bottom: 0;
}
.cid-vp9senQdRa .mbr-section-title {
  color: #ffffff;
}
.cid-vp9senQdRa .mbr-desc {
  color: #ffffff;
}
.cid-vp9senQdRa .mbr-text {
  color: #ffffff;
}
.cid-vp9senQdRa .list {
  color: #ffffff;
}
.cid-vp9senQdRa .copyright {
  color: #ffffff;
}
.cid-vq21npWtVZ {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #463228;
}
.cid-vq21npWtVZ .mbr-section-title {
  color: #ffffff;
}
.cid-vq21npWtVZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vnPZ4BVX20 {
  background-color: #fafafa;
}
.cid-vnPZ4BVX20 .content {
  display: flex;
  height: 100px;
  justify-content: center;
  align-items: center;
}
.cid-vnPZ4BVX20 .content img {
  width: 43px;
  height: 43px;
  object-fit: cover;
  margin-right: 15px;
}
.cid-vnPZ4BVX20 .content .mbr-text {
  margin: 0;
}
.cid-vnPZ4BVX20 .mbr-text {
  color: #000000;
}
.cid-vnQfkaZkoq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-vnQfkaZkoq .mbr-section-title {
  text-align: center;
}
.cid-vnPP7sfSmy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f9f9fc;
}
.cid-vnPP7sfSmy .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #735b4f;
}
@media (max-width: 768px) {
  .cid-vnPP7sfSmy .mbr-section-subtitle {
    margin-bottom: 8px;
  }
}
.cid-vnPP7sfSmy .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
}
@media (max-width: 768px) {
  .cid-vnPP7sfSmy .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vnPP7sfSmy .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-vnPP7sfSmy .mbr-text {
    padding: 0;
  }
}
.cid-vnQ2GsGpwd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f9f9fc;
}
.cid-vnQ2GsGpwd .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #735b4f;
}
@media (max-width: 768px) {
  .cid-vnQ2GsGpwd .mbr-section-subtitle {
    margin-bottom: 8px;
  }
}
.cid-vnQ2GsGpwd .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
}
@media (max-width: 768px) {
  .cid-vnQ2GsGpwd .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vnQ2GsGpwd .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-vnQ2GsGpwd .mbr-text {
    padding: 0;
  }
}
#hrblock-block-18 hr {
  margin: 0;
}
.cid-vnPXp9DblD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f9f9fc;
}
.cid-vnPXp9DblD .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #735b4f;
}
@media (max-width: 768px) {
  .cid-vnPXp9DblD .mbr-section-subtitle {
    margin-bottom: 8px;
  }
}
.cid-vnPXp9DblD .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
}
@media (max-width: 768px) {
  .cid-vnPXp9DblD .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vnPXp9DblD .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-vnPXp9DblD .mbr-text {
    padding: 0;
  }
}
.cid-vnQ3BIJpbW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f9f9fc;
}
.cid-vnQ3BIJpbW .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #735b4f;
}
@media (max-width: 768px) {
  .cid-vnQ3BIJpbW .mbr-section-subtitle {
    margin-bottom: 8px;
  }
}
.cid-vnQ3BIJpbW .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
}
@media (max-width: 768px) {
  .cid-vnQ3BIJpbW .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vnQ3BIJpbW .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-vnQ3BIJpbW .mbr-text {
    padding: 0;
  }
}
#hrblock-block-1b hr {
  margin: 0;
}
.cid-vnQgjW8hZy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f9f9fc;
}
.cid-vnQgjW8hZy .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #735b4f;
}
@media (max-width: 768px) {
  .cid-vnQgjW8hZy .mbr-section-subtitle {
    margin-bottom: 8px;
  }
}
.cid-vnQgjW8hZy .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
}
@media (max-width: 768px) {
  .cid-vnQgjW8hZy .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vnQgjW8hZy .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-vnQgjW8hZy .mbr-text {
    padding: 0;
  }
}
.cid-vnQh1Pyi1L {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f9f9fc;
}
.cid-vnQh1Pyi1L .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #735b4f;
}
@media (max-width: 768px) {
  .cid-vnQh1Pyi1L .mbr-section-subtitle {
    margin-bottom: 8px;
  }
}
.cid-vnQh1Pyi1L .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
}
@media (max-width: 768px) {
  .cid-vnQh1Pyi1L .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vnQh1Pyi1L .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-vnQh1Pyi1L .mbr-text {
    padding: 0;
  }
}
#hrblock-block-1d hr {
  margin: 0;
}
.cid-vnQk9DeFxD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f9f9fc;
}
.cid-vnQk9DeFxD .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #735b4f;
}
@media (max-width: 768px) {
  .cid-vnQk9DeFxD .mbr-section-subtitle {
    margin-bottom: 8px;
  }
}
.cid-vnQk9DeFxD .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
}
@media (max-width: 768px) {
  .cid-vnQk9DeFxD .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vnQk9DeFxD .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-vnQk9DeFxD .mbr-text {
    padding: 0;
  }
}
.cid-vnQlrc5Lro {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f9f9fc;
}
.cid-vnQlrc5Lro .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #735b4f;
}
@media (max-width: 768px) {
  .cid-vnQlrc5Lro .mbr-section-subtitle {
    margin-bottom: 8px;
  }
}
.cid-vnQlrc5Lro .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
}
@media (max-width: 768px) {
  .cid-vnQlrc5Lro .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vnQlrc5Lro .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-vnQlrc5Lro .mbr-text {
    padding: 0;
  }
}
.cid-vp9senQdRa {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #463228;
}
@media (max-width: 992px) {
  .cid-vp9senQdRa .container {
    padding: 0 20px;
  }
}
.cid-vp9senQdRa .row {
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vp9senQdRa .row .title-wrapper {
    margin-bottom: 32px;
    height: auto;
  }
}
.cid-vp9senQdRa .row .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vp9senQdRa .row .title-wrapper .mbr-desc {
  opacity: .5;
  margin-bottom: 16px;
}
.cid-vp9senQdRa .row .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vp9senQdRa .row .list {
  padding: 0;
  margin-bottom: 50px;
  list-style: none;
}
@media (max-width: 992px) {
  .cid-vp9senQdRa .row .list {
    margin-bottom: 32px;
  }
}
.cid-vp9senQdRa .row .list .item-wrap {
  margin-bottom: 16px;
}
.cid-vp9senQdRa .row .list .item-wrap:hover {
  text-decoration: underline;
  color: #382217;
}
.cid-vp9senQdRa .row .copyright {
  opacity: .5;
  margin-bottom: 0;
}
.cid-vp9senQdRa .mbr-section-title {
  color: #ffffff;
}
.cid-vp9senQdRa .mbr-desc {
  color: #ffffff;
}
.cid-vp9senQdRa .mbr-text {
  color: #ffffff;
}
.cid-vp9senQdRa .list {
  color: #ffffff;
}
.cid-vp9senQdRa .copyright {
  color: #ffffff;
}
.cid-vq21pNC3Dj {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #463228;
}
.cid-vq21pNC3Dj .mbr-section-title {
  color: #ffffff;
}
.cid-vq21pNC3Dj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vnRaiDSYBp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-vnRaiDSYBp .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #735b4f;
}
@media (max-width: 768px) {
  .cid-vnRaiDSYBp .mbr-section-subtitle {
    margin-bottom: 8px;
  }
}
.cid-vnRaiDSYBp .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
}
@media (max-width: 768px) {
  .cid-vnRaiDSYBp .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vnRaiDSYBp .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-vnRaiDSYBp .mbr-text {
    padding: 0;
  }
}
.cid-vp9senQdRa {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #463228;
}
@media (max-width: 992px) {
  .cid-vp9senQdRa .container {
    padding: 0 20px;
  }
}
.cid-vp9senQdRa .row {
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vp9senQdRa .row .title-wrapper {
    margin-bottom: 32px;
    height: auto;
  }
}
.cid-vp9senQdRa .row .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vp9senQdRa .row .title-wrapper .mbr-desc {
  opacity: .5;
  margin-bottom: 16px;
}
.cid-vp9senQdRa .row .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vp9senQdRa .row .list {
  padding: 0;
  margin-bottom: 50px;
  list-style: none;
}
@media (max-width: 992px) {
  .cid-vp9senQdRa .row .list {
    margin-bottom: 32px;
  }
}
.cid-vp9senQdRa .row .list .item-wrap {
  margin-bottom: 16px;
}
.cid-vp9senQdRa .row .list .item-wrap:hover {
  text-decoration: underline;
  color: #382217;
}
.cid-vp9senQdRa .row .copyright {
  opacity: .5;
  margin-bottom: 0;
}
.cid-vp9senQdRa .mbr-section-title {
  color: #ffffff;
}
.cid-vp9senQdRa .mbr-desc {
  color: #ffffff;
}
.cid-vp9senQdRa .mbr-text {
  color: #ffffff;
}
.cid-vp9senQdRa .list {
  color: #ffffff;
}
.cid-vp9senQdRa .copyright {
  color: #ffffff;
}
.cid-vq21hlKfWP {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #463228;
}
.cid-vq21hlKfWP .mbr-section-title {
  color: #ffffff;
}
.cid-vq21hlKfWP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vo7HDbj9Cs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vo7HDbj9Cs .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #735b4f;
}
@media (max-width: 768px) {
  .cid-vo7HDbj9Cs .mbr-section-subtitle {
    margin-bottom: 8px;
  }
}
.cid-vo7HDbj9Cs .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
}
@media (max-width: 768px) {
  .cid-vo7HDbj9Cs .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vo7HDbj9Cs .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-vo7HDbj9Cs .mbr-text {
    padding: 0;
  }
}
.cid-vq1t4luYFf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vq1t4luYFf .mbr-section-head {
  width: 100%;
  margin-bottom: 36px;
}
.cid-vq1t4luYFf .mbr-section-title {
  color: #45494E;
}
.cid-vq1t4luYFf .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-vq1t4luYFf .tabl-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-vq1t4luYFf .tabl-item-row {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-vq1t4luYFf .tabl-item-row:nth-child(2n) {
  background: rgba(0, 0, 0, 0.02);
}
.cid-vq1t4luYFf .tabl-item-column {
  width: 33.33333333%;
  flex-grow: 1;
  padding: 14px;
}
@media (max-width: 767px) {
  .cid-vq1t4luYFf .tabl-item-column {
    padding: 10px;
  }
}
.cid-vq1t4luYFf .tabl-item-columnA {
  width: 20%;
  flex-grow: 1;
  padding: 14px;
}
@media (max-width: 767px) {
  .cid-vq1t4luYFf .tabl-item-columnA {
    padding: 10px;
  }
}
.cid-vq1t4luYFf .tabl-item-columnBC {
  width: 40%;
  flex-grow: 1;
  padding: 14px;
}
@media (max-width: 767px) {
  .cid-vq1t4luYFf .tabl-item-columnBC {
    padding: 10px;
  }
}
.cid-vq1t4luYFf .card-title {
  color: #45494E;
}
.cid-vq1t4luYFf .card-text {
  color: #150c0a;
}
.cid-vq1yoUwkKj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vq1yoUwkKj .mbr-section-head {
  width: 100%;
  margin-bottom: 36px;
}
.cid-vq1yoUwkKj .mbr-section-title {
  color: #45494E;
}
.cid-vq1yoUwkKj .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-vq1yoUwkKj .tabl-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-vq1yoUwkKj .tabl-item-row {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-vq1yoUwkKj .tabl-item-row:nth-child(2n) {
  background: rgba(0, 0, 0, 0.02);
}
.cid-vq1yoUwkKj .tabl-item-column {
  width: 33.33333333%;
  flex-grow: 1;
  padding: 14px;
}
@media (max-width: 767px) {
  .cid-vq1yoUwkKj .tabl-item-column {
    padding: 10px;
  }
}
.cid-vq1yoUwkKj .tabl-item-columnA {
  width: 20%;
  flex-grow: 1;
  padding: 14px;
}
@media (max-width: 767px) {
  .cid-vq1yoUwkKj .tabl-item-columnA {
    padding: 10px;
  }
}
.cid-vq1yoUwkKj .tabl-item-columnBC {
  width: 40%;
  flex-grow: 1;
  padding: 14px;
}
@media (max-width: 767px) {
  .cid-vq1yoUwkKj .tabl-item-columnBC {
    padding: 10px;
  }
}
.cid-vq1yoUwkKj .card-title {
  color: #45494E;
}
.cid-vq1yoUwkKj .card-text {
  color: #150c0a;
}
.cid-vq1DbZaSBQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vq1DbZaSBQ .mbr-section-head {
  width: 100%;
  margin-bottom: 36px;
}
.cid-vq1DbZaSBQ .mbr-section-title {
  color: #45494E;
}
.cid-vq1DbZaSBQ .mbr-section-subtitle {
  color: #45494E;
  margin-top: 24px;
}
.cid-vq1DbZaSBQ .tabl-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-vq1DbZaSBQ .tabl-item-row {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-vq1DbZaSBQ .tabl-item-row:nth-child(2n) {
  background: rgba(0, 0, 0, 0.02);
}
.cid-vq1DbZaSBQ .tabl-item-column {
  width: 33.33333333%;
  flex-grow: 1;
  padding: 14px;
}
@media (max-width: 767px) {
  .cid-vq1DbZaSBQ .tabl-item-column {
    padding: 10px;
  }
}
.cid-vq1DbZaSBQ .tabl-item-columnA {
  width: 20%;
  flex-grow: 1;
  padding: 14px;
}
@media (max-width: 767px) {
  .cid-vq1DbZaSBQ .tabl-item-columnA {
    padding: 10px;
  }
}
.cid-vq1DbZaSBQ .tabl-item-columnBC {
  width: 40%;
  flex-grow: 1;
  padding: 14px;
}
@media (max-width: 767px) {
  .cid-vq1DbZaSBQ .tabl-item-columnBC {
    padding: 10px;
  }
}
.cid-vq1DbZaSBQ .card-title {
  color: #45494E;
}
.cid-vq1DbZaSBQ .card-text {
  color: #150c0a;
}
.cid-vp9senQdRa {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #463228;
}
@media (max-width: 992px) {
  .cid-vp9senQdRa .container {
    padding: 0 20px;
  }
}
.cid-vp9senQdRa .row {
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vp9senQdRa .row .title-wrapper {
    margin-bottom: 32px;
    height: auto;
  }
}
.cid-vp9senQdRa .row .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vp9senQdRa .row .title-wrapper .mbr-desc {
  opacity: .5;
  margin-bottom: 16px;
}
.cid-vp9senQdRa .row .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vp9senQdRa .row .list {
  padding: 0;
  margin-bottom: 50px;
  list-style: none;
}
@media (max-width: 992px) {
  .cid-vp9senQdRa .row .list {
    margin-bottom: 32px;
  }
}
.cid-vp9senQdRa .row .list .item-wrap {
  margin-bottom: 16px;
}
.cid-vp9senQdRa .row .list .item-wrap:hover {
  text-decoration: underline;
  color: #382217;
}
.cid-vp9senQdRa .row .copyright {
  opacity: .5;
  margin-bottom: 0;
}
.cid-vp9senQdRa .mbr-section-title {
  color: #ffffff;
}
.cid-vp9senQdRa .mbr-desc {
  color: #ffffff;
}
.cid-vp9senQdRa .mbr-text {
  color: #ffffff;
}
.cid-vp9senQdRa .list {
  color: #ffffff;
}
.cid-vp9senQdRa .copyright {
  color: #ffffff;
}
.cid-vq21eoAXTw {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #463228;
}
.cid-vq21eoAXTw .mbr-section-title {
  color: #ffffff;
}
.cid-vq21eoAXTw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vpzIKHUO0r {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-vpzIKHUO0r .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #735b4f;
}
@media (max-width: 768px) {
  .cid-vpzIKHUO0r .mbr-section-subtitle {
    margin-bottom: 8px;
  }
}
.cid-vpzIKHUO0r .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
}
@media (max-width: 768px) {
  .cid-vpzIKHUO0r .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vpzIKHUO0r .mbr-text {
  padding-top: 10px;
  margin-bottom: 0;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-vpzIKHUO0r .mbr-text {
    padding: 0;
  }
}
.cid-vpzIKHUO0r .main-btn {
  text-align: left;
}
@media (max-width: 992px) {
  .cid-vpzIKHUO0r .main-btn {
    text-align: left;
  }
}
.cid-vpCtgGgnnC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vpCtgGgnnC .row {
  flex-direction: row-reverse;
}
.cid-vpCtgGgnnC .mbr-side-description {
  text-align: left;
}
.cid-vpCtgGgnnC .mbr-description {
  color: #735b4f;
  text-align: justify;
}
.cid-vpCuEsyfnm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vpCuEsyfnm .row {
  flex-direction: row-reverse;
}
.cid-vpCuEsyfnm .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpCuEsyfnm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpCuEsyfnm .mbr-side-description {
  text-align: left;
}
.cid-vpCuEsyfnm .mbr-description {
  color: #735b4f;
  text-align: justify;
}
.cid-vpCv8UFsgQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vpCv8UFsgQ .row {
  flex-direction: row-reverse;
}
.cid-vpCv8UFsgQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpCv8UFsgQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpCv8UFsgQ .mbr-side-description {
  text-align: left;
}
.cid-vpCv8UFsgQ .mbr-description {
  color: #735b4f;
  text-align: justify;
}
.cid-vpCvqBjhQR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vpCvqBjhQR .row {
  flex-direction: row-reverse;
}
.cid-vpCvqBjhQR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpCvqBjhQR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpCvqBjhQR .mbr-side-description {
  text-align: left;
}
.cid-vpCvqBjhQR .mbr-description {
  color: #735b4f;
  text-align: justify;
}
.cid-vpCzaV0WNj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vpCzaV0WNj .row {
  flex-direction: row-reverse;
}
.cid-vpCzaV0WNj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpCzaV0WNj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpCzaV0WNj .mbr-side-description {
  text-align: left;
}
.cid-vpCzaV0WNj .mbr-description {
  color: #735b4f;
  text-align: justify;
}
.cid-vpCw3GqJU1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vpCw3GqJU1 .row {
  flex-direction: row-reverse;
}
.cid-vpCw3GqJU1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpCw3GqJU1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpCw3GqJU1 .mbr-side-description {
  text-align: left;
}
.cid-vpCw3GqJU1 .mbr-description {
  color: #735b4f;
  text-align: justify;
}
.cid-vpCyxIGZ3k {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vpCyxIGZ3k .row {
  flex-direction: row-reverse;
}
.cid-vpCyxIGZ3k .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpCyxIGZ3k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpCyxIGZ3k .mbr-side-description {
  text-align: left;
}
.cid-vpCyxIGZ3k .mbr-description {
  color: #735b4f;
  text-align: justify;
}
.cid-vqc58SJYyO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vqc58SJYyO .row {
  flex-direction: row-reverse;
}
.cid-vqc58SJYyO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqc58SJYyO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vqc58SJYyO .mbr-side-description {
  text-align: left;
}
.cid-vqc58SJYyO .mbr-description {
  color: #735b4f;
  text-align: justify;
}
.cid-vpCyKNtjOI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vpCyKNtjOI .row {
  flex-direction: row-reverse;
}
.cid-vpCyKNtjOI .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpCyKNtjOI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpCyKNtjOI .mbr-side-description {
  text-align: left;
}
.cid-vpCyKNtjOI .mbr-description {
  color: #735b4f;
  text-align: justify;
}
.cid-vpIgiTqN9P {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vpIgiTqN9P .row {
  flex-direction: row-reverse;
}
.cid-vpIgiTqN9P .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpIgiTqN9P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpIgiTqN9P .mbr-side-description {
  text-align: left;
}
.cid-vpIgiTqN9P .mbr-description {
  color: #735b4f;
  text-align: justify;
}
.cid-vpIh5RXRA5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vpIh5RXRA5 .row {
  flex-direction: row-reverse;
}
.cid-vpIh5RXRA5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpIh5RXRA5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpIh5RXRA5 .mbr-side-description {
  text-align: left;
}
.cid-vpIh5RXRA5 .mbr-description {
  color: #735b4f;
  text-align: justify;
}
.cid-vpCyQINa3T {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vpCyQINa3T .row {
  flex-direction: row-reverse;
}
.cid-vpCyQINa3T .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpCyQINa3T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpCyQINa3T .mbr-side-description {
  text-align: left;
}
.cid-vpCyQINa3T .mbr-description {
  color: #735b4f;
  text-align: justify;
}
.cid-vpIcD2itfG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-vpIcD2itfG .row {
  flex-direction: row-reverse;
}
.cid-vpIcD2itfG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpIcD2itfG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpIcD2itfG .mbr-side-description {
  text-align: left;
}
.cid-vpIcD2itfG .mbr-description {
  color: #735b4f;
  text-align: justify;
}
.cid-vpIhrSK83d {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vpIhrSK83d .row {
  flex-direction: row-reverse;
}
.cid-vpIhrSK83d .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpIhrSK83d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpIhrSK83d .mbr-side-description {
  text-align: left;
}
.cid-vpIhrSK83d .mbr-description {
  color: #1f242e;
  text-align: justify;
}
.cid-vpCBIGW1lx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-vpCBIGW1lx .video-wrapper iframe {
  width: 100%;
}
.cid-vpCBIGW1lx .mbr-section-title,
.cid-vpCBIGW1lx .mbr-section-subtitle,
.cid-vpCBIGW1lx .mbr-text {
  text-align: center;
}
.cid-vpCBIGW1lx .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #735b4f;
  text-align: center;
}
.cid-vpCBIGW1lx .mbr-section-title {
  margin-bottom: 14px;
  color: #20232a;
  text-align: center;
}
.cid-vpCBIGW1lx .mbr-text {
  margin-bottom: 0;
  color: #65676c;
}
.cid-vpCBIGW1lx .mbr-section-head {
  margin-bottom: 45px;
}
.cid-vpzI7UvuxU {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #463228;
}
@media (max-width: 992px) {
  .cid-vpzI7UvuxU .container {
    padding: 0 20px;
  }
}
.cid-vpzI7UvuxU .row {
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vpzI7UvuxU .row .title-wrapper {
    margin-bottom: 32px;
    height: auto;
  }
}
.cid-vpzI7UvuxU .row .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vpzI7UvuxU .row .title-wrapper .mbr-desc {
  opacity: .5;
  margin-bottom: 16px;
}
.cid-vpzI7UvuxU .row .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vpzI7UvuxU .row .list {
  padding: 0;
  margin-bottom: 50px;
  list-style: none;
}
@media (max-width: 992px) {
  .cid-vpzI7UvuxU .row .list {
    margin-bottom: 32px;
  }
}
.cid-vpzI7UvuxU .row .list .item-wrap {
  margin-bottom: 16px;
}
.cid-vpzI7UvuxU .row .list .item-wrap:hover {
  text-decoration: underline;
  color: #382217;
}
.cid-vpzI7UvuxU .row .copyright {
  opacity: .5;
  margin-bottom: 0;
}
.cid-vpzI7UvuxU .mbr-section-title {
  color: #ffffff;
}
.cid-vpzI7UvuxU .mbr-desc {
  color: #ffffff;
}
.cid-vpzI7UvuxU .mbr-text {
  color: #ffffff;
}
.cid-vpzI7UvuxU .list {
  color: #ffffff;
}
.cid-vpzI7UvuxU .copyright {
  color: #ffffff;
}
