.btn {
  border-width: 2px;
}
body {
  font-family: Cormorant Upright;
}
.display-1 {
  font-family: 'HankenGrotesk-Italic[wght]';
  font-size: 3.8rem;
  line-height: .7em;
  letter-spacing: -0.04em;
}
.display-1 > .mbr-iconfont {
  font-size: 4.75rem;
}
.display-2 {
  font-family: 'HankenGrotesk[wght]';
  font-size: 3rem;
  line-height: 71px;
  letter-spacing: -0.04em;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'HankenGrotesk[wght]';
  font-size: 1.2rem;
  line-height: 1;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'HankenGrotesk[wght]';
  font-size: 1.2rem;
  line-height: 35px;
  letter-spacing: 0;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'HankenGrotesk[wght]';
  font-size: 1.2rem;
  line-height: 1.59em;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.04rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.66rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 0;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0;
}
.bg-primary {
  background-color: #232323 !important;
}
.bg-success {
  background-color: #a59183 !important;
}
.bg-info {
  background-color: #684b44 !important;
}
.bg-warning {
  background-color: #4f3e59 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary: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-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: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-info,
.btn-info:active {
  background-color: #684b44 !important;
  border-color: #684b44 !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: #342522 !important;
  border-color: #342522 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #342522 !important;
  border-color: #342522 !important;
}
.btn-success,
.btn-success:active {
  background-color: #a59183 !important;
  border-color: #a59183 !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: #796658 !important;
  border-color: #796658 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #796658 !important;
  border-color: #796658 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #4f3e59 !important;
  border-color: #4f3e59 !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: #221a26 !important;
  border-color: #221a26 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #221a26 !important;
  border-color: #221a26 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.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: #232323 !important;
  border-color: #232323 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #684b44;
  color: #684b44;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #342522 !important;
  background-color: transparent !important;
  border-color: #342522 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #684b44 !important;
  border-color: #684b44 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #a59183;
  color: #a59183;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #796658 !important;
  background-color: transparent !important;
  border-color: #796658 !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #a59183 !important;
  border-color: #a59183 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #4f3e59;
  color: #4f3e59;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #221a26 !important;
  background-color: transparent !important;
  border-color: #221a26 !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #4f3e59 !important;
  border-color: #4f3e59 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #232323 !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #a59183 !important;
}
.text-info {
  color: #684b44 !important;
}
.text-warning {
  color: #4f3e59 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #705e52 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #2a1f1c !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #1a141d !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #cccccc !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #232323;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #684b44;
}
.alert-warning {
  background-color: #4f3e59;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-gallery-filter li.active .btn {
  background-color: #232323;
  border-color: #232323;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #232323;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d5d5d5;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #dbd3cd;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ac8880;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #9177a0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'HankenGrotesk[wght]';
  font-size: 1.2rem;
  line-height: 1.59em;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #232323 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'HankenGrotesk[wght]';
  font-size: 1.2rem;
  line-height: 1.59em;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #232323;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #232323;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #232323;
}
.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: #232323;
  border-bottom-color: #232323;
}
.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: #232323 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ffffff !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23232323' %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;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  position: relative;
  padding: 0 14px 0 0;
}
.mbr-section-btn .btn::before,
.mbr-section-btn-main .btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-block;
  width: 83%;
  height: 1px;
  background-color: #232323;
}
.mbr-section-btn .btn::after,
.mbr-section-btn-main .btn::after {
  content: '';
  position: absolute;
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #232323;
}
.mbr-section-btn .btn-primary,
.mbr-section-btn-main .btn-primary,
.mbr-section-btn .btn-secondary,
.mbr-section-btn-main .btn-secondary,
.mbr-section-btn .btn-success,
.mbr-section-btn-main .btn-success,
.mbr-section-btn .btn-info,
.mbr-section-btn-main .btn-info,
.mbr-section-btn .btn-danger,
.mbr-section-btn-main .btn-danger,
.mbr-section-btn .btn-warning,
.mbr-section-btn-main .btn-warning,
.mbr-section-btn .btn-black,
.mbr-section-btn-main .btn-black,
.mbr-section-btn .btn-white,
.mbr-section-btn-main .btn-white {
  padding: 14px;
}
.mbr-section-btn .btn-primary::after,
.mbr-section-btn-main .btn-primary::after,
.mbr-section-btn .btn-secondary::after,
.mbr-section-btn-main .btn-secondary::after,
.mbr-section-btn .btn-success::after,
.mbr-section-btn-main .btn-success::after,
.mbr-section-btn .btn-info::after,
.mbr-section-btn-main .btn-info::after,
.mbr-section-btn .btn-danger::after,
.mbr-section-btn-main .btn-danger::after,
.mbr-section-btn .btn-warning::after,
.mbr-section-btn-main .btn-warning::after,
.mbr-section-btn .btn-black::after,
.mbr-section-btn-main .btn-black::after,
.mbr-section-btn .btn-white::after,
.mbr-section-btn-main .btn-white::after {
  display: none;
}
.mbr-section-btn .btn-primary::before,
.mbr-section-btn-main .btn-primary::before,
.mbr-section-btn .btn-secondary::before,
.mbr-section-btn-main .btn-secondary::before,
.mbr-section-btn .btn-success::before,
.mbr-section-btn-main .btn-success::before,
.mbr-section-btn .btn-info::before,
.mbr-section-btn-main .btn-info::before,
.mbr-section-btn .btn-danger::before,
.mbr-section-btn-main .btn-danger::before,
.mbr-section-btn .btn-warning::before,
.mbr-section-btn-main .btn-warning::before,
.mbr-section-btn .btn-black::before,
.mbr-section-btn-main .btn-black::before,
.mbr-section-btn .btn-white::before,
.mbr-section-btn-main .btn-white::before {
  display: none;
}
.mbr-section-btn .btn-primary-outline:hover::before,
.mbr-section-btn-main .btn-primary-outline:hover::before,
.mbr-section-btn .btn-secondary-outline:hover::before,
.mbr-section-btn-main .btn-secondary-outline:hover::before,
.mbr-section-btn .btn-success-outline:hover::before,
.mbr-section-btn-main .btn-success-outline:hover::before,
.mbr-section-btn .btn-info-outline:hover::before,
.mbr-section-btn-main .btn-info-outline:hover::before,
.mbr-section-btn .btn-danger-outline:hover::before,
.mbr-section-btn-main .btn-danger-outline:hover::before,
.mbr-section-btn .btn-warning-outline:hover::before,
.mbr-section-btn-main .btn-warning-outline:hover::before,
.mbr-section-btn .btn-black-outline:hover::before,
.mbr-section-btn-main .btn-black-outline:hover::before,
.mbr-section-btn .btn-white-outline:hover::before,
.mbr-section-btn-main .btn-white-outline:hover::before {
  animation: ani-button 0.8s forwards cubic-bezier(0.85, 0.26, 0.17, 1);
}
.mbr-section-btn .btn-info-outline::after,
.mbr-section-btn-main .btn-info-outline::after {
  background-color: #684b44;
}
.mbr-section-btn .btn-primary-outline::before,
.mbr-section-btn-main .btn-primary-outline::before {
  background-color: #232323;
}
.mbr-section-btn .btn-primary-outline:hover,
.mbr-section-btn-main .btn-primary-outline:hover {
  color: #232323 !important;
}
.mbr-section-btn .btn-secondary-outline:before,
.mbr-section-btn-main .btn-secondary-outline:before {
  background-color: #ffffff;
}
.mbr-section-btn .btn-secondary-outline:hover,
.mbr-section-btn-main .btn-secondary-outline:hover {
  color: #ffffff !important;
}
.mbr-section-btn .btn-success-outline::before,
.mbr-section-btn-main .btn-success-outline::before {
  background-color: #a59183;
}
.mbr-section-btn .btn-success-outline:hover,
.mbr-section-btn-main .btn-success-outline:hover {
  color: #a59183 !important;
}
.mbr-section-btn .btn-info-outline::before,
.mbr-section-btn-main .btn-info-outline::before {
  background-color: #684b44;
}
.mbr-section-btn .btn-info-outline:hover,
.mbr-section-btn-main .btn-info-outline:hover {
  color: #684b44 !important;
}
.mbr-section-btn .btn-danger-outline::before,
.mbr-section-btn-main .btn-danger-outline::before {
  background-color: #ffffff;
}
.mbr-section-btn .btn-danger-outline:hover,
.mbr-section-btn-main .btn-danger-outline:hover {
  color: #ffffff !important;
}
.mbr-section-btn .btn-warning-outline::before,
.mbr-section-btn-main .btn-warning-outline::before {
  background-color: #4f3e59;
}
.mbr-section-btn .btn-warning-outline:hover,
.mbr-section-btn-main .btn-warning-outline:hover {
  color: #4f3e59 !important;
}
.mbr-section-btn .btn-black-outline::before,
.mbr-section-btn-main .btn-black-outline::before {
  background-color: #232323;
}
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn-main .btn-black-outline:hover {
  color: #232323 !important;
}
.mbr-section-btn .btn-white-outline::before,
.mbr-section-btn-main .btn-white-outline::before {
  background-color: #fff;
}
.mbr-section-btn .btn-white-outline:hover,
.mbr-section-btn-main .btn-white-outline:hover {
  color: #ffffff !important;
}
@keyframes ani-button {
  from {
    transform: scale(0);
    transform-origin: center;
  }
  to {
    transform: scale(1);
    transform-origin: center;
  }
}
.cid-trf9lgCoRP .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-trf9lgCoRP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-trf9lgCoRP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-trf9lgCoRP .menu_box .navbar.opened,
  .cid-trf9lgCoRP .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-trf9lgCoRP .navbar-dropdown {
  position: relative !important;
}
.cid-trf9lgCoRP .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-trf9lgCoRP .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-trf9lgCoRP .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-trf9lgCoRP .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-trf9lgCoRP .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-trf9lgCoRP .offcanvas {
    padding: 12rem 80px 0;
    width: 50%;
    background-color: #e0bdb6;
  }
  .cid-trf9lgCoRP .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-trf9lgCoRP .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-trf9lgCoRP .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-trf9lgCoRP .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-trf9lgCoRP .offcanvas-body .mbr-text,
  .cid-trf9lgCoRP .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-trf9lgCoRP .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-trf9lgCoRP .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-trf9lgCoRP .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #684b44;
  }
  .cid-trf9lgCoRP .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-trf9lgCoRP .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-trf9lgCoRP .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-trf9lgCoRP .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-trf9lgCoRP ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-trf9lgCoRP .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-trf9lgCoRP .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-trf9lgCoRP .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-trf9lgCoRP li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-trf9lgCoRP .lg_brand {
    margin: 0 1rem;
  }
}
.cid-trf9lgCoRP .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-trf9lgCoRP .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-trf9lgCoRP .nav-item {
    margin: 0 !important;
  }
}
.cid-trf9lgCoRP .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-trf9lgCoRP .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-trf9lgCoRP .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-trf9lgCoRP .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-trf9lgCoRP .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-trf9lgCoRP .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-trf9lgCoRP .offcanvas_box {
    display: none;
  }
}
.cid-trf9lgCoRP .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-trf9lgCoRP .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-trf9lgCoRP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-trf9lgCoRP .container {
  display: flex;
  margin: auto;
}
.cid-trf9lgCoRP .iconfont-wrapper {
  color: #684b44;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-trf9lgCoRP .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-trf9lgCoRP .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-trf9lgCoRP .navbar-caption {
  color: #747474;
}
.cid-trf9lgCoRP .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-trf9lgCoRP .navbar-nav {
    margin: 0;
  }
}
.cid-trf9lgCoRP .dropdown-menu,
.cid-trf9lgCoRP .navbar.opened {
  background-color: false !important;
}
.cid-trf9lgCoRP .nav-item:focus,
.cid-trf9lgCoRP .nav-link:focus {
  outline: none;
}
.cid-trf9lgCoRP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-trf9lgCoRP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-trf9lgCoRP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-trf9lgCoRP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-trf9lgCoRP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-trf9lgCoRP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-trf9lgCoRP .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
@media (max-width: 992px) {
  .cid-trf9lgCoRP .navbar {
    min-height: 30px;
    max-height: 90px;
  }
}
.cid-trf9lgCoRP .navbar.opened {
  transition: all 0.3s;
}
.cid-trf9lgCoRP .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-trf9lgCoRP .navbar .navbar-logo img {
  max-width: 38px;
  max-height: 38px;
  object-fit: cover;
  border-radius: 100%;
}
.cid-trf9lgCoRP .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-trf9lgCoRP .navbar.collapsed {
  justify-content: center;
}
.cid-trf9lgCoRP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-trf9lgCoRP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-trf9lgCoRP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-trf9lgCoRP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-trf9lgCoRP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-trf9lgCoRP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-trf9lgCoRP .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-trf9lgCoRP .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-trf9lgCoRP .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-trf9lgCoRP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-trf9lgCoRP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-trf9lgCoRP .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-trf9lgCoRP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-trf9lgCoRP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-trf9lgCoRP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-trf9lgCoRP .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-trf9lgCoRP .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-trf9lgCoRP .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-trf9lgCoRP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-trf9lgCoRP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-trf9lgCoRP .navbar .icons-menu {
    padding: 0;
  }
}
.cid-trf9lgCoRP .navbar.navbar-short {
  min-height: 60px;
}
.cid-trf9lgCoRP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-trf9lgCoRP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-trf9lgCoRP .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-trf9lgCoRP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-trf9lgCoRP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-trf9lgCoRP .dropdown-item.active,
.cid-trf9lgCoRP .dropdown-item:active {
  background-color: transparent;
}
.cid-trf9lgCoRP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-trf9lgCoRP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-trf9lgCoRP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-trf9lgCoRP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-trf9lgCoRP ul.navbar-nav {
  flex-wrap: wrap;
  padding: 36px 0;
  border-bottom: 1px solid #684b44;
}
.cid-trf9lgCoRP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-trf9lgCoRP button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-trf9lgCoRP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #684b44;
}
.cid-trf9lgCoRP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-trf9lgCoRP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-trf9lgCoRP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-trf9lgCoRP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-trf9lgCoRP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-trf9lgCoRP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-trf9lgCoRP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-trf9lgCoRP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-trf9lgCoRP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-trf9lgCoRP .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-trf9lgCoRP .navbar {
    height: 70px;
  }
  .cid-trf9lgCoRP .navbar.opened {
    height: auto;
  }
  .cid-trf9lgCoRP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-trf9lgCoRP .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-trf9lgCoRP .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-trf9lgCoRP .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-trf9lgCoRP .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
.cid-trf9lgCoRP .navbar-caption:hover {
  color: #232323;
}
@media (min-width: 992px) {
  .cid-trf9lgCoRP .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-trf9lgCoRP .nav-link {
  position: relative;
}
.cid-trf9lgCoRP .nav-link:before {
  content: '';
  position: absolute;
  left: -12px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #232323;
  transition: all .3s ease;
  opacity: 0;
}
.cid-trf9lgCoRP .nav-link:hover:before {
  opacity: 1;
}
.cid-trf9lgCoRP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-trf9lgCoRP .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-trf9lgCoRP .text_widget {
  color: #ffffff;
}
.cid-trf9lgCoRP .mbr-section-subtitle,
.cid-trf9lgCoRP .text_widget,
.cid-trf9lgCoRP .mbr-section-btn {
  text-align: center;
}
.cid-trf9lgCoRP a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uKA6jJRkrr {
  background-color: #505b6c;
}
.cid-uKA6jJRkrr .mbr-section-title {
  margin: 0;
  color: #ede6da;
  position: absolute;
  text-align: right;
  top: 50%;
  letter-spacing: 20px;
  font-weight: 600;
  width: 100%;
  padding: 0 60px;
}
.cid-uKA6jJRkrr .mbr-section-subtitle {
  color: #000000;
  position: absolute;
  text-align: left;
  left: 50%;
  top: 55%;
  padding: 60px;
  width: 50%;
}
.cid-uKA6jJRkrr span {
  color: #ffffff;
  font-weight: 600;
}
.cid-uKA6jJRkrr img {
  object-fit: cover;
}
.cid-uKA6jJRkrr section {
  position: relative;
}
.cid-uKA6jJRkrr .container-fluid {
  padding: 0;
}
@media (max-width: 990px) {
  .cid-uKA6jJRkrr span {
    color: currentColor;
  }
  .cid-uKA6jJRkrr .mbr-section-title {
    color: #ffffff;
  }
  .cid-uKA6jJRkrr .mbr-section-subtitle {
    margin: auto;
    left: 0%;
    text-align: center;
    padding: 40px 20%;
    color: #ffffff;
    width: 100%;
  }
}
@media (max-width: 690px) {
  .cid-uKA6jJRkrr .mbr-section-subtitle {
    padding: 40px 15px;
  }
  .cid-uKA6jJRkrr .mbr-section-title {
    padding: 0 15px;
  }
}
.cid-uKA6jJRkrr .row {
  padding: 0;
  margin: 0;
}
.cid-uKA6jJRkrr .col-12 {
  padding: 0;
  margin: 0;
}
@media (max-width: 770px) {
  .cid-uKA6jJRkrr .mbr-section-title {
    letter-spacing: 5px;
  }
}
.cid-uKA6utXKqH {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uKA6utXKqH .text-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 1000px) {
  .cid-uKA6utXKqH .text-wrapper {
    padding: 2rem 0;
  }
}
.cid-uKA6utXKqH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uKA6utXKqH {
    margin-bottom: 2rem;
  }
}
.cid-uKA6utXKqH .main-heading {
  margin-bottom: 20px;
}
.cid-uKA6utXKqH .text-block {
  color: #565A69;
  margin-bottom: 50px;
}
.cid-uKA6utXKqH .name {
  margin-bottom: 8px;
  font-size: 20px;
  color: #353535;
}
.cid-uKA6utXKqH .progress {
  margin-bottom: 30px;
  position: relative;
  width: 100%;
  height: 4px;
}
.cid-uKA6utXKqH .progress-bar {
  position: absolute;
  background-color: #232323;
  height: 4px;
}
.cid-uKA6utXKqH .progress1 {
  width: 70%;
}
.cid-uKA6utXKqH .progress2 {
  width: 90%;
}
.cid-uKA6utXKqH .progress3 {
  width: 85%;
}
.cid-uKA6utXKqH img {
  border-radius: 10px;
}
.cid-uKA6utXKqH .title {
  color: #505b6c;
}
.cid-uKA6CY4vmE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uKA6CY4vmE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKA6CY4vmE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKA6CY4vmE .text-wrap {
  width: 100%;
}
.cid-uKA6CY4vmE .mbr-section-title {
  color: #505b6c;
  margin-bottom: 70px;
}
.cid-uKA6CY4vmE .mbr-text {
  color: #353535;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cid-uKA6CY4vmE .mbr-text {
    margin-top: 30px;
  }
}
.cid-uKA6CY4vmE .item-row {
  row-gap: 50px;
}
@media (max-width: 1199px) {
  .cid-uKA6CY4vmE .item-row {
    row-gap: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uKA6CY4vmE .item-row {
    row-gap: 22px;
  }
}
@media (max-width: 991px) {
  .cid-uKA6CY4vmE .item-row {
    justify-content: flex-start;
  }
}
.cid-uKA6CY4vmE .item-row .item {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uKA6CY4vmE .item-row .item {
    justify-content: flex-start;
  }
}
.cid-uKA6CY4vmE .item-row .item:nth-child(1) .item-wrap {
  background-color: #d0c1b4;
  border-radius: 20px 20px 20px 0;
}
@media (max-width: 767px) {
  .cid-uKA6CY4vmE .item-row .item:nth-child(2) {
    justify-content: flex-end;
  }
}
.cid-uKA6CY4vmE .item-row .item:nth-child(2) .item-wrap {
  background-color: #7d89aa;
  border-radius: 0 20px 20px 20px;
}
.cid-uKA6CY4vmE .item-row .item:nth-child(3) .item-wrap {
  background-color: #829d85;
  border-radius: 0 20px 20px 20px;
}
@media (max-width: 767px) {
  .cid-uKA6CY4vmE .item-row .item:nth-child(4) {
    justify-content: flex-end;
  }
}
.cid-uKA6CY4vmE .item-row .item:nth-child(4) .item-wrap {
  background-color: #f6efe8;
  border-radius: 20px 20px 0 20px;
}
.cid-uKA6CY4vmE .item-row .item:nth-child(5) .item-wrap {
  background-color: #f6efe8;
  border-radius: 20px 20px 0 20px;
}
@media (max-width: 991px) {
  .cid-uKA6CY4vmE .item-row .item:nth-child(6) {
    order: 7;
  }
}
@media (max-width: 767px) {
  .cid-uKA6CY4vmE .item-row .item:nth-child(6) {
    order: 6;
    justify-content: center;
  }
}
.cid-uKA6CY4vmE .item-row .item:nth-child(6) .item-wrap {
  background-color: #a9bbab;
  border-radius: 20px 20px 0 20px;
}
.cid-uKA6CY4vmE .item-row .item:nth-child(7) {
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-uKA6CY4vmE .item-row .item:nth-child(7) {
    order: 6;
  }
}
@media (max-width: 767px) {
  .cid-uKA6CY4vmE .item-row .item:nth-child(7) {
    order: 7;
    justify-content: center;
  }
}
.cid-uKA6CY4vmE .item-row .item:nth-child(7) .item-wrap {
  background-color: #d0c4b7;
  border-radius: 20px 20px 20px 0;
}
.cid-uKA6CY4vmE .item-row .item-wrap {
  padding: 14px 26px;
  opacity: 0.95;
  max-width: 100%;
  width: fit-content;
}
.cid-uKA6CY4vmE .item-text {
  color: #000000;
  text-align: center;
}
.cid-uKA6CY4vmE .mbr-text,
.cid-uKA6CY4vmE .mbr-section-btn {
  color: #505b6c;
}
.cid-uKA6JW7qhv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d0c1b4;
  background: linear-gradient(45deg, #d0c1b4, #684b44);
}
.cid-uKA6JW7qhv .mbr-section-subtitle {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-uKA6JW7qhv .mbr-section-btn,
  .cid-uKA6JW7qhv .mbr-section-subtitle,
  .cid-uKA6JW7qhv .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uKA6JW7qhv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKA6JW7qhv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZKHgiIe4q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tZKHgiIe4q .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tZKHgiIe4q li {
  padding-bottom: 0.6rem;
}
.cid-tZKHgiIe4q .border-col {
  border-right: 1px solid #684b44;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tZKHgiIe4q .border-col {
    border: 0px;
  }
}
.cid-tZKHgiIe4q .container {
  position: relative;
}
.cid-tZKHgiIe4q .container:before {
  content: '';
  top: 0;
  width: 200%;
  height: 1px;
  background: #684b44;
  position: absolute;
  left: -50%;
}
.cid-tZKHgiIe4q .container:after {
  content: '';
  bottom: 0;
  width: 200%;
  height: 1px;
  background: #684b44;
  position: absolute;
  left: -50%;
}
.cid-tZKHgiIe4q .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-tZKHgiIe4q .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-tZKHgiIe4q .padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
  height: inherit;
}
@media (max-width: 992px) {
  .cid-tZKHgiIe4q .padding {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-tZKHgiIe4q .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #684b44;
}
.cid-tZKHgiIe4q .soc-item:hover {
  background: #232323;
}
.cid-tZKHgiIe4q .soc-item .mbr-iconfont {
  color: #684b44;
}
@media (max-width: 767px) {
  .cid-tZKHgiIe4q .row {
    text-align: center;
  }
  .cid-tZKHgiIe4q .social-row {
    justify-content: center;
  }
}
.cid-tZKHgiIe4q .list {
  list-style: none;
  padding-left: 0;
}
.cid-tZKHgiIe4q .mbr-text {
  color: #684b44;
}
.cid-tZKHgiIe4q H5 {
  color: #ede6da;
}
.cid-tZKHgiIe4q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZKHgiIe4q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZKHgiIe4q .mbr-section-subtitle {
  color: #684b44;
}
.cid-u20mSxEXuS .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-u20mSxEXuS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-u20mSxEXuS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-u20mSxEXuS .menu_box .navbar.opened,
  .cid-u20mSxEXuS .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-u20mSxEXuS .navbar-dropdown {
  position: relative !important;
}
.cid-u20mSxEXuS .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-u20mSxEXuS .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u20mSxEXuS .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-u20mSxEXuS .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-u20mSxEXuS .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-u20mSxEXuS .offcanvas {
    padding: 12rem 80px 0;
    width: 50%;
    background-color: #e0bdb6;
  }
  .cid-u20mSxEXuS .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-u20mSxEXuS .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-u20mSxEXuS .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-u20mSxEXuS .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-u20mSxEXuS .offcanvas-body .mbr-text,
  .cid-u20mSxEXuS .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-u20mSxEXuS .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-u20mSxEXuS .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-u20mSxEXuS .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #684b44;
  }
  .cid-u20mSxEXuS .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-u20mSxEXuS .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-u20mSxEXuS .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-u20mSxEXuS .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-u20mSxEXuS ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-u20mSxEXuS .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-u20mSxEXuS .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-u20mSxEXuS .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-u20mSxEXuS li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-u20mSxEXuS .lg_brand {
    margin: 0 1rem;
  }
}
.cid-u20mSxEXuS .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-u20mSxEXuS .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-u20mSxEXuS .nav-item {
    margin: 0 !important;
  }
}
.cid-u20mSxEXuS .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-u20mSxEXuS .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-u20mSxEXuS .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-u20mSxEXuS .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-u20mSxEXuS .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-u20mSxEXuS .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-u20mSxEXuS .offcanvas_box {
    display: none;
  }
}
.cid-u20mSxEXuS .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-u20mSxEXuS .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-u20mSxEXuS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-u20mSxEXuS .container {
  display: flex;
  margin: auto;
}
.cid-u20mSxEXuS .iconfont-wrapper {
  color: #684b44;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u20mSxEXuS .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u20mSxEXuS .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-u20mSxEXuS .navbar-caption {
  color: #747474;
}
.cid-u20mSxEXuS .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-u20mSxEXuS .navbar-nav {
    margin: 0;
  }
}
.cid-u20mSxEXuS .dropdown-menu,
.cid-u20mSxEXuS .navbar.opened {
  background-color: false !important;
}
.cid-u20mSxEXuS .nav-item:focus,
.cid-u20mSxEXuS .nav-link:focus {
  outline: none;
}
.cid-u20mSxEXuS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u20mSxEXuS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u20mSxEXuS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u20mSxEXuS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u20mSxEXuS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u20mSxEXuS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u20mSxEXuS .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
@media (max-width: 992px) {
  .cid-u20mSxEXuS .navbar {
    min-height: 30px;
    max-height: 90px;
  }
}
.cid-u20mSxEXuS .navbar.opened {
  transition: all 0.3s;
}
.cid-u20mSxEXuS .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-u20mSxEXuS .navbar .navbar-logo img {
  max-width: 38px;
  max-height: 38px;
  object-fit: cover;
  border-radius: 100%;
}
.cid-u20mSxEXuS .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-u20mSxEXuS .navbar.collapsed {
  justify-content: center;
}
.cid-u20mSxEXuS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u20mSxEXuS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u20mSxEXuS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u20mSxEXuS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u20mSxEXuS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u20mSxEXuS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-u20mSxEXuS .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u20mSxEXuS .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-u20mSxEXuS .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-u20mSxEXuS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u20mSxEXuS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u20mSxEXuS .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-u20mSxEXuS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u20mSxEXuS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-u20mSxEXuS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u20mSxEXuS .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-u20mSxEXuS .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u20mSxEXuS .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-u20mSxEXuS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u20mSxEXuS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u20mSxEXuS .navbar .icons-menu {
    padding: 0;
  }
}
.cid-u20mSxEXuS .navbar.navbar-short {
  min-height: 60px;
}
.cid-u20mSxEXuS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u20mSxEXuS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u20mSxEXuS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u20mSxEXuS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u20mSxEXuS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u20mSxEXuS .dropdown-item.active,
.cid-u20mSxEXuS .dropdown-item:active {
  background-color: transparent;
}
.cid-u20mSxEXuS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u20mSxEXuS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u20mSxEXuS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u20mSxEXuS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u20mSxEXuS ul.navbar-nav {
  flex-wrap: wrap;
  padding: 36px 0;
  border-bottom: 1px solid #684b44;
}
.cid-u20mSxEXuS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u20mSxEXuS button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-u20mSxEXuS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #684b44;
}
.cid-u20mSxEXuS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u20mSxEXuS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u20mSxEXuS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u20mSxEXuS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u20mSxEXuS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u20mSxEXuS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u20mSxEXuS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u20mSxEXuS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u20mSxEXuS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-u20mSxEXuS .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u20mSxEXuS .navbar {
    height: 70px;
  }
  .cid-u20mSxEXuS .navbar.opened {
    height: auto;
  }
  .cid-u20mSxEXuS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u20mSxEXuS .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-u20mSxEXuS .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-u20mSxEXuS .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-u20mSxEXuS .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
.cid-u20mSxEXuS .navbar-caption:hover {
  color: #232323;
}
@media (min-width: 992px) {
  .cid-u20mSxEXuS .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-u20mSxEXuS .nav-link {
  position: relative;
}
.cid-u20mSxEXuS .nav-link:before {
  content: '';
  position: absolute;
  left: -12px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #232323;
  transition: all .3s ease;
  opacity: 0;
}
.cid-u20mSxEXuS .nav-link:hover:before {
  opacity: 1;
}
.cid-u20mSxEXuS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u20mSxEXuS .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-u20mSxEXuS .text_widget {
  color: #ffffff;
}
.cid-u20mSxEXuS .mbr-section-subtitle,
.cid-u20mSxEXuS .text_widget,
.cid-u20mSxEXuS .mbr-section-btn {
  text-align: center;
}
.cid-u20mSxEXuS a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-u20mSyql8e {
  background-color: #ffffff;
}
.cid-u20mSyql8e .mbr-fallback-image.disabled {
  display: none;
}
.cid-u20mSyql8e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u20mSyql8e .row {
  justify-content: center;
}
.cid-u20mSyql8e .nav.nav-tabs {
  display: flex;
  justify-content: center;
  border: none;
  margin-bottom: 0;
}
.cid-u20mSyql8e .nav.nav-tabs .nav-item {
  margin-right: 26px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-u20mSyql8e .nav.nav-tabs .nav-item {
    margin-right: 0;
  }
}
.cid-u20mSyql8e .nav.nav-tabs .nav-item:last-child {
  margin-right: 0;
}
.cid-u20mSyql8e .nav.nav-tabs .nav-item .nav-link {
  padding: 0 25px 1px;
  color: #684b44;
  position: relative;
  border: none;
}
@media (max-width: 768px) {
  .cid-u20mSyql8e .nav.nav-tabs .nav-item .nav-link {
    text-align: center;
    display: flex;
    align-items: center;
  }
}
.cid-u20mSyql8e .nav.nav-tabs .nav-item .nav-link .mbr-iconfont {
  position: absolute;
  top: -0.5rem;
  left: -2rem;
  min-width: 36px;
  width: 36px;
  height: 36px;
  background-color: #684b44;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  opacity: 0;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-u20mSyql8e .nav.nav-tabs .nav-item .nav-link .mbr-iconfont {
    position: static;
  }
}
.cid-u20mSyql8e .nav.nav-tabs .nav-item .nav-link.active .mbr-iconfont {
  opacity: 1;
}
.cid-u20mSyql8e .tab-content {
  padding: 41px 60px 45px;
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
}
@media (max-width: 992px) {
  .cid-u20mSyql8e .tab-content {
    padding: 41px 32px 45px;
  }
}
.cid-u20mSyql8e .tab-content .tab-pane .mbr-text {
  margin-bottom: 0;
}
.cid-u20mSyql8e .mbr-text {
  color: #684b44;
  text-align: left;
}
.cid-u20mSyQvWb {
  background-image: url("../../../assets/images/baby-fotografin-impressum-babybauch-familien-fotograf-fotostudio-bad-sachsa-harz-1280x960.jpg");
}
.cid-u20mSyQvWb .mbr-fallback-image.disabled {
  display: none;
}
.cid-u20mSyQvWb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u20mSyQvWb .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u20mSyQvWb .mbr-section-title {
  color: #E0BDB6;
  text-align: center;
}
.cid-u20mSz6Vxr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-u20mSz6Vxr .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u20mSz6Vxr li {
  padding-bottom: 0.6rem;
}
.cid-u20mSz6Vxr .border-col {
  border-right: 1px solid #684b44;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-u20mSz6Vxr .border-col {
    border: 0px;
  }
}
.cid-u20mSz6Vxr .container {
  position: relative;
}
.cid-u20mSz6Vxr .container:before {
  content: '';
  top: 0;
  width: 200%;
  height: 1px;
  background: #684b44;
  position: absolute;
  left: -50%;
}
.cid-u20mSz6Vxr .container:after {
  content: '';
  bottom: 0;
  width: 200%;
  height: 1px;
  background: #684b44;
  position: absolute;
  left: -50%;
}
.cid-u20mSz6Vxr .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-u20mSz6Vxr .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-u20mSz6Vxr .padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
  height: inherit;
}
@media (max-width: 992px) {
  .cid-u20mSz6Vxr .padding {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-u20mSz6Vxr .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #684b44;
}
.cid-u20mSz6Vxr .soc-item:hover {
  background: #232323;
}
.cid-u20mSz6Vxr .soc-item .mbr-iconfont {
  color: #684b44;
}
@media (max-width: 767px) {
  .cid-u20mSz6Vxr .row {
    text-align: center;
  }
  .cid-u20mSz6Vxr .social-row {
    justify-content: center;
  }
}
.cid-u20mSz6Vxr .list {
  list-style: none;
  padding-left: 0;
}
.cid-u20mSz6Vxr .mbr-text {
  color: #684b44;
}
.cid-u20mSz6Vxr H5 {
  color: #ede6da;
}
.cid-u20mSz6Vxr .mbr-fallback-image.disabled {
  display: none;
}
.cid-u20mSz6Vxr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u20mSz6Vxr .mbr-section-subtitle {
  color: #684b44;
}
#custom-html-p6 {
  /* Type valid CSS here */
}
#custom-html-p6 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-p6 p {
  font-size: 60px;
  color: #777;
}
.cid-uePYO9iyQw .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uePYO9iyQw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uePYO9iyQw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uePYO9iyQw .menu_box .navbar.opened,
  .cid-uePYO9iyQw .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uePYO9iyQw .navbar-dropdown {
  position: relative !important;
}
.cid-uePYO9iyQw .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uePYO9iyQw .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uePYO9iyQw .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uePYO9iyQw .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uePYO9iyQw .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uePYO9iyQw .offcanvas {
    padding: 12rem 80px 0;
    width: 50%;
    background-color: #e0bdb6;
  }
  .cid-uePYO9iyQw .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uePYO9iyQw .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uePYO9iyQw .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uePYO9iyQw .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uePYO9iyQw .offcanvas-body .mbr-text,
  .cid-uePYO9iyQw .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-uePYO9iyQw .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-uePYO9iyQw .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uePYO9iyQw .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #684b44;
  }
  .cid-uePYO9iyQw .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uePYO9iyQw .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uePYO9iyQw .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uePYO9iyQw .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uePYO9iyQw ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uePYO9iyQw .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uePYO9iyQw .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uePYO9iyQw .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uePYO9iyQw li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uePYO9iyQw .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uePYO9iyQw .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uePYO9iyQw .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uePYO9iyQw .nav-item {
    margin: 0 !important;
  }
}
.cid-uePYO9iyQw .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uePYO9iyQw .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uePYO9iyQw .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uePYO9iyQw .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uePYO9iyQw .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uePYO9iyQw .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uePYO9iyQw .offcanvas_box {
    display: none;
  }
}
.cid-uePYO9iyQw .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-uePYO9iyQw .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uePYO9iyQw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uePYO9iyQw .container {
  display: flex;
  margin: auto;
}
.cid-uePYO9iyQw .iconfont-wrapper {
  color: #684b44;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uePYO9iyQw .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uePYO9iyQw .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uePYO9iyQw .navbar-caption {
  color: #747474;
}
.cid-uePYO9iyQw .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uePYO9iyQw .navbar-nav {
    margin: 0;
  }
}
.cid-uePYO9iyQw .dropdown-menu,
.cid-uePYO9iyQw .navbar.opened {
  background-color: false !important;
}
.cid-uePYO9iyQw .nav-item:focus,
.cid-uePYO9iyQw .nav-link:focus {
  outline: none;
}
.cid-uePYO9iyQw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uePYO9iyQw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uePYO9iyQw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uePYO9iyQw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uePYO9iyQw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uePYO9iyQw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uePYO9iyQw .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
@media (max-width: 992px) {
  .cid-uePYO9iyQw .navbar {
    min-height: 30px;
    max-height: 90px;
  }
}
.cid-uePYO9iyQw .navbar.opened {
  transition: all 0.3s;
}
.cid-uePYO9iyQw .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uePYO9iyQw .navbar .navbar-logo img {
  max-width: 38px;
  max-height: 38px;
  object-fit: cover;
  border-radius: 100%;
}
.cid-uePYO9iyQw .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uePYO9iyQw .navbar.collapsed {
  justify-content: center;
}
.cid-uePYO9iyQw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uePYO9iyQw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uePYO9iyQw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uePYO9iyQw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uePYO9iyQw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uePYO9iyQw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uePYO9iyQw .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uePYO9iyQw .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uePYO9iyQw .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uePYO9iyQw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uePYO9iyQw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uePYO9iyQw .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uePYO9iyQw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uePYO9iyQw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uePYO9iyQw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uePYO9iyQw .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uePYO9iyQw .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uePYO9iyQw .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uePYO9iyQw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uePYO9iyQw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uePYO9iyQw .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uePYO9iyQw .navbar.navbar-short {
  min-height: 60px;
}
.cid-uePYO9iyQw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uePYO9iyQw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uePYO9iyQw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uePYO9iyQw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uePYO9iyQw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uePYO9iyQw .dropdown-item.active,
.cid-uePYO9iyQw .dropdown-item:active {
  background-color: transparent;
}
.cid-uePYO9iyQw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uePYO9iyQw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uePYO9iyQw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uePYO9iyQw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uePYO9iyQw ul.navbar-nav {
  flex-wrap: wrap;
  padding: 36px 0;
  border-bottom: 1px solid #684b44;
}
.cid-uePYO9iyQw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uePYO9iyQw button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-uePYO9iyQw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #684b44;
}
.cid-uePYO9iyQw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uePYO9iyQw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uePYO9iyQw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uePYO9iyQw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uePYO9iyQw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uePYO9iyQw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uePYO9iyQw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uePYO9iyQw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uePYO9iyQw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uePYO9iyQw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uePYO9iyQw .navbar {
    height: 70px;
  }
  .cid-uePYO9iyQw .navbar.opened {
    height: auto;
  }
  .cid-uePYO9iyQw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uePYO9iyQw .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uePYO9iyQw .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-uePYO9iyQw .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uePYO9iyQw .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
.cid-uePYO9iyQw .navbar-caption:hover {
  color: #232323;
}
@media (min-width: 992px) {
  .cid-uePYO9iyQw .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uePYO9iyQw .nav-link {
  position: relative;
}
.cid-uePYO9iyQw .nav-link:before {
  content: '';
  position: absolute;
  left: -12px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #232323;
  transition: all .3s ease;
  opacity: 0;
}
.cid-uePYO9iyQw .nav-link:hover:before {
  opacity: 1;
}
.cid-uePYO9iyQw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uePYO9iyQw .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uePYO9iyQw .text_widget {
  color: #ffffff;
}
.cid-uePYO9iyQw .mbr-section-subtitle,
.cid-uePYO9iyQw .text_widget,
.cid-uePYO9iyQw .mbr-section-btn {
  text-align: center;
}
.cid-uePYO9iyQw a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-ueR2NJN35h {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ueR2NJN35h .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-ueR2NJN35h .nav-tabs .nav-item {
  border-bottom: 1px solid #684b44;
  display: flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.cid-ueR2NJN35h .nav-tabs .nav-item .nav-link {
  box-sizing: border-box;
  color: #767676;
  font-style: normal;
  font-weight: 500;
  border-radius: 0;
  border: none;
  padding: 0.5rem 1rem 0.7rem;
  margin: 0 !important;
  -webkit-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
}
.cid-ueR2NJN35h .nav-tabs .nav-item .nav-link:hover {
  color: #ffffff;
  background-color: #684b44;
}
.cid-ueR2NJN35h .nav-tabs .nav-item .nav-link:focus {
  color: #684b44;
  box-shadow: none;
  background-color: transparent;
}
.cid-ueR2NJN35h .nav-tabs .nav-item .nav-link.active {
  border-bottom: 3px solid #684b44;
  color: #684b44;
  background: transparent;
  padding: 0.5rem 1rem 0.5rem;
}
.cid-ueR2NJN35h .mbr-section-subtitle {
  color: #767676;
}
.cid-ueR2NJN35h p {
  color: #767676;
}
.cid-ueR2NJN35h .mbr-figure {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding-right: 4rem;
}
.cid-ueR2NJN35h .mbr-text {
  word-break: break-word;
}
.cid-ueR2NJN35h .tabs-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ueR2NJN35h .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.cid-ueR2NJN35h .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueR2NJN35h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ueR2NJN35h H2 {
  color: #684b44;
}
.cid-ueR2NJN35h P {
  color: #684b44;
}
.cid-uePYOarZJ1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d0c1b4;
  background: linear-gradient(45deg, #d0c1b4, #684b44);
}
.cid-uePYOarZJ1 .mbr-section-subtitle {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-uePYOarZJ1 .mbr-section-btn,
  .cid-uePYOarZJ1 .mbr-section-subtitle,
  .cid-uePYOarZJ1 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uePYOarZJ1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uePYOarZJ1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uePYOaGYto {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uePYOaGYto .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uePYOaGYto li {
  padding-bottom: 0.6rem;
}
.cid-uePYOaGYto .border-col {
  border-right: 1px solid #684b44;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uePYOaGYto .border-col {
    border: 0px;
  }
}
.cid-uePYOaGYto .container {
  position: relative;
}
.cid-uePYOaGYto .container:before {
  content: '';
  top: 0;
  width: 200%;
  height: 1px;
  background: #684b44;
  position: absolute;
  left: -50%;
}
.cid-uePYOaGYto .container:after {
  content: '';
  bottom: 0;
  width: 200%;
  height: 1px;
  background: #684b44;
  position: absolute;
  left: -50%;
}
.cid-uePYOaGYto .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-uePYOaGYto .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-uePYOaGYto .padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
  height: inherit;
}
@media (max-width: 992px) {
  .cid-uePYOaGYto .padding {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-uePYOaGYto .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #684b44;
}
.cid-uePYOaGYto .soc-item:hover {
  background: #232323;
}
.cid-uePYOaGYto .soc-item .mbr-iconfont {
  color: #684b44;
}
@media (max-width: 767px) {
  .cid-uePYOaGYto .row {
    text-align: center;
  }
  .cid-uePYOaGYto .social-row {
    justify-content: center;
  }
}
.cid-uePYOaGYto .list {
  list-style: none;
  padding-left: 0;
}
.cid-uePYOaGYto .mbr-text {
  color: #684b44;
}
.cid-uePYOaGYto H5 {
  color: #ede6da;
}
.cid-uePYOaGYto .mbr-fallback-image.disabled {
  display: none;
}
.cid-uePYOaGYto .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uePYOaGYto .mbr-section-subtitle {
  color: #684b44;
}
#custom-html-p9 {
  /* Type valid CSS here */
}
#custom-html-p9 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-p9 p {
  font-size: 60px;
  color: #777;
}
.cid-u8IGy0cCUL .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-u8IGy0cCUL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-u8IGy0cCUL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-u8IGy0cCUL .menu_box .navbar.opened,
  .cid-u8IGy0cCUL .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-u8IGy0cCUL .navbar-dropdown {
  position: relative !important;
}
.cid-u8IGy0cCUL .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-u8IGy0cCUL .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u8IGy0cCUL .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-u8IGy0cCUL .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-u8IGy0cCUL .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-u8IGy0cCUL .offcanvas {
    padding: 12rem 80px 0;
    width: 50%;
    background-color: #e0bdb6;
  }
  .cid-u8IGy0cCUL .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-u8IGy0cCUL .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-u8IGy0cCUL .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-u8IGy0cCUL .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-u8IGy0cCUL .offcanvas-body .mbr-text,
  .cid-u8IGy0cCUL .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-u8IGy0cCUL .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-u8IGy0cCUL .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-u8IGy0cCUL .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #684b44;
  }
  .cid-u8IGy0cCUL .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-u8IGy0cCUL .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-u8IGy0cCUL .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-u8IGy0cCUL .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-u8IGy0cCUL ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-u8IGy0cCUL .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-u8IGy0cCUL .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-u8IGy0cCUL .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-u8IGy0cCUL li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-u8IGy0cCUL .lg_brand {
    margin: 0 1rem;
  }
}
.cid-u8IGy0cCUL .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-u8IGy0cCUL .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-u8IGy0cCUL .nav-item {
    margin: 0 !important;
  }
}
.cid-u8IGy0cCUL .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-u8IGy0cCUL .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-u8IGy0cCUL .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-u8IGy0cCUL .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-u8IGy0cCUL .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-u8IGy0cCUL .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-u8IGy0cCUL .offcanvas_box {
    display: none;
  }
}
.cid-u8IGy0cCUL .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-u8IGy0cCUL .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-u8IGy0cCUL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-u8IGy0cCUL .container {
  display: flex;
  margin: auto;
}
.cid-u8IGy0cCUL .iconfont-wrapper {
  color: #684b44;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u8IGy0cCUL .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u8IGy0cCUL .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-u8IGy0cCUL .navbar-caption {
  color: #747474;
}
.cid-u8IGy0cCUL .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-u8IGy0cCUL .navbar-nav {
    margin: 0;
  }
}
.cid-u8IGy0cCUL .dropdown-menu,
.cid-u8IGy0cCUL .navbar.opened {
  background-color: false !important;
}
.cid-u8IGy0cCUL .nav-item:focus,
.cid-u8IGy0cCUL .nav-link:focus {
  outline: none;
}
.cid-u8IGy0cCUL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u8IGy0cCUL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u8IGy0cCUL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u8IGy0cCUL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8IGy0cCUL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u8IGy0cCUL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u8IGy0cCUL .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
@media (max-width: 992px) {
  .cid-u8IGy0cCUL .navbar {
    min-height: 30px;
    max-height: 90px;
  }
}
.cid-u8IGy0cCUL .navbar.opened {
  transition: all 0.3s;
}
.cid-u8IGy0cCUL .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-u8IGy0cCUL .navbar .navbar-logo img {
  max-width: 38px;
  max-height: 38px;
  object-fit: cover;
  border-radius: 100%;
}
.cid-u8IGy0cCUL .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-u8IGy0cCUL .navbar.collapsed {
  justify-content: center;
}
.cid-u8IGy0cCUL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u8IGy0cCUL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u8IGy0cCUL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8IGy0cCUL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8IGy0cCUL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8IGy0cCUL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-u8IGy0cCUL .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u8IGy0cCUL .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-u8IGy0cCUL .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-u8IGy0cCUL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u8IGy0cCUL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8IGy0cCUL .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-u8IGy0cCUL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8IGy0cCUL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-u8IGy0cCUL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u8IGy0cCUL .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-u8IGy0cCUL .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u8IGy0cCUL .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-u8IGy0cCUL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u8IGy0cCUL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u8IGy0cCUL .navbar .icons-menu {
    padding: 0;
  }
}
.cid-u8IGy0cCUL .navbar.navbar-short {
  min-height: 60px;
}
.cid-u8IGy0cCUL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u8IGy0cCUL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u8IGy0cCUL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u8IGy0cCUL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8IGy0cCUL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8IGy0cCUL .dropdown-item.active,
.cid-u8IGy0cCUL .dropdown-item:active {
  background-color: transparent;
}
.cid-u8IGy0cCUL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8IGy0cCUL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8IGy0cCUL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8IGy0cCUL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8IGy0cCUL ul.navbar-nav {
  flex-wrap: wrap;
  padding: 36px 0;
  border-bottom: 1px solid #684b44;
}
.cid-u8IGy0cCUL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u8IGy0cCUL button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-u8IGy0cCUL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #684b44;
}
.cid-u8IGy0cCUL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8IGy0cCUL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8IGy0cCUL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8IGy0cCUL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8IGy0cCUL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8IGy0cCUL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8IGy0cCUL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8IGy0cCUL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8IGy0cCUL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-u8IGy0cCUL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u8IGy0cCUL .navbar {
    height: 70px;
  }
  .cid-u8IGy0cCUL .navbar.opened {
    height: auto;
  }
  .cid-u8IGy0cCUL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8IGy0cCUL .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-u8IGy0cCUL .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-u8IGy0cCUL .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-u8IGy0cCUL .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
.cid-u8IGy0cCUL .navbar-caption:hover {
  color: #232323;
}
@media (min-width: 992px) {
  .cid-u8IGy0cCUL .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-u8IGy0cCUL .nav-link {
  position: relative;
}
.cid-u8IGy0cCUL .nav-link:before {
  content: '';
  position: absolute;
  left: -12px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #232323;
  transition: all .3s ease;
  opacity: 0;
}
.cid-u8IGy0cCUL .nav-link:hover:before {
  opacity: 1;
}
.cid-u8IGy0cCUL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u8IGy0cCUL .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-u8IGy0cCUL .text_widget {
  color: #ffffff;
}
.cid-u8IGy0cCUL .mbr-section-subtitle,
.cid-u8IGy0cCUL .text_widget,
.cid-u8IGy0cCUL .mbr-section-btn {
  text-align: center;
}
.cid-u8IGy0cCUL a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-u8IGy0Nzgy {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u8IGy0Nzgy .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8IGy0Nzgy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8IGy0Nzgy .card-wrapper {
  width: 100%;
}
.cid-u8IGy0Nzgy .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-u8IGy0Nzgy .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-u8IGy0Nzgy .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-u8IGy0Nzgy .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-u8IGy0Nzgy .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-u8IGy0Nzgy .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u8IGy0Nzgy .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-u8IGy0Nzgy .text-wrap {
    padding: 8px 16px;
  }
}
.cid-u8IGy0Nzgy .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-u8IGy0Nzgy .card-title {
    text-align: center !important;
  }
}
.cid-u8IGy0Nzgy .card-text {
  color: #505b6c;
  margin-bottom: 0;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-u8IGy0Nzgy .card-text {
    text-align: center !important;
  }
}
.cid-u8IGy2b2sR {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u8IGy2b2sR .container-fluid {
  padding: 0;
}
.cid-u8IGy2b2sR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u8IGy2b2sR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u8IGy2b2sR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u8IGy2b2sR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u8IGy2b2sR .mbr-gallery-item {
  padding: 0px !important;
}
.cid-u8IGy2b2sR .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-u8IGy2b2sR .mbr-gallery-filter .btn {
  color: #505b6c !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  background: transparent;
  padding: 5px 12px;
}
.cid-u8IGy2b2sR .mbr-gallery-filter ul {
  display: block;
}
.cid-u8IGy2b2sR .mbr-gallery-filter ul li {
  position: relative;
  margin: 5px;
}
.cid-u8IGy2b2sR .mbr-gallery-filter li.active .btn {
  color: #333333 !important;
  background: transparent;
  border: 1px solid #dddfe0 !important;
}
.cid-u8IGy2b2sR .mbr-gallery-filter .btn::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #333333 !important;
}
.cid-u8IGy2b2sR .mbr-gallery-title {
  display: block;
  display: none !important;
  width: 100%;
  margin: 0;
  padding: 1rem 0 1rem 1rem;
  color: #222;
  text-align: left;
}
.cid-u8IGy2b2sR .mbr-gallery-item > div:hover .mbr-gallery-title {
  top: 0;
  right: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.cid-u8IGy2b2sR .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 47px);
  top: calc(50% - 24px);
}
.cid-u8IGy2b2sR .icon-focus:before {
  content: '\e96b';
}
.cid-u8IGy2b2sR .icon-focus {
  transition: all .3s;
  font-size: 3rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px padding: 0 8px;
  border-radius: 50%;
  color: #ffffff !important;
}
.cid-u8IGy2b2sR .icon-focus::after {
  border: 2px solid #fff;
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  border-radius: 50%;
  width: 90px;
  height: 90px;
}
.cid-u8IGy2b2sR .mbr-section-title {
  margin: 0;
}
.cid-u8IGy3l81T {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d0c1b4;
  background: linear-gradient(45deg, #d0c1b4, #684b44);
}
.cid-u8IGy3l81T .mbr-section-subtitle {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-u8IGy3l81T .mbr-section-btn,
  .cid-u8IGy3l81T .mbr-section-subtitle,
  .cid-u8IGy3l81T .mbr-section-title {
    text-align: center !important;
  }
}
.cid-u8IGy3l81T .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8IGy3l81T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8IGy3MekH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-u8IGy3MekH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u8IGy3MekH li {
  padding-bottom: 0.6rem;
}
.cid-u8IGy3MekH .border-col {
  border-right: 1px solid #684b44;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-u8IGy3MekH .border-col {
    border: 0px;
  }
}
.cid-u8IGy3MekH .container {
  position: relative;
}
.cid-u8IGy3MekH .container:before {
  content: '';
  top: 0;
  width: 200%;
  height: 1px;
  background: #684b44;
  position: absolute;
  left: -50%;
}
.cid-u8IGy3MekH .container:after {
  content: '';
  bottom: 0;
  width: 200%;
  height: 1px;
  background: #684b44;
  position: absolute;
  left: -50%;
}
.cid-u8IGy3MekH .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-u8IGy3MekH .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-u8IGy3MekH .padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
  height: inherit;
}
@media (max-width: 992px) {
  .cid-u8IGy3MekH .padding {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-u8IGy3MekH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #684b44;
}
.cid-u8IGy3MekH .soc-item:hover {
  background: #232323;
}
.cid-u8IGy3MekH .soc-item .mbr-iconfont {
  color: #684b44;
}
@media (max-width: 767px) {
  .cid-u8IGy3MekH .row {
    text-align: center;
  }
  .cid-u8IGy3MekH .social-row {
    justify-content: center;
  }
}
.cid-u8IGy3MekH .list {
  list-style: none;
  padding-left: 0;
}
.cid-u8IGy3MekH .mbr-text {
  color: #684b44;
}
.cid-u8IGy3MekH H5 {
  color: #ede6da;
}
.cid-u8IGy3MekH .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8IGy3MekH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8IGy3MekH .mbr-section-subtitle {
  color: #684b44;
}
#custom-html-p3 {
  /* Type valid CSS here */
}
#custom-html-p3 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-p3 p {
  font-size: 60px;
  color: #777;
}
.cid-u7ijl9JZwz .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-u7ijl9JZwz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-u7ijl9JZwz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-u7ijl9JZwz .menu_box .navbar.opened,
  .cid-u7ijl9JZwz .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-u7ijl9JZwz .navbar-dropdown {
  position: relative !important;
}
.cid-u7ijl9JZwz .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-u7ijl9JZwz .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u7ijl9JZwz .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-u7ijl9JZwz .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-u7ijl9JZwz .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-u7ijl9JZwz .offcanvas {
    padding: 12rem 80px 0;
    width: 50%;
    background-color: #e0bdb6;
  }
  .cid-u7ijl9JZwz .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-u7ijl9JZwz .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-u7ijl9JZwz .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-u7ijl9JZwz .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-u7ijl9JZwz .offcanvas-body .mbr-text,
  .cid-u7ijl9JZwz .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-u7ijl9JZwz .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-u7ijl9JZwz .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-u7ijl9JZwz .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #684b44;
  }
  .cid-u7ijl9JZwz .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-u7ijl9JZwz .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-u7ijl9JZwz .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-u7ijl9JZwz .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-u7ijl9JZwz ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-u7ijl9JZwz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-u7ijl9JZwz .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-u7ijl9JZwz .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-u7ijl9JZwz li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-u7ijl9JZwz .lg_brand {
    margin: 0 1rem;
  }
}
.cid-u7ijl9JZwz .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-u7ijl9JZwz .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-u7ijl9JZwz .nav-item {
    margin: 0 !important;
  }
}
.cid-u7ijl9JZwz .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-u7ijl9JZwz .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-u7ijl9JZwz .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-u7ijl9JZwz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-u7ijl9JZwz .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-u7ijl9JZwz .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-u7ijl9JZwz .offcanvas_box {
    display: none;
  }
}
.cid-u7ijl9JZwz .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-u7ijl9JZwz .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-u7ijl9JZwz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-u7ijl9JZwz .container {
  display: flex;
  margin: auto;
}
.cid-u7ijl9JZwz .iconfont-wrapper {
  color: #684b44;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u7ijl9JZwz .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u7ijl9JZwz .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-u7ijl9JZwz .navbar-caption {
  color: #747474;
}
.cid-u7ijl9JZwz .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-u7ijl9JZwz .navbar-nav {
    margin: 0;
  }
}
.cid-u7ijl9JZwz .dropdown-menu,
.cid-u7ijl9JZwz .navbar.opened {
  background-color: false !important;
}
.cid-u7ijl9JZwz .nav-item:focus,
.cid-u7ijl9JZwz .nav-link:focus {
  outline: none;
}
.cid-u7ijl9JZwz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7ijl9JZwz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7ijl9JZwz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7ijl9JZwz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7ijl9JZwz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7ijl9JZwz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7ijl9JZwz .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
@media (max-width: 992px) {
  .cid-u7ijl9JZwz .navbar {
    min-height: 30px;
    max-height: 90px;
  }
}
.cid-u7ijl9JZwz .navbar.opened {
  transition: all 0.3s;
}
.cid-u7ijl9JZwz .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-u7ijl9JZwz .navbar .navbar-logo img {
  max-width: 38px;
  max-height: 38px;
  object-fit: cover;
  border-radius: 100%;
}
.cid-u7ijl9JZwz .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-u7ijl9JZwz .navbar.collapsed {
  justify-content: center;
}
.cid-u7ijl9JZwz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7ijl9JZwz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u7ijl9JZwz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7ijl9JZwz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7ijl9JZwz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7ijl9JZwz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-u7ijl9JZwz .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u7ijl9JZwz .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-u7ijl9JZwz .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-u7ijl9JZwz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7ijl9JZwz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7ijl9JZwz .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-u7ijl9JZwz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7ijl9JZwz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-u7ijl9JZwz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7ijl9JZwz .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-u7ijl9JZwz .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u7ijl9JZwz .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-u7ijl9JZwz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7ijl9JZwz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7ijl9JZwz .navbar .icons-menu {
    padding: 0;
  }
}
.cid-u7ijl9JZwz .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7ijl9JZwz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u7ijl9JZwz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7ijl9JZwz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7ijl9JZwz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u7ijl9JZwz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7ijl9JZwz .dropdown-item.active,
.cid-u7ijl9JZwz .dropdown-item:active {
  background-color: transparent;
}
.cid-u7ijl9JZwz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7ijl9JZwz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7ijl9JZwz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7ijl9JZwz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7ijl9JZwz ul.navbar-nav {
  flex-wrap: wrap;
  padding: 36px 0;
  border-bottom: 1px solid #684b44;
}
.cid-u7ijl9JZwz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7ijl9JZwz button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-u7ijl9JZwz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #684b44;
}
.cid-u7ijl9JZwz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7ijl9JZwz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7ijl9JZwz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7ijl9JZwz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7ijl9JZwz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7ijl9JZwz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7ijl9JZwz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7ijl9JZwz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7ijl9JZwz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-u7ijl9JZwz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7ijl9JZwz .navbar {
    height: 70px;
  }
  .cid-u7ijl9JZwz .navbar.opened {
    height: auto;
  }
  .cid-u7ijl9JZwz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7ijl9JZwz .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-u7ijl9JZwz .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-u7ijl9JZwz .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-u7ijl9JZwz .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
.cid-u7ijl9JZwz .navbar-caption:hover {
  color: #232323;
}
@media (min-width: 992px) {
  .cid-u7ijl9JZwz .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-u7ijl9JZwz .nav-link {
  position: relative;
}
.cid-u7ijl9JZwz .nav-link:before {
  content: '';
  position: absolute;
  left: -12px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #232323;
  transition: all .3s ease;
  opacity: 0;
}
.cid-u7ijl9JZwz .nav-link:hover:before {
  opacity: 1;
}
.cid-u7ijl9JZwz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u7ijl9JZwz .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-u7ijl9JZwz .text_widget {
  color: #ffffff;
}
.cid-u7ijl9JZwz .mbr-section-subtitle,
.cid-u7ijl9JZwz .text_widget,
.cid-u7ijl9JZwz .mbr-section-btn {
  text-align: center;
}
.cid-u7ijl9JZwz a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-u7ijlac86p {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u7ijlac86p .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ijlac86p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7ijlac86p .card-wrapper {
  width: 100%;
}
.cid-u7ijlac86p .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-u7ijlac86p .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-u7ijlac86p .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-u7ijlac86p .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-u7ijlac86p .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-u7ijlac86p .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u7ijlac86p .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-u7ijlac86p .text-wrap {
    padding: 8px 16px;
  }
}
.cid-u7ijlac86p .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-u7ijlac86p .card-title {
    text-align: center !important;
  }
}
.cid-u7ijlac86p .card-text {
  color: #505b6c;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-u7ijlac86p .card-text {
    text-align: center !important;
  }
}
.cid-u7ijlbsLD4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7ijlbsLD4 .container-fluid {
  padding: 0;
}
.cid-u7ijlbsLD4 .item-content {
  padding: 32px 24px;
}
@media (min-width: 576px) {
  .cid-u7ijlbsLD4 .item-content {
    padding: 40px;
  }
}
.cid-u7ijlbsLD4 .item:focus,
.cid-u7ijlbsLD4 span:focus {
  outline: none;
}
.cid-u7ijlbsLD4 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u7ijlbsLD4 .item {
  cursor: pointer;
  border: 1px solid #ffffff;
  margin: -1px 0 24px;
}
@media (min-width: 576px) {
  .cid-u7ijlbsLD4 .item {
    margin: -1px 0 40px;
  }
}
@media (min-width: 992px) {
  .cid-u7ijlbsLD4 .item {
    margin: -1px 0 0;
  }
  .cid-u7ijlbsLD4 .item_left {
    padding-right: 40px;
  }
  .cid-u7ijlbsLD4 .item_right {
    position: relative;
    top: -92px;
    padding-left: 40px;
  }
}
.cid-u7ijlbsLD4 .item-img {
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid #FFFFFF;
}
.cid-u7ijlbsLD4 .item-img img {
  width: 100%;
  transition: transform 0.5s;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
}
.cid-u7ijlbsLD4 .item-img:hover img {
  transform: scale(1.3);
}
.cid-u7ijlbsLD4 .item-wrap {
  position: relative;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u7ijlbsLD4 .item-wrap {
  background: transparent;
}
.cid-u7ijlbsLD4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u7ijlbsLD4 .title-text-container {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-u7ijlbsLD4 .title-text-container {
    margin-bottom: 64px;
  }
}
.cid-u7ijlbsLD4 .item-title {
  color: #505b6c;
  margin-bottom: 0;
  line-height: 1;
  text-align: left;
}
.cid-u7ijlbsLD4 .item-subtitle {
  color: #ffffff;
}
.cid-u7ijlbsLD4 .mbr-text,
.cid-u7ijlbsLD4 .mbr-section-btn {
  text-align: left;
}
.cid-u7ijlbsLD4 .items-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 576px) {
  .cid-u7ijlbsLD4 .items-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 992px) {
  .cid-u7ijlbsLD4 .items-container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-u7ijlbsLD4 .item__buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -32px;
}
.cid-u7ijlbsLD4 .btn {
  margin: 16px 0 0 0;
}
.cid-u7ijlbsLD4 .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-u7ijlbsLD4 .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
.cid-u7ijlbsLD4 .item__button {
  margin-left: 32px;
}
.cid-u7ijlbsLD4 .mbr-section-title {
  color: #505b6c;
}
.cid-u7ijlbsLD4 .mbr-section-title_container {
  width: 200px;
  border-right: 1px solid #FFFFFF;
}
@media (max-width: 575px) {
  .cid-u7ijlbsLD4 .mbr-section-title_container {
    width: 33%;
    padding-bottom: 24px;
    border-bottom: 1px solid #FFFFFF;
    border-right: none;
  }
}
.cid-u7ijlbLsxg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7ijlbLsxg .container-fluid {
  padding: 0;
}
.cid-u7ijlbLsxg .item-content {
  padding: 32px 24px;
}
@media (min-width: 576px) {
  .cid-u7ijlbLsxg .item-content {
    padding: 40px;
  }
}
.cid-u7ijlbLsxg .item:focus,
.cid-u7ijlbLsxg span:focus {
  outline: none;
}
.cid-u7ijlbLsxg .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u7ijlbLsxg .item {
  cursor: pointer;
  border: 1px solid #ffffff;
  margin: -1px 0 24px;
}
@media (min-width: 576px) {
  .cid-u7ijlbLsxg .item {
    margin: -1px 0 40px;
  }
}
@media (min-width: 992px) {
  .cid-u7ijlbLsxg .item {
    margin: -1px 0 0;
  }
  .cid-u7ijlbLsxg .item_left {
    padding-right: 40px;
  }
  .cid-u7ijlbLsxg .item_right {
    position: relative;
    top: -92px;
    padding-left: 40px;
  }
}
.cid-u7ijlbLsxg .item-img {
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid #FFFFFF;
}
.cid-u7ijlbLsxg .item-img img {
  width: 100%;
  transition: transform 0.5s;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
}
.cid-u7ijlbLsxg .item-img:hover img {
  transform: scale(1.2);
}
.cid-u7ijlbLsxg .item-wrap {
  position: relative;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u7ijlbLsxg .item-wrap {
  background: transparent;
}
.cid-u7ijlbLsxg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u7ijlbLsxg .title-text-container {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-u7ijlbLsxg .title-text-container {
    margin-bottom: 64px;
  }
}
.cid-u7ijlbLsxg .item-title {
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
  text-align: left;
}
.cid-u7ijlbLsxg .item-subtitle {
  color: #ffffff;
}
.cid-u7ijlbLsxg .mbr-text,
.cid-u7ijlbLsxg .mbr-section-btn {
  text-align: left;
}
.cid-u7ijlbLsxg .items-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 576px) {
  .cid-u7ijlbLsxg .items-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 992px) {
  .cid-u7ijlbLsxg .items-container {
    padding-left: 60px;
    padding-right: 60px;
    margin-top: 92px;
  }
}
.cid-u7ijlbLsxg .item__buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -32px;
}
.cid-u7ijlbLsxg .btn {
  margin: 16px 0 0 0;
}
.cid-u7ijlbLsxg .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-u7ijlbLsxg .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
.cid-u7ijlbLsxg .item__button {
  margin-left: 32px;
}
.cid-u7ijlbLsxg .mbr-section-title {
  color: #FFFFFF;
}
.cid-u7ijlbLsxg .mbr-section-title_container {
  width: 200px;
  border-right: 1px solid #FFFFFF;
}
.cid-u7ixrLWkhy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7ixrLWkhy .container-fluid {
  padding: 0;
}
.cid-u7ixrLWkhy .item-content {
  padding: 32px 24px;
}
@media (min-width: 576px) {
  .cid-u7ixrLWkhy .item-content {
    padding: 40px;
  }
}
.cid-u7ixrLWkhy .item:focus,
.cid-u7ixrLWkhy span:focus {
  outline: none;
}
.cid-u7ixrLWkhy .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u7ixrLWkhy .item {
  cursor: pointer;
  border: 1px solid #ffffff;
  margin: -1px 0 24px;
}
@media (min-width: 576px) {
  .cid-u7ixrLWkhy .item {
    margin: -1px 0 40px;
  }
}
@media (min-width: 992px) {
  .cid-u7ixrLWkhy .item {
    margin: -1px 0 0;
  }
  .cid-u7ixrLWkhy .item_left {
    padding-right: 40px;
  }
  .cid-u7ixrLWkhy .item_right {
    position: relative;
    top: -92px;
    padding-left: 40px;
  }
}
.cid-u7ixrLWkhy .item-img {
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid #FFFFFF;
}
.cid-u7ixrLWkhy .item-img img {
  width: 100%;
  transition: transform 0.5s;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
}
.cid-u7ixrLWkhy .item-img:hover img {
  transform: scale(1.2);
}
.cid-u7ixrLWkhy .item-wrap {
  position: relative;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u7ixrLWkhy .item-wrap {
  background: transparent;
}
.cid-u7ixrLWkhy .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u7ixrLWkhy .title-text-container {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-u7ixrLWkhy .title-text-container {
    margin-bottom: 64px;
  }
}
.cid-u7ixrLWkhy .item-title {
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
  text-align: left;
}
.cid-u7ixrLWkhy .item-subtitle {
  color: #ffffff;
}
.cid-u7ixrLWkhy .mbr-text,
.cid-u7ixrLWkhy .mbr-section-btn {
  text-align: left;
}
.cid-u7ixrLWkhy .items-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 576px) {
  .cid-u7ixrLWkhy .items-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 992px) {
  .cid-u7ixrLWkhy .items-container {
    padding-left: 60px;
    padding-right: 60px;
    margin-top: 92px;
  }
}
.cid-u7ixrLWkhy .item__buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -32px;
}
.cid-u7ixrLWkhy .btn {
  margin: 16px 0 0 0;
}
.cid-u7ixrLWkhy .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-u7ixrLWkhy .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
.cid-u7ixrLWkhy .item__button {
  margin-left: 32px;
}
.cid-u7ixrLWkhy .mbr-section-title {
  color: #FFFFFF;
}
.cid-u7ixrLWkhy .mbr-section-title_container {
  width: 200px;
  border-right: 1px solid #FFFFFF;
}
.cid-u7iyA1I7d7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7iyA1I7d7 .container-fluid {
  padding: 0;
}
.cid-u7iyA1I7d7 .item-content {
  padding: 32px 24px;
}
@media (min-width: 576px) {
  .cid-u7iyA1I7d7 .item-content {
    padding: 40px;
  }
}
.cid-u7iyA1I7d7 .item:focus,
.cid-u7iyA1I7d7 span:focus {
  outline: none;
}
.cid-u7iyA1I7d7 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u7iyA1I7d7 .item {
  cursor: pointer;
  border: 1px solid #ffffff;
  margin: -1px 0 24px;
}
@media (min-width: 576px) {
  .cid-u7iyA1I7d7 .item {
    margin: -1px 0 40px;
  }
}
@media (min-width: 992px) {
  .cid-u7iyA1I7d7 .item {
    margin: -1px 0 0;
  }
  .cid-u7iyA1I7d7 .item_left {
    padding-right: 40px;
  }
  .cid-u7iyA1I7d7 .item_right {
    position: relative;
    top: -92px;
    padding-left: 40px;
  }
}
.cid-u7iyA1I7d7 .item-img {
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid #FFFFFF;
}
.cid-u7iyA1I7d7 .item-img img {
  width: 100%;
  transition: transform 0.5s;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
}
.cid-u7iyA1I7d7 .item-img:hover img {
  transform: scale(1.2);
}
.cid-u7iyA1I7d7 .item-wrap {
  position: relative;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u7iyA1I7d7 .item-wrap {
  background: transparent;
}
.cid-u7iyA1I7d7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u7iyA1I7d7 .title-text-container {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-u7iyA1I7d7 .title-text-container {
    margin-bottom: 64px;
  }
}
.cid-u7iyA1I7d7 .item-title {
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
  text-align: left;
}
.cid-u7iyA1I7d7 .item-subtitle {
  color: #ffffff;
}
.cid-u7iyA1I7d7 .mbr-text,
.cid-u7iyA1I7d7 .mbr-section-btn {
  text-align: left;
}
.cid-u7iyA1I7d7 .items-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 576px) {
  .cid-u7iyA1I7d7 .items-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 992px) {
  .cid-u7iyA1I7d7 .items-container {
    padding-left: 60px;
    padding-right: 60px;
    margin-top: 92px;
  }
}
.cid-u7iyA1I7d7 .item__buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -32px;
}
.cid-u7iyA1I7d7 .btn {
  margin: 16px 0 0 0;
}
.cid-u7iyA1I7d7 .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-u7iyA1I7d7 .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
.cid-u7iyA1I7d7 .item__button {
  margin-left: 32px;
}
.cid-u7iyA1I7d7 .mbr-section-title {
  color: #FFFFFF;
}
.cid-u7iyA1I7d7 .mbr-section-title_container {
  width: 200px;
  border-right: 1px solid #FFFFFF;
}
.cid-u7iZXzdfb6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7iZXzdfb6 .container-fluid {
  padding: 0;
}
.cid-u7iZXzdfb6 .item-content {
  padding: 32px 24px;
}
@media (min-width: 576px) {
  .cid-u7iZXzdfb6 .item-content {
    padding: 40px;
  }
}
.cid-u7iZXzdfb6 .item:focus,
.cid-u7iZXzdfb6 span:focus {
  outline: none;
}
.cid-u7iZXzdfb6 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u7iZXzdfb6 .item {
  cursor: pointer;
  border: 1px solid #ffffff;
  margin: -1px 0 24px;
}
@media (min-width: 576px) {
  .cid-u7iZXzdfb6 .item {
    margin: -1px 0 40px;
  }
}
@media (min-width: 992px) {
  .cid-u7iZXzdfb6 .item {
    margin: -1px 0 0;
  }
  .cid-u7iZXzdfb6 .item_left {
    padding-right: 40px;
  }
  .cid-u7iZXzdfb6 .item_right {
    position: relative;
    top: -92px;
    padding-left: 40px;
  }
}
.cid-u7iZXzdfb6 .item-img {
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid #FFFFFF;
}
.cid-u7iZXzdfb6 .item-img img {
  width: 100%;
  transition: transform 0.5s;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
}
.cid-u7iZXzdfb6 .item-img:hover img {
  transform: scale(1.2);
}
.cid-u7iZXzdfb6 .item-wrap {
  position: relative;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u7iZXzdfb6 .item-wrap {
  background: transparent;
}
.cid-u7iZXzdfb6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u7iZXzdfb6 .title-text-container {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-u7iZXzdfb6 .title-text-container {
    margin-bottom: 64px;
  }
}
.cid-u7iZXzdfb6 .item-title {
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
  text-align: left;
}
.cid-u7iZXzdfb6 .item-subtitle {
  color: #ffffff;
}
.cid-u7iZXzdfb6 .mbr-text,
.cid-u7iZXzdfb6 .mbr-section-btn {
  text-align: left;
}
.cid-u7iZXzdfb6 .items-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 576px) {
  .cid-u7iZXzdfb6 .items-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 992px) {
  .cid-u7iZXzdfb6 .items-container {
    padding-left: 60px;
    padding-right: 60px;
    margin-top: 92px;
  }
}
.cid-u7iZXzdfb6 .item__buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -32px;
}
.cid-u7iZXzdfb6 .btn {
  margin: 16px 0 0 0;
}
.cid-u7iZXzdfb6 .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-u7iZXzdfb6 .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
.cid-u7iZXzdfb6 .item__button {
  margin-left: 32px;
}
.cid-u7iZXzdfb6 .mbr-section-title {
  color: #FFFFFF;
}
.cid-u7iZXzdfb6 .mbr-section-title_container {
  width: 200px;
  border-right: 1px solid #FFFFFF;
}
.cid-u7j0Wffk9D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7j0Wffk9D .container-fluid {
  padding: 0;
}
.cid-u7j0Wffk9D .item-content {
  padding: 32px 24px;
}
@media (min-width: 576px) {
  .cid-u7j0Wffk9D .item-content {
    padding: 40px;
  }
}
.cid-u7j0Wffk9D .item:focus,
.cid-u7j0Wffk9D span:focus {
  outline: none;
}
.cid-u7j0Wffk9D .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u7j0Wffk9D .item {
  cursor: pointer;
  border: 1px solid #ffffff;
  margin: -1px 0 24px;
}
@media (min-width: 576px) {
  .cid-u7j0Wffk9D .item {
    margin: -1px 0 40px;
  }
}
@media (min-width: 992px) {
  .cid-u7j0Wffk9D .item {
    margin: -1px 0 0;
  }
  .cid-u7j0Wffk9D .item_left {
    padding-right: 40px;
  }
  .cid-u7j0Wffk9D .item_right {
    position: relative;
    top: -92px;
    padding-left: 40px;
  }
}
.cid-u7j0Wffk9D .item-img {
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid #FFFFFF;
}
.cid-u7j0Wffk9D .item-img img {
  width: 100%;
  transition: transform 0.5s;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
}
.cid-u7j0Wffk9D .item-img:hover img {
  transform: scale(1.2);
}
.cid-u7j0Wffk9D .item-wrap {
  position: relative;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u7j0Wffk9D .item-wrap {
  background: transparent;
}
.cid-u7j0Wffk9D .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u7j0Wffk9D .title-text-container {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-u7j0Wffk9D .title-text-container {
    margin-bottom: 64px;
  }
}
.cid-u7j0Wffk9D .item-title {
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
  text-align: left;
}
.cid-u7j0Wffk9D .item-subtitle {
  color: #ffffff;
}
.cid-u7j0Wffk9D .mbr-text,
.cid-u7j0Wffk9D .mbr-section-btn {
  text-align: left;
}
.cid-u7j0Wffk9D .items-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 576px) {
  .cid-u7j0Wffk9D .items-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 992px) {
  .cid-u7j0Wffk9D .items-container {
    padding-left: 60px;
    padding-right: 60px;
    margin-top: 92px;
  }
}
.cid-u7j0Wffk9D .item__buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -32px;
}
.cid-u7j0Wffk9D .btn {
  margin: 16px 0 0 0;
}
.cid-u7j0Wffk9D .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-u7j0Wffk9D .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
.cid-u7j0Wffk9D .item__button {
  margin-left: 32px;
}
.cid-u7j0Wffk9D .mbr-section-title {
  color: #FFFFFF;
}
.cid-u7j0Wffk9D .mbr-section-title_container {
  width: 200px;
  border-right: 1px solid #FFFFFF;
}
.cid-u7j1y5MrvV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7j1y5MrvV .container-fluid {
  padding: 0;
}
.cid-u7j1y5MrvV .item-content {
  padding: 32px 24px;
}
@media (min-width: 576px) {
  .cid-u7j1y5MrvV .item-content {
    padding: 40px;
  }
}
.cid-u7j1y5MrvV .item:focus,
.cid-u7j1y5MrvV span:focus {
  outline: none;
}
.cid-u7j1y5MrvV .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u7j1y5MrvV .item {
  cursor: pointer;
  border: 1px solid #ffffff;
  margin: -1px 0 24px;
}
@media (min-width: 576px) {
  .cid-u7j1y5MrvV .item {
    margin: -1px 0 40px;
  }
}
@media (min-width: 992px) {
  .cid-u7j1y5MrvV .item {
    margin: -1px 0 0;
  }
  .cid-u7j1y5MrvV .item_left {
    padding-right: 40px;
  }
  .cid-u7j1y5MrvV .item_right {
    position: relative;
    top: -92px;
    padding-left: 40px;
  }
}
.cid-u7j1y5MrvV .item-img {
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid #FFFFFF;
}
.cid-u7j1y5MrvV .item-img img {
  width: 100%;
  transition: transform 0.5s;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
}
.cid-u7j1y5MrvV .item-img:hover img {
  transform: scale(1.2);
}
.cid-u7j1y5MrvV .item-wrap {
  position: relative;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u7j1y5MrvV .item-wrap {
  background: transparent;
}
.cid-u7j1y5MrvV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u7j1y5MrvV .title-text-container {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-u7j1y5MrvV .title-text-container {
    margin-bottom: 64px;
  }
}
.cid-u7j1y5MrvV .item-title {
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
  text-align: left;
}
.cid-u7j1y5MrvV .item-subtitle {
  color: #ffffff;
}
.cid-u7j1y5MrvV .mbr-text,
.cid-u7j1y5MrvV .mbr-section-btn {
  text-align: left;
}
.cid-u7j1y5MrvV .items-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 576px) {
  .cid-u7j1y5MrvV .items-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 992px) {
  .cid-u7j1y5MrvV .items-container {
    padding-left: 60px;
    padding-right: 60px;
    margin-top: 92px;
  }
}
.cid-u7j1y5MrvV .item__buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -32px;
}
.cid-u7j1y5MrvV .btn {
  margin: 16px 0 0 0;
}
.cid-u7j1y5MrvV .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-u7j1y5MrvV .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
.cid-u7j1y5MrvV .item__button {
  margin-left: 32px;
}
.cid-u7j1y5MrvV .mbr-section-title {
  color: #FFFFFF;
}
.cid-u7j1y5MrvV .mbr-section-title_container {
  width: 200px;
  border-right: 1px solid #FFFFFF;
}
.cid-u7j27gbEGv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7j27gbEGv .container-fluid {
  padding: 0;
}
.cid-u7j27gbEGv .item-content {
  padding: 32px 24px;
}
@media (min-width: 576px) {
  .cid-u7j27gbEGv .item-content {
    padding: 40px;
  }
}
.cid-u7j27gbEGv .item:focus,
.cid-u7j27gbEGv span:focus {
  outline: none;
}
.cid-u7j27gbEGv .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-u7j27gbEGv .item {
  cursor: pointer;
  border: 1px solid #ffffff;
  margin: -1px 0 24px;
}
@media (min-width: 576px) {
  .cid-u7j27gbEGv .item {
    margin: -1px 0 40px;
  }
}
@media (min-width: 992px) {
  .cid-u7j27gbEGv .item {
    margin: -1px 0 0;
  }
  .cid-u7j27gbEGv .item_left {
    padding-right: 40px;
  }
  .cid-u7j27gbEGv .item_right {
    position: relative;
    top: -92px;
    padding-left: 40px;
  }
}
.cid-u7j27gbEGv .item-img {
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid #FFFFFF;
}
.cid-u7j27gbEGv .item-img img {
  width: 100%;
  transition: transform 0.5s;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
}
.cid-u7j27gbEGv .item-img:hover img {
  transform: scale(1.2);
}
.cid-u7j27gbEGv .item-wrap {
  position: relative;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u7j27gbEGv .item-wrap {
  background: transparent;
}
.cid-u7j27gbEGv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u7j27gbEGv .title-text-container {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-u7j27gbEGv .title-text-container {
    margin-bottom: 64px;
  }
}
.cid-u7j27gbEGv .item-title {
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
  text-align: left;
}
.cid-u7j27gbEGv .item-subtitle {
  color: #ffffff;
}
.cid-u7j27gbEGv .mbr-text,
.cid-u7j27gbEGv .mbr-section-btn {
  text-align: left;
}
.cid-u7j27gbEGv .items-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 576px) {
  .cid-u7j27gbEGv .items-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 992px) {
  .cid-u7j27gbEGv .items-container {
    padding-left: 60px;
    padding-right: 60px;
    margin-top: 92px;
  }
}
.cid-u7j27gbEGv .item__buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -32px;
}
.cid-u7j27gbEGv .btn {
  margin: 16px 0 0 0;
}
.cid-u7j27gbEGv .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-u7j27gbEGv .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
.cid-u7j27gbEGv .item__button {
  margin-left: 32px;
}
.cid-u7j27gbEGv .mbr-section-title {
  color: #FFFFFF;
}
.cid-u7j27gbEGv .mbr-section-title_container {
  width: 200px;
  border-right: 1px solid #FFFFFF;
}
.cid-u7msXuDgMe {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u7msXuDgMe .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7msXuDgMe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7msXuDgMe .card-wrapper {
  width: 100%;
}
.cid-u7msXuDgMe .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-u7msXuDgMe .card-box {
    flex-direction: column;
    align-items: center;
  }
}
.cid-u7msXuDgMe .iconfont-wrapper {
  padding: 10px 20px;
}
@media (max-width: 991px) {
  .cid-u7msXuDgMe .iconfont-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-u7msXuDgMe .iconfont-wrapper {
    padding: 8px 16px;
  }
}
.cid-u7msXuDgMe .mbr-iconfont {
  display: block;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u7msXuDgMe .text-wrap {
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .cid-u7msXuDgMe .text-wrap {
    padding: 8px 16px;
  }
}
.cid-u7msXuDgMe .card-title {
  color: #ffffff;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .cid-u7msXuDgMe .card-title {
    text-align: center !important;
  }
}
.cid-u7msXuDgMe .card-text {
  color: #505b6c;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-u7msXuDgMe .card-text {
    text-align: center !important;
  }
}
.cid-u7ijlcNdzJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #d0c1b4;
  background: linear-gradient(45deg, #d0c1b4, #684b44);
}
.cid-u7ijlcNdzJ .mbr-section-subtitle {
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-u7ijlcNdzJ .mbr-section-btn,
  .cid-u7ijlcNdzJ .mbr-section-subtitle,
  .cid-u7ijlcNdzJ .mbr-section-title {
    text-align: center !important;
  }
}
.cid-u7ijlcNdzJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ijlcNdzJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7ijld6xVr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-u7ijld6xVr .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u7ijld6xVr li {
  padding-bottom: 0.6rem;
}
.cid-u7ijld6xVr .border-col {
  border-right: 1px solid #684b44;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-u7ijld6xVr .border-col {
    border: 0px;
  }
}
.cid-u7ijld6xVr .container {
  position: relative;
}
.cid-u7ijld6xVr .container:before {
  content: '';
  top: 0;
  width: 200%;
  height: 1px;
  background: #684b44;
  position: absolute;
  left: -50%;
}
.cid-u7ijld6xVr .container:after {
  content: '';
  bottom: 0;
  width: 200%;
  height: 1px;
  background: #684b44;
  position: absolute;
  left: -50%;
}
.cid-u7ijld6xVr .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-u7ijld6xVr .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-u7ijld6xVr .padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
  height: inherit;
}
@media (max-width: 992px) {
  .cid-u7ijld6xVr .padding {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-u7ijld6xVr .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #684b44;
}
.cid-u7ijld6xVr .soc-item:hover {
  background: #232323;
}
.cid-u7ijld6xVr .soc-item .mbr-iconfont {
  color: #684b44;
}
@media (max-width: 767px) {
  .cid-u7ijld6xVr .row {
    text-align: center;
  }
  .cid-u7ijld6xVr .social-row {
    justify-content: center;
  }
}
.cid-u7ijld6xVr .list {
  list-style: none;
  padding-left: 0;
}
.cid-u7ijld6xVr .mbr-text {
  color: #684b44;
}
.cid-u7ijld6xVr H5 {
  color: #ede6da;
}
.cid-u7ijld6xVr .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ijld6xVr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7ijld6xVr .mbr-section-subtitle {
  color: #684b44;
}
#custom-html-p4 {
  /* Type valid CSS here */
}
#custom-html-p4 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-p4 p {
  font-size: 60px;
  color: #777;
}
.cid-uhaBtt5Udl .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uhaBtt5Udl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uhaBtt5Udl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uhaBtt5Udl .menu_box .navbar.opened,
  .cid-uhaBtt5Udl .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uhaBtt5Udl .navbar-dropdown {
  position: relative !important;
}
.cid-uhaBtt5Udl .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uhaBtt5Udl .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uhaBtt5Udl .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uhaBtt5Udl .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uhaBtt5Udl .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uhaBtt5Udl .offcanvas {
    padding: 12rem 80px 0;
    width: 50%;
    background-color: #e0bdb6;
  }
  .cid-uhaBtt5Udl .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uhaBtt5Udl .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uhaBtt5Udl .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uhaBtt5Udl .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uhaBtt5Udl .offcanvas-body .mbr-text,
  .cid-uhaBtt5Udl .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-uhaBtt5Udl .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-uhaBtt5Udl .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uhaBtt5Udl .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #684b44;
  }
  .cid-uhaBtt5Udl .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uhaBtt5Udl .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uhaBtt5Udl .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uhaBtt5Udl .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uhaBtt5Udl ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uhaBtt5Udl .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhaBtt5Udl .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uhaBtt5Udl .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uhaBtt5Udl li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uhaBtt5Udl .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uhaBtt5Udl .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uhaBtt5Udl .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uhaBtt5Udl .nav-item {
    margin: 0 !important;
  }
}
.cid-uhaBtt5Udl .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uhaBtt5Udl .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uhaBtt5Udl .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uhaBtt5Udl .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uhaBtt5Udl .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uhaBtt5Udl .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uhaBtt5Udl .offcanvas_box {
    display: none;
  }
}
.cid-uhaBtt5Udl .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-uhaBtt5Udl .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uhaBtt5Udl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uhaBtt5Udl .container {
  display: flex;
  margin: auto;
}
.cid-uhaBtt5Udl .iconfont-wrapper {
  color: #684b44;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uhaBtt5Udl .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uhaBtt5Udl .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uhaBtt5Udl .navbar-caption {
  color: #747474;
}
.cid-uhaBtt5Udl .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uhaBtt5Udl .navbar-nav {
    margin: 0;
  }
}
.cid-uhaBtt5Udl .dropdown-menu,
.cid-uhaBtt5Udl .navbar.opened {
  background-color: false !important;
}
.cid-uhaBtt5Udl .nav-item:focus,
.cid-uhaBtt5Udl .nav-link:focus {
  outline: none;
}
.cid-uhaBtt5Udl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhaBtt5Udl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhaBtt5Udl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhaBtt5Udl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhaBtt5Udl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhaBtt5Udl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhaBtt5Udl .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
@media (max-width: 992px) {
  .cid-uhaBtt5Udl .navbar {
    min-height: 30px;
    max-height: 90px;
  }
}
.cid-uhaBtt5Udl .navbar.opened {
  transition: all 0.3s;
}
.cid-uhaBtt5Udl .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uhaBtt5Udl .navbar .navbar-logo img {
  max-width: 38px;
  max-height: 38px;
  object-fit: cover;
  border-radius: 100%;
}
.cid-uhaBtt5Udl .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uhaBtt5Udl .navbar.collapsed {
  justify-content: center;
}
.cid-uhaBtt5Udl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhaBtt5Udl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uhaBtt5Udl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhaBtt5Udl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhaBtt5Udl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhaBtt5Udl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uhaBtt5Udl .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhaBtt5Udl .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uhaBtt5Udl .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uhaBtt5Udl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhaBtt5Udl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhaBtt5Udl .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uhaBtt5Udl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhaBtt5Udl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uhaBtt5Udl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhaBtt5Udl .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uhaBtt5Udl .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uhaBtt5Udl .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uhaBtt5Udl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uhaBtt5Udl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhaBtt5Udl .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uhaBtt5Udl .navbar.navbar-short {
  min-height: 60px;
}
.cid-uhaBtt5Udl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhaBtt5Udl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhaBtt5Udl .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhaBtt5Udl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhaBtt5Udl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhaBtt5Udl .dropdown-item.active,
.cid-uhaBtt5Udl .dropdown-item:active {
  background-color: transparent;
}
.cid-uhaBtt5Udl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhaBtt5Udl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhaBtt5Udl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhaBtt5Udl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhaBtt5Udl ul.navbar-nav {
  flex-wrap: wrap;
  padding: 36px 0;
  border-bottom: 1px solid #684b44;
}
.cid-uhaBtt5Udl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhaBtt5Udl button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-uhaBtt5Udl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #684b44;
}
.cid-uhaBtt5Udl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhaBtt5Udl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhaBtt5Udl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhaBtt5Udl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhaBtt5Udl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhaBtt5Udl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhaBtt5Udl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhaBtt5Udl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhaBtt5Udl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uhaBtt5Udl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhaBtt5Udl .navbar {
    height: 70px;
  }
  .cid-uhaBtt5Udl .navbar.opened {
    height: auto;
  }
  .cid-uhaBtt5Udl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhaBtt5Udl .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uhaBtt5Udl .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-uhaBtt5Udl .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uhaBtt5Udl .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
.cid-uhaBtt5Udl .navbar-caption:hover {
  color: #232323;
}
@media (min-width: 992px) {
  .cid-uhaBtt5Udl .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uhaBtt5Udl .nav-link {
  position: relative;
}
.cid-uhaBtt5Udl .nav-link:before {
  content: '';
  position: absolute;
  left: -12px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #232323;
  transition: all .3s ease;
  opacity: 0;
}
.cid-uhaBtt5Udl .nav-link:hover:before {
  opacity: 1;
}
.cid-uhaBtt5Udl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uhaBtt5Udl .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uhaBtt5Udl .text_widget {
  color: #ffffff;
}
.cid-uhaBtt5Udl .mbr-section-subtitle,
.cid-uhaBtt5Udl .text_widget,
.cid-uhaBtt5Udl .mbr-section-btn {
  text-align: center;
}
.cid-uhaBtt5Udl a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uhaBttDthi {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/baby-fotografin-datenschutz-babybauch-familien-fotograf-fotostudio-bad-sachsa-duderstadt-harz-1280x960.jpg");
}
.cid-uhaBttDthi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhaBttDthi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhaBttDthi .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uhaBttDthi .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uhaBttDthi .container {
    padding: 0;
  }
}
.cid-uhaBttDthi .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uhaBttDthi .title-wrapper .title-wrap .mbr-box {
  width: 155px;
  height: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #684b44;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uhaBttDthi .title-wrapper .title-wrap .mbr-box {
    display: none;
  }
}
.cid-uhaBttDthi .title-wrapper .title-wrap .mbr-section-title {
  letter-spacing: 3.25px;
  padding: 0 16px;
  margin-bottom: 0;
}
.cid-uhaBttDthi .title-wrapper .mbr-section-btn {
  padding: 0 16px;
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-uhaBttDthi .title-wrapper .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-uhaBttDthi .mbr-section-title {
  color: #ffffff;
}
.cid-uhaBttDthi .mbr-box {
  color: #ffffff;
}
.cid-uhaBttDthi .mbr-section-btn {
  text-align: center;
}
.cid-uhaBttDthi .mbr-section-title,
.cid-uhaBttDthi .mbr-section-btn,
.cid-uhaBttDthi .title-wrapper {
  text-align: right;
}
.cid-uBFn8K3XJd {
  background-color: #ffffff;
}
.cid-uBFn8K3XJd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBFn8K3XJd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBFn8K3XJd .row {
  justify-content: center;
}
.cid-uBFn8K3XJd .nav.nav-tabs {
  display: flex;
  justify-content: center;
  border: none;
  margin-bottom: 0;
}
.cid-uBFn8K3XJd .nav.nav-tabs .nav-item {
  margin-right: 26px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uBFn8K3XJd .nav.nav-tabs .nav-item {
    margin-right: 0;
  }
}
.cid-uBFn8K3XJd .nav.nav-tabs .nav-item:last-child {
  margin-right: 0;
}
.cid-uBFn8K3XJd .nav.nav-tabs .nav-item .nav-link {
  padding: 0 25px 1px;
  color: #684b44;
  position: relative;
  border: none;
}
@media (max-width: 768px) {
  .cid-uBFn8K3XJd .nav.nav-tabs .nav-item .nav-link {
    text-align: center;
    display: flex;
    align-items: center;
  }
}
.cid-uBFn8K3XJd .nav.nav-tabs .nav-item .nav-link .mbr-iconfont {
  position: absolute;
  top: -0.5rem;
  left: -2rem;
  min-width: 36px;
  width: 36px;
  height: 36px;
  background-color: #684b44;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  opacity: 0;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-uBFn8K3XJd .nav.nav-tabs .nav-item .nav-link .mbr-iconfont {
    position: static;
  }
}
.cid-uBFn8K3XJd .nav.nav-tabs .nav-item .nav-link.active .mbr-iconfont {
  opacity: 1;
}
.cid-uBFn8K3XJd .tab-content {
  padding: 41px 60px 45px;
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
}
@media (max-width: 992px) {
  .cid-uBFn8K3XJd .tab-content {
    padding: 41px 32px 45px;
  }
}
.cid-uBFn8K3XJd .tab-content .tab-pane .mbr-text {
  margin-bottom: 0;
}
.cid-uBFn8K3XJd .mbr-text {
  color: #684b44;
  text-align: left;
}
.cid-uBFn8K3XJd H1 {
  color: #684b44;
}
.cid-uBFn8K3XJd H3 {
  color: #684b44;
}
.cid-uhaBtuBChh {
  background-image: url("../../../assets/images/features2.jpg");
}
.cid-uhaBtuBChh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhaBtuBChh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhaBtuBChh .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uhaBtuBChh .mbr-section-title {
  color: #E0BDB6;
  text-align: center;
}
.cid-uhaBtva8XZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uhaBtva8XZ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uhaBtva8XZ li {
  padding-bottom: 0.6rem;
}
.cid-uhaBtva8XZ .border-col {
  border-right: 1px solid #684b44;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uhaBtva8XZ .border-col {
    border: 0px;
  }
}
.cid-uhaBtva8XZ .container {
  position: relative;
}
.cid-uhaBtva8XZ .container:before {
  content: '';
  top: 0;
  width: 200%;
  height: 1px;
  background: #684b44;
  position: absolute;
  left: -50%;
}
.cid-uhaBtva8XZ .container:after {
  content: '';
  bottom: 0;
  width: 200%;
  height: 1px;
  background: #684b44;
  position: absolute;
  left: -50%;
}
.cid-uhaBtva8XZ .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-uhaBtva8XZ .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-uhaBtva8XZ .padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
  height: inherit;
}
@media (max-width: 992px) {
  .cid-uhaBtva8XZ .padding {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-uhaBtva8XZ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #684b44;
}
.cid-uhaBtva8XZ .soc-item:hover {
  background: #232323;
}
.cid-uhaBtva8XZ .soc-item .mbr-iconfont {
  color: #684b44;
}
@media (max-width: 767px) {
  .cid-uhaBtva8XZ .row {
    text-align: center;
  }
  .cid-uhaBtva8XZ .social-row {
    justify-content: center;
  }
}
.cid-uhaBtva8XZ .list {
  list-style: none;
  padding-left: 0;
}
.cid-uhaBtva8XZ .mbr-text {
  color: #684b44;
}
.cid-uhaBtva8XZ H5 {
  color: #ede6da;
}
.cid-uhaBtva8XZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhaBtva8XZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhaBtva8XZ .mbr-section-subtitle {
  color: #684b44;
}
#custom-html-p7 {
  /* Type valid CSS here */
}
#custom-html-p7 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-p7 p {
  font-size: 60px;
  color: #777;
}
.cid-uf6qf9aZAe .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uf6qf9aZAe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uf6qf9aZAe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uf6qf9aZAe .menu_box .navbar.opened,
  .cid-uf6qf9aZAe .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uf6qf9aZAe .navbar-dropdown {
  position: relative !important;
}
.cid-uf6qf9aZAe .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uf6qf9aZAe .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uf6qf9aZAe .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uf6qf9aZAe .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uf6qf9aZAe .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uf6qf9aZAe .offcanvas {
    padding: 12rem 80px 0;
    width: 50%;
    background-color: #e0bdb6;
  }
  .cid-uf6qf9aZAe .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uf6qf9aZAe .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uf6qf9aZAe .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uf6qf9aZAe .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uf6qf9aZAe .offcanvas-body .mbr-text,
  .cid-uf6qf9aZAe .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-uf6qf9aZAe .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-uf6qf9aZAe .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uf6qf9aZAe .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #684b44;
  }
  .cid-uf6qf9aZAe .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uf6qf9aZAe .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uf6qf9aZAe .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uf6qf9aZAe .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uf6qf9aZAe ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uf6qf9aZAe .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uf6qf9aZAe .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uf6qf9aZAe .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uf6qf9aZAe li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uf6qf9aZAe .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uf6qf9aZAe .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uf6qf9aZAe .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uf6qf9aZAe .nav-item {
    margin: 0 !important;
  }
}
.cid-uf6qf9aZAe .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uf6qf9aZAe .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uf6qf9aZAe .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uf6qf9aZAe .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uf6qf9aZAe .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uf6qf9aZAe .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uf6qf9aZAe .offcanvas_box {
    display: none;
  }
}
.cid-uf6qf9aZAe .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-uf6qf9aZAe .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uf6qf9aZAe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uf6qf9aZAe .container {
  display: flex;
  margin: auto;
}
.cid-uf6qf9aZAe .iconfont-wrapper {
  color: #684b44;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uf6qf9aZAe .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uf6qf9aZAe .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uf6qf9aZAe .navbar-caption {
  color: #747474;
}
.cid-uf6qf9aZAe .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uf6qf9aZAe .navbar-nav {
    margin: 0;
  }
}
.cid-uf6qf9aZAe .dropdown-menu,
.cid-uf6qf9aZAe .navbar.opened {
  background-color: false !important;
}
.cid-uf6qf9aZAe .nav-item:focus,
.cid-uf6qf9aZAe .nav-link:focus {
  outline: none;
}
.cid-uf6qf9aZAe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uf6qf9aZAe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uf6qf9aZAe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uf6qf9aZAe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uf6qf9aZAe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uf6qf9aZAe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uf6qf9aZAe .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
@media (max-width: 992px) {
  .cid-uf6qf9aZAe .navbar {
    min-height: 30px;
    max-height: 90px;
  }
}
.cid-uf6qf9aZAe .navbar.opened {
  transition: all 0.3s;
}
.cid-uf6qf9aZAe .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uf6qf9aZAe .navbar .navbar-logo img {
  max-width: 38px;
  max-height: 38px;
  object-fit: cover;
  border-radius: 100%;
}
.cid-uf6qf9aZAe .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uf6qf9aZAe .navbar.collapsed {
  justify-content: center;
}
.cid-uf6qf9aZAe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uf6qf9aZAe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uf6qf9aZAe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uf6qf9aZAe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uf6qf9aZAe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uf6qf9aZAe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uf6qf9aZAe .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uf6qf9aZAe .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uf6qf9aZAe .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uf6qf9aZAe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uf6qf9aZAe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uf6qf9aZAe .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uf6qf9aZAe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uf6qf9aZAe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uf6qf9aZAe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uf6qf9aZAe .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uf6qf9aZAe .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uf6qf9aZAe .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uf6qf9aZAe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uf6qf9aZAe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uf6qf9aZAe .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uf6qf9aZAe .navbar.navbar-short {
  min-height: 60px;
}
.cid-uf6qf9aZAe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uf6qf9aZAe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uf6qf9aZAe .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uf6qf9aZAe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uf6qf9aZAe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uf6qf9aZAe .dropdown-item.active,
.cid-uf6qf9aZAe .dropdown-item:active {
  background-color: transparent;
}
.cid-uf6qf9aZAe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uf6qf9aZAe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uf6qf9aZAe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uf6qf9aZAe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uf6qf9aZAe ul.navbar-nav {
  flex-wrap: wrap;
  padding: 36px 0;
  border-bottom: 1px solid #684b44;
}
.cid-uf6qf9aZAe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uf6qf9aZAe button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-uf6qf9aZAe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #684b44;
}
.cid-uf6qf9aZAe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uf6qf9aZAe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uf6qf9aZAe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uf6qf9aZAe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uf6qf9aZAe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uf6qf9aZAe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uf6qf9aZAe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uf6qf9aZAe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uf6qf9aZAe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uf6qf9aZAe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uf6qf9aZAe .navbar {
    height: 70px;
  }
  .cid-uf6qf9aZAe .navbar.opened {
    height: auto;
  }
  .cid-uf6qf9aZAe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uf6qf9aZAe .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uf6qf9aZAe .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-uf6qf9aZAe .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uf6qf9aZAe .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
.cid-uf6qf9aZAe .navbar-caption:hover {
  color: #232323;
}
@media (min-width: 992px) {
  .cid-uf6qf9aZAe .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uf6qf9aZAe .nav-link {
  position: relative;
}
.cid-uf6qf9aZAe .nav-link:before {
  content: '';
  position: absolute;
  left: -12px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #232323;
  transition: all .3s ease;
  opacity: 0;
}
.cid-uf6qf9aZAe .nav-link:hover:before {
  opacity: 1;
}
.cid-uf6qf9aZAe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uf6qf9aZAe .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uf6qf9aZAe .text_widget {
  color: #ffffff;
}
.cid-uf6qf9aZAe .mbr-section-subtitle,
.cid-uf6qf9aZAe .text_widget,
.cid-uf6qf9aZAe .mbr-section-btn {
  text-align: center;
}
.cid-uf6qf9aZAe a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uf6qf9yeIY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uf6qf9yeIY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uf6qf9yeIY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uf6qf9yeIY .row {
  justify-content: center;
}
.cid-uf6qf9yeIY .nav.nav-tabs {
  display: flex;
  justify-content: center;
  border: none;
  margin-bottom: 0;
}
.cid-uf6qf9yeIY .nav.nav-tabs .nav-item {
  margin-right: 26px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uf6qf9yeIY .nav.nav-tabs .nav-item {
    margin-right: 0;
  }
}
.cid-uf6qf9yeIY .nav.nav-tabs .nav-item:last-child {
  margin-right: 0;
}
.cid-uf6qf9yeIY .nav.nav-tabs .nav-item .nav-link {
  padding: 0 25px 1px;
  color: #684b44;
  position: relative;
  border: none;
}
@media (max-width: 768px) {
  .cid-uf6qf9yeIY .nav.nav-tabs .nav-item .nav-link {
    text-align: center;
    display: flex;
    align-items: center;
  }
}
.cid-uf6qf9yeIY .nav.nav-tabs .nav-item .nav-link .mbr-iconfont {
  position: absolute;
  top: -0.5rem;
  left: -2rem;
  min-width: 36px;
  width: 36px;
  height: 36px;
  background-color: #684b44;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  opacity: 0;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-uf6qf9yeIY .nav.nav-tabs .nav-item .nav-link .mbr-iconfont {
    position: static;
  }
}
.cid-uf6qf9yeIY .nav.nav-tabs .nav-item .nav-link.active .mbr-iconfont {
  opacity: 1;
}
.cid-uf6qf9yeIY .tab-content {
  padding: 41px 60px 45px;
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
}
@media (max-width: 992px) {
  .cid-uf6qf9yeIY .tab-content {
    padding: 41px 32px 45px;
  }
}
.cid-uf6qf9yeIY .tab-content .tab-pane .mbr-text {
  margin-bottom: 0;
}
.cid-uf6qf9yeIY .mbr-text {
  color: #684b44;
  text-align: center;
}
.cid-uf6qf9MQjJ {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/features2.jpg");
}
.cid-uf6qf9MQjJ .mbr-overlay {
  background-color: #747474;
  opacity: 0.4;
}
.cid-uf6qf9MQjJ .form-control,
.cid-uf6qf9MQjJ .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uf6qf9MQjJ .form-control::-webkit-input-placeholder,
.cid-uf6qf9MQjJ .field-input::-webkit-input-placeholder,
.cid-uf6qf9MQjJ .form-control::-webkit-input-placeholder,
.cid-uf6qf9MQjJ .field-input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-uf6qf9MQjJ .form-control:-moz-placeholder,
.cid-uf6qf9MQjJ .field-input:-moz-placeholder,
.cid-uf6qf9MQjJ .form-control:-moz-placeholder,
.cid-uf6qf9MQjJ .field-input:-moz-placeholder {
  color: #c1c1c1;
}
.cid-uf6qf9MQjJ .form-control:hover,
.cid-uf6qf9MQjJ .field-input:hover,
.cid-uf6qf9MQjJ .form-control:focus,
.cid-uf6qf9MQjJ .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-uf6qf9MQjJ .form-control:hover::-webkit-input-placeholder,
.cid-uf6qf9MQjJ .field-input:hover::-webkit-input-placeholder,
.cid-uf6qf9MQjJ .form-control:focus::-webkit-input-placeholder,
.cid-uf6qf9MQjJ .field-input:focus::-webkit-input-placeholder,
.cid-uf6qf9MQjJ .form-control:hover::-webkit-input-placeholder,
.cid-uf6qf9MQjJ .field-input:hover::-webkit-input-placeholder,
.cid-uf6qf9MQjJ .form-control:focus::-webkit-input-placeholder,
.cid-uf6qf9MQjJ .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-uf6qf9MQjJ .form-control:hover:-moz-placeholder,
.cid-uf6qf9MQjJ .field-input:hover:-moz-placeholder,
.cid-uf6qf9MQjJ .form-control:focus:-moz-placeholder,
.cid-uf6qf9MQjJ .field-input:focus:-moz-placeholder,
.cid-uf6qf9MQjJ .form-control:hover:-moz-placeholder,
.cid-uf6qf9MQjJ .field-input:hover:-moz-placeholder,
.cid-uf6qf9MQjJ .form-control:focus:-moz-placeholder,
.cid-uf6qf9MQjJ .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-uf6qf9MQjJ .jq-number__spin:hover,
.cid-uf6qf9MQjJ .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uf6qf9MQjJ .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uf6qf9MQjJ .jq-selectbox li,
.cid-uf6qf9MQjJ .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uf6qf9MQjJ .jq-selectbox li:hover,
.cid-uf6qf9MQjJ .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-uf6qf9MQjJ .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uf6qf9MQjJ .jq-number__spin.minus:hover:after,
.cid-uf6qf9MQjJ .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uf6qf9MQjJ .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uf6qf9MQjJ .jq-number__spin.minus:after,
.cid-uf6qf9MQjJ .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-uf6qf9MQjJ input::-webkit-clear-button {
  display: none;
}
.cid-uf6qf9MQjJ input::-webkit-inner-spin-button {
  display: none;
}
.cid-uf6qf9MQjJ input::-webkit-outer-spin-button {
  display: none;
}
.cid-uf6qf9MQjJ input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uf6qf9MQjJ LABEL {
  color: #ffffff;
}
.cid-uf6qf9MQjJ H4 {
  color: #ffffff;
}
.cid-uf6qfa7jPC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uf6qfa7jPC .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uf6qfa7jPC li {
  padding-bottom: 0.6rem;
}
.cid-uf6qfa7jPC .border-col {
  border-right: 1px solid #684b44;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uf6qfa7jPC .border-col {
    border: 0px;
  }
}
.cid-uf6qfa7jPC .container {
  position: relative;
}
.cid-uf6qfa7jPC .container:before {
  content: '';
  top: 0;
  width: 200%;
  height: 1px;
  background: #684b44;
  position: absolute;
  left: -50%;
}
.cid-uf6qfa7jPC .container:after {
  content: '';
  bottom: 0;
  width: 200%;
  height: 1px;
  background: #684b44;
  position: absolute;
  left: -50%;
}
.cid-uf6qfa7jPC .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-uf6qfa7jPC .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-uf6qfa7jPC .padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
  height: inherit;
}
@media (max-width: 992px) {
  .cid-uf6qfa7jPC .padding {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-uf6qfa7jPC .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #684b44;
}
.cid-uf6qfa7jPC .soc-item:hover {
  background: #232323;
}
.cid-uf6qfa7jPC .soc-item .mbr-iconfont {
  color: #684b44;
}
@media (max-width: 767px) {
  .cid-uf6qfa7jPC .row {
    text-align: center;
  }
  .cid-uf6qfa7jPC .social-row {
    justify-content: center;
  }
}
.cid-uf6qfa7jPC .list {
  list-style: none;
  padding-left: 0;
}
.cid-uf6qfa7jPC .mbr-text {
  color: #684b44;
}
.cid-uf6qfa7jPC H5 {
  color: #ede6da;
}
.cid-uf6qfa7jPC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uf6qfa7jPC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uf6qfa7jPC .mbr-section-subtitle {
  color: #684b44;
}
#custom-html-p5 {
  /* Type valid CSS here */
}
#custom-html-p5 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-p5 p {
  font-size: 60px;
  color: #777;
}
.cid-uQQdFWplx3 .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uQQdFWplx3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uQQdFWplx3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uQQdFWplx3 .menu_box .navbar.opened,
  .cid-uQQdFWplx3 .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uQQdFWplx3 .navbar-dropdown {
  position: relative !important;
}
.cid-uQQdFWplx3 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uQQdFWplx3 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uQQdFWplx3 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uQQdFWplx3 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uQQdFWplx3 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uQQdFWplx3 .offcanvas {
    padding: 12rem 80px 0;
    width: 50%;
    background-color: #e0bdb6;
  }
  .cid-uQQdFWplx3 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uQQdFWplx3 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uQQdFWplx3 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uQQdFWplx3 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uQQdFWplx3 .offcanvas-body .mbr-text,
  .cid-uQQdFWplx3 .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-uQQdFWplx3 .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-uQQdFWplx3 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uQQdFWplx3 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #684b44;
  }
  .cid-uQQdFWplx3 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uQQdFWplx3 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uQQdFWplx3 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uQQdFWplx3 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uQQdFWplx3 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uQQdFWplx3 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uQQdFWplx3 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uQQdFWplx3 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uQQdFWplx3 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uQQdFWplx3 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-uQQdFWplx3 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uQQdFWplx3 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uQQdFWplx3 .nav-item {
    margin: 0 !important;
  }
}
.cid-uQQdFWplx3 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uQQdFWplx3 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uQQdFWplx3 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uQQdFWplx3 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uQQdFWplx3 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uQQdFWplx3 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uQQdFWplx3 .offcanvas_box {
    display: none;
  }
}
.cid-uQQdFWplx3 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-uQQdFWplx3 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uQQdFWplx3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uQQdFWplx3 .container {
  display: flex;
  margin: auto;
}
.cid-uQQdFWplx3 .iconfont-wrapper {
  color: #684b44;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uQQdFWplx3 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uQQdFWplx3 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uQQdFWplx3 .navbar-caption {
  color: #747474;
}
.cid-uQQdFWplx3 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uQQdFWplx3 .navbar-nav {
    margin: 0;
  }
}
.cid-uQQdFWplx3 .dropdown-menu,
.cid-uQQdFWplx3 .navbar.opened {
  background-color: false !important;
}
.cid-uQQdFWplx3 .nav-item:focus,
.cid-uQQdFWplx3 .nav-link:focus {
  outline: none;
}
.cid-uQQdFWplx3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uQQdFWplx3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQQdFWplx3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uQQdFWplx3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQQdFWplx3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQQdFWplx3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQQdFWplx3 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0px;
}
@media (max-width: 992px) {
  .cid-uQQdFWplx3 .navbar {
    min-height: 30px;
    max-height: 90px;
  }
}
.cid-uQQdFWplx3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uQQdFWplx3 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uQQdFWplx3 .navbar .navbar-logo img {
  max-width: 38px;
  max-height: 38px;
  object-fit: cover;
  border-radius: 100%;
}
.cid-uQQdFWplx3 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uQQdFWplx3 .navbar.collapsed {
  justify-content: center;
}
.cid-uQQdFWplx3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQQdFWplx3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQQdFWplx3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQQdFWplx3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQQdFWplx3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQQdFWplx3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uQQdFWplx3 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uQQdFWplx3 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uQQdFWplx3 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uQQdFWplx3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQQdFWplx3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQQdFWplx3 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uQQdFWplx3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQQdFWplx3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uQQdFWplx3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uQQdFWplx3 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uQQdFWplx3 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uQQdFWplx3 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uQQdFWplx3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQQdFWplx3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQQdFWplx3 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uQQdFWplx3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uQQdFWplx3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uQQdFWplx3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uQQdFWplx3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQQdFWplx3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQQdFWplx3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQQdFWplx3 .dropdown-item.active,
.cid-uQQdFWplx3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uQQdFWplx3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQQdFWplx3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQQdFWplx3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQQdFWplx3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQQdFWplx3 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 36px 0;
  border-bottom: 1px solid #684b44;
}
.cid-uQQdFWplx3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uQQdFWplx3 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-uQQdFWplx3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #684b44;
}
.cid-uQQdFWplx3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQQdFWplx3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQQdFWplx3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQQdFWplx3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQQdFWplx3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQQdFWplx3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQQdFWplx3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQQdFWplx3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQQdFWplx3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uQQdFWplx3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQQdFWplx3 .navbar {
    height: 70px;
  }
  .cid-uQQdFWplx3 .navbar.opened {
    height: auto;
  }
  .cid-uQQdFWplx3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQQdFWplx3 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uQQdFWplx3 .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-uQQdFWplx3 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uQQdFWplx3 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
.cid-uQQdFWplx3 .navbar-caption:hover {
  color: #232323;
}
@media (min-width: 992px) {
  .cid-uQQdFWplx3 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uQQdFWplx3 .nav-link {
  position: relative;
}
.cid-uQQdFWplx3 .nav-link:before {
  content: '';
  position: absolute;
  left: -12px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #232323;
  transition: all .3s ease;
  opacity: 0;
}
.cid-uQQdFWplx3 .nav-link:hover:before {
  opacity: 1;
}
.cid-uQQdFWplx3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uQQdFWplx3 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uQQdFWplx3 .text_widget {
  color: #ffffff;
}
.cid-uQQdFWplx3 .mbr-section-subtitle,
.cid-uQQdFWplx3 .text_widget,
.cid-uQQdFWplx3 .mbr-section-btn {
  text-align: center;
}
.cid-uQQdFWplx3 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uRturlTZUN {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uRturlTZUN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRturlTZUN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRturlTZUN .mbr-section-title {
  color: #102a23;
  margin-bottom: 0;
}
.cid-uRturlTZUN .mbr-section-title a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-uRturlTZUN .mbr-section-subtitle {
  color: #102a23;
  margin-bottom: 0;
  margin-top: 1.5rem;
}
.cid-uRturlTZUN .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uRu3cWrqEy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uRu3cWrqEy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRu3cWrqEy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRu3cWrqEy .items-wrapper {
  justify-content: center;
  margin: 0 -40px;
}
.cid-uRu3cWrqEy .items-wrapper .item {
  padding: 0 40px;
}
.cid-uRu3cWrqEy .item {
  margin-bottom: 40px;
}
.cid-uRu3cWrqEy .item .item-wrapper .item-content .title-wrapper {
  margin-bottom: 10px;
}
.cid-uRu3cWrqEy .item .item-wrapper .item-content .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uRu3cWrqEy .item .item-wrapper .item-content .title-wrapper .title-wrap .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 20px;
  color: #19171c;
  margin-right: 10px;
}
.cid-uRu3cWrqEy .item .item-wrapper .item-content .title-wrapper .title-wrap .item-title {
  margin-bottom: 0;
}
.cid-uRu3cWrqEy .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-uRu3cWrqEy .item .item-wrapper .item-content .mbr-section-btn {
  margin-top: 10px;
}
.cid-uRu3cWrqEy .item-title {
  color: #19171c;
}
.cid-uRu3cWrqEy .item-text {
  color: #6e6e73;
}
.cid-uRu3cWrqEy .item-text,
.cid-uRu3cWrqEy .mbr-section-btn {
  color: #747474;
}
.cid-uR2yl66iKA {
  z-index: 1;
}
.cid-uRucf5PPVu {
  padding-top: 0px;
  padding-bottom: 135px;
  background-color: #ffffff;
}
.cid-uRucf5PPVu .mbr-shop {
  display: table;
  width: 100%;
}
.cid-uRucf5PPVu .mbr-shop .row {
  margin: 0;
}
.cid-uRucf5PPVu .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-uRucf5PPVu .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-uRucf5PPVu .mbr-shop .sidebar-title {
  line-height: 25px;
  margin-bottom: 1.8rem;
}
.cid-uRucf5PPVu .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-uRucf5PPVu .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-uRucf5PPVu .mbr-shop .image-modal {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-uRucf5PPVu .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-uRucf5PPVu .mbr-shop .hide-modal {
  display: none;
}
.cid-uRucf5PPVu .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-uRucf5PPVu .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-uRucf5PPVu .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-uRucf5PPVu .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-uRucf5PPVu .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-uRucf5PPVu .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-uRucf5PPVu .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-uRucf5PPVu .mbr-shop .filter-by-pu,
.cid-uRucf5PPVu .mbr-shop .filter-by-pd,
.cid-uRucf5PPVu .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-uRucf5PPVu .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-uRucf5PPVu .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-uRucf5PPVu .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-uRucf5PPVu .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 15px;
  width: 33%;
}
.cid-uRucf5PPVu .mbr-shop .galleryItem h4,
.cid-uRucf5PPVu .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-uRucf5PPVu .mbr-shop .galleryItem h5,
.cid-uRucf5PPVu .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-uRucf5PPVu .mbr-shop .galleryItem p,
.cid-uRucf5PPVu .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-uRucf5PPVu .mbr-shop .item-button {
  text-align: center;
}
.cid-uRucf5PPVu .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-uRucf5PPVu .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-uRucf5PPVu .mbr-shop .sidebar {
  margin-bottom: 30px;
  position: relative;
}
.cid-uRucf5PPVu .mbr-shop .sidebar-block {
  position: relative;
}
.cid-uRucf5PPVu .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: #ffffff;
  top: -20px;
  right: 3px;
}
.cid-uRucf5PPVu .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-uRucf5PPVu .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-uRucf5PPVu .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-uRucf5PPVu .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-uRucf5PPVu .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-uRucf5PPVu .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
}
.cid-uRucf5PPVu .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-uRucf5PPVu .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-uRucf5PPVu .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-uRucf5PPVu .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-uRucf5PPVu .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-uRucf5PPVu .mbr-shop .onsale {
  position: absolute;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  top: 30px;
  left: 30px;
  line-height: 17px;
  padding: 5px 15px 5px;
  background: #db2525;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
  color: #ffffff;
}
.cid-uRucf5PPVu .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-uRucf5PPVu .mbr-shop .mbr-gallery-item__hided h4,
.cid-uRucf5PPVu .mbr-shop .mbr-gallery-item__hided h5,
.cid-uRucf5PPVu .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-uRucf5PPVu .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-uRucf5PPVu .mbr-shop .galleryItem .price-block {
  display: block;
}
.cid-uRucf5PPVu .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-uRucf5PPVu .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-uRucf5PPVu .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-uRucf5PPVu .mbr-shop .mbr-gallery-filter ul li:hover {
  background-color: transparent;
}
.cid-uRucf5PPVu .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-uRucf5PPVu .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 100%;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-uRucf5PPVu .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-uRucf5PPVu .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 10px;
  border-radius: 2px;
  font-size: 0;
}
.cid-uRucf5PPVu .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-uRucf5PPVu .mbr-shop .price-controls input {
  width: 100%;
  background-color: transparent;
  border: none;
  line-height: 31px;
  height: 31px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-uRucf5PPVu .min-price input {
  text-align: left;
}
.cid-uRucf5PPVu .max-price input {
  text-align: right;
}
.cid-uRucf5PPVu .mbr-shop .range-controls {
  position: relative;
}
.cid-uRucf5PPVu .mbr-shop .range-controls .scale {
  width: 100%;
  height: 5px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-uRucf5PPVu .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 5px;
  background-color: #232323;
}
.cid-uRucf5PPVu .mbr-shop .toggle {
  -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
  position: absolute;
  top: -9px;
  width: 7px;
  height: 7px;
  border: 8px solid #ffffff;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #232323;
  cursor: pointer;
}
.cid-uRucf5PPVu .mbr-shop .toggle:hover,
.cid-uRucf5PPVu .mbr-shop .toggle:active {
  background-color: #ffffff;
}
.cid-uRucf5PPVu .mbr-shop .min-toggle {
  left: 0;
}
.cid-uRucf5PPVu .mbr-shop .max-toggle {
  right: 0;
}
.cid-uRucf5PPVu .mbr-shop .hided-by-price {
  display: none;
}
.cid-uRucf5PPVu .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-uRucf5PPVu .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-uRucf5PPVu .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uRucf5PPVu .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-uRucf5PPVu .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-uRucf5PPVu .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-uRucf5PPVu .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-uRucf5PPVu .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-uRucf5PPVu .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-uRucf5PPVu .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-uRucf5PPVu .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-uRucf5PPVu .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-uRucf5PPVu .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-uRucf5PPVu .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
  padding-bottom: 15px;
}
.cid-uRucf5PPVu .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-uRucf5PPVu .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-uRucf5PPVu .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-uRucf5PPVu .mbr-shop .price-range {
  display: none;
}
.cid-uRucf5PPVu .mbr-shop .price-range-reset {
  display: none;
}
.cid-uRucf5PPVu .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-uRucf5PPVu .mbr-shop .range-slider h4 {
  margin-bottom: 1.8rem;
}
.cid-uRucf5PPVu .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-uRucf5PPVu .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-uRucf5PPVu .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-uRucf5PPVu .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-uRucf5PPVu .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-uRucf5PPVu .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-uRucf5PPVu .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-uRucf5PPVu .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-uRucf5PPVu .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-uRucf5PPVu .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-uRucf5PPVu .mbr-shop .price-range {
    max-width: 100%;
    text-align: center;
  }
  .cid-uRucf5PPVu .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uRucf5PPVu .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-uRucf5PPVu .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-uRucf5PPVu .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-uRucf5PPVu .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-uRucf5PPVu .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
  .cid-uRucf5PPVu .wrapper-shop-items {
    order: 1;
  }
}
@media (max-width: 767px) {
  .cid-uRucf5PPVu .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-uRucf5PPVu .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-uRucf5PPVu .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-uRucf5PPVu .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-uRucf5PPVu .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-uRucf5PPVu .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-uRucf5PPVu .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-uRucf5PPVu .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-uRucf5PPVu .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-uRucf5PPVu .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-uRucf5PPVu .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-uRucf5PPVu .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-uRucf5PPVu .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-uRucf5PPVu .oldprice {
  color: #767676;
  padding-left: .8rem !important;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uRucf5PPVu .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-uRucf5PPVu .mbr-gallery-item .sidebar_wraper {
  background-color: #ede8d0;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uRucf5PPVu .sidebar .sidebar_wraper {
  background-color: #ffffff;
}
.cid-uRucf5PPVu .mbr-gallery-item .price-block {
  text-align: left;
}
.cid-uRucf5PPVu .big-container {
  max-width: 1326px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uRucf5PPVu .mbr-shop .mbr-gallery-filter ul li {
  padding: 7px 16px 5px;
  margin: 4px 8px 4px 0;
  border: 1px solid;
  border-radius: 100px;
}
.cid-uRucf5PPVu .mbr-shop .mbr-gallery-filter ul li .btn {
  border: none;
  margin: 0 !important;
  padding: 0;
  background-color: transparent !important;
  color: inherit !important;
  font-weight: 400;
}
.cid-uRucf5PPVu .mbr-shop .mbr-gallery-filter ul li li.active .btn {
  font-weight: bold;
}
.cid-uRucf5PPVu .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  font-weight: 700;
}
.cid-uRucf5PPVu .sidebar {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uRucf5PPVu .sidebar .container {
  padding-left: 0px;
  padding-right: 0px;
}
.cid-uRucf5PPVu .range-slider {
  -webkit-order: 1;
  order: 1;
}
.cid-uRucf5PPVu .sidebar-categories {
  -webkit-order: 2;
  order: 2;
}
.cid-uRucf5PPVu .bestseller-block {
  -webkit-order: 3;
  order: 3;
}
.cid-uRucf5PPVu .categories {
  padding: 0;
}
.cid-uRucf5PPVu .sidebar-title {
  font-weight: bold;
}
.cid-uQQdFXoLPz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uQQdFXoLPz .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uQQdFXoLPz li {
  padding-bottom: 0.6rem;
}
.cid-uQQdFXoLPz .border-col {
  border-right: 1px solid #684b44;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uQQdFXoLPz .border-col {
    border: 0px;
  }
}
.cid-uQQdFXoLPz .container {
  position: relative;
}
.cid-uQQdFXoLPz .container:before {
  content: '';
  top: 0;
  width: 200%;
  height: 1px;
  background: #684b44;
  position: absolute;
  left: -50%;
}
.cid-uQQdFXoLPz .container:after {
  content: '';
  bottom: 0;
  width: 200%;
  height: 1px;
  background: #684b44;
  position: absolute;
  left: -50%;
}
.cid-uQQdFXoLPz .padding-col {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-uQQdFXoLPz .padding-col {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-uQQdFXoLPz .padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
  height: inherit;
}
@media (max-width: 992px) {
  .cid-uQQdFXoLPz .padding {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-uQQdFXoLPz .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  padding: 0.8rem;
  height: 3rem;
  width: 3rem;
  border: 1px solid #684b44;
}
.cid-uQQdFXoLPz .soc-item:hover {
  background: #232323;
}
.cid-uQQdFXoLPz .soc-item .mbr-iconfont {
  color: #684b44;
}
@media (max-width: 767px) {
  .cid-uQQdFXoLPz .row {
    text-align: center;
  }
  .cid-uQQdFXoLPz .social-row {
    justify-content: center;
  }
}
.cid-uQQdFXoLPz .list {
  list-style: none;
  padding-left: 0;
}
.cid-uQQdFXoLPz .mbr-text {
  color: #684b44;
}
.cid-uQQdFXoLPz H5 {
  color: #ede6da;
}
.cid-uQQdFXoLPz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQdFXoLPz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQQdFXoLPz .mbr-section-subtitle {
  color: #684b44;
}
#custom-html-pi {
  /* Type valid CSS here */
}
#custom-html-pi div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-pi p {
  font-size: 60px;
  color: #777;
}
.cid-uRufHUWYZl.popup-builder {
  background-color: #ffffff;
}
.cid-uRufHUWYZl.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uRufHUWYZl.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uRufHUWYZl .modal-content,
.cid-uRufHUWYZl .modal-dialog {
  height: auto;
}
.cid-uRufHUWYZl .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uRufHUWYZl .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uRufHUWYZl .form-wrapper .mbr-form .form-group,
  .cid-uRufHUWYZl .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uRufHUWYZl .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uRufHUWYZl .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uRufHUWYZl .mbr-text {
  text-align: center;
}
.cid-uRufHUWYZl .pt-0 {
  padding-top: 0 !important;
}
.cid-uRufHUWYZl .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uRufHUWYZl .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uRufHUWYZl .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uRufHUWYZl .modal-open {
  overflow: hidden;
}
.cid-uRufHUWYZl .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uRufHUWYZl .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uRufHUWYZl .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uRufHUWYZl .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uRufHUWYZl .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uRufHUWYZl .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uRufHUWYZl .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uRufHUWYZl .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uRufHUWYZl .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uRufHUWYZl .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uRufHUWYZl .modal-backdrop.fade {
  opacity: 0;
}
.cid-uRufHUWYZl .modal-backdrop.show {
  opacity: .5;
}
.cid-uRufHUWYZl .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uRufHUWYZl .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uRufHUWYZl .modal-header {
    padding: 1rem;
  }
}
.cid-uRufHUWYZl .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uRufHUWYZl .modal-header .close svg {
  fill: #353535;
}
.cid-uRufHUWYZl .modal-header .close:hover {
  opacity: 1;
}
.cid-uRufHUWYZl .modal-header .close:focus {
  outline: none;
}
.cid-uRufHUWYZl .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uRufHUWYZl .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uRufHUWYZl .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRufHUWYZl .modal-body {
    padding: 1rem;
  }
}
.cid-uRufHUWYZl .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uRufHUWYZl .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRufHUWYZl .modal-footer {
    padding: 1rem;
  }
}
.cid-uRufHUWYZl .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uRufHUWYZl .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uRufHUWYZl .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uRufHUWYZl .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uRufHUWYZl .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uRufHUWYZl .modal-lg,
  .cid-uRufHUWYZl .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uRufHUWYZl .modal-xl {
    max-width: 1140px;
  }
}
.cid-uRufHUWYZl .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uRufHUWYZl .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uRufHUWYZl .form-group {
  margin-bottom: 1rem;
}
.cid-uRufHUWYZl .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uRufHUWYZl .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uRufHUWYZl .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uRufHUWYZl .mbr-section-btn {
  margin: 0;
}
.cid-uRufHUWYZl .mbr-section-btn .btn {
  margin: 0;
}
