body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 3.3rem;
  line-height: 1;
  letter-spacing: -0.67px;
  font-weight: 400;
}
.display-1 > .mbr-iconfont {
  font-size: 4.125rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.2rem;
  line-height: 1.05;
  letter-spacing: -0.58px;
  font-weight: 400;
}
.display-2 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.68;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.38px;
  font-weight: 400;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.68;
  font-weight: 400;
}
.display-7 > .mbr-iconfont {
  font-size: 1.125rem;
}
/* ---- 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: 2.64rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.31rem;
    font-size: calc( 1.805rem + (3.3 - 1.805) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.805rem + (3.3 - 1.805) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
@keyframes scale-in {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@keyframes scale-out {
  0% {
    transform: scaleX(1);
    transform-origin: right;
  }
  to {
    transform: scaleX(0);
    transform-origin: right;
  }
}
.btn {
  padding: 1rem 2rem;
  border-radius: 0;
}
.btn-sm {
  padding: 0.75rem 1rem;
  border-radius: 0;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 0;
}
.btn-lg {
  padding: 1rem 2rem;
  border-radius: 0;
}
.bg-primary {
  background-color: #a26a38 !important;
}
.btn-secondary {
  background-color: #a26a38 !important;
}
.bg-success {
  background-color: #c79364 !important;
}
.bg-info {
  background-color: #a26a38 !important;
}
.bg-warning {
  background-color: #ddb693 !important;
}
.bg-danger {
  background-color: #a26a38 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #a26a38 !important;
  border-color: #a26a38 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  background: #a26a38 !important;
  color: #ffffff !important;
  border-color: #a26a38 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #a26a38 !important;
  border-color: #a26a38 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #a26a38 !important;
  border-color: #a26a38 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  background: #ddb693 !important;
  color: #ffffff !important;
  border-color: #ddb693 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ddb693 !important;
  border-color: #ddb693 !important;
}
.btn-info,
.btn-info:active {
  background-color: #a26a38 !important;
  border-color: #a26a38 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  background: #a26a38 !important;
  color: #ffffff !important;
  border-color: #a26a38 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a26a38 !important;
  border-color: #a26a38 !important;
}
.btn-success,
.btn-success:active {
  background-color: #c79364 !important;
  border-color: #c79364 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  background: #a26a38 !important;
  color: #ffffff !important;
  border-color: #a26a38 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #a26a38 !important;
  border-color: #a26a38 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ddb693 !important;
  border-color: #ddb693 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  background: #c79364 !important;
  color: #ffffff !important;
  border-color: #c79364 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #c79364 !important;
  border-color: #c79364 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #a26a38 !important;
  border-color: #a26a38 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  background: #c79364 !important;
  color: #ffffff !important;
  border-color: #c79364 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #c79364 !important;
  border-color: #c79364 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black,
.btn-black:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  background: #ffffff !important;
  color: #333333 !important;
  border-color: #ffffff !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #a26a38;
  color: #a26a38;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff !important;
  background-color: #a26a38 !important;
  border-color: #a26a38 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #a26a38 !important;
  border-color: #a26a38 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #a26a38;
  color: #a26a38;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff !important;
  background-color: #a26a38 !important;
  border-color: #a26a38 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #a26a38 !important;
  border-color: #a26a38 !important;
}
.btn-info-outline {
  color: #a26a38 !important;
  background: transparent !important;
  border: 0 !important;
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  padding-bottom: .25rem !important;
  position: relative;
  font-weight: 500 !important;
  transition: color 0.25s cubic-bezier(0.28, 0.44, 0.49, 1);
}
.btn-info-outline:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  will-change: transform;
  background-color: #a26a38;
}
.btn-info-outline:hover {
  background-color: transparent !important;
  color: #ddb693 !important;
}
.btn-info-outline:active {
  outline: none;
}
.btn-info-outline:hover:after {
  background-color: #ddb693;
  animation: scale-out 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0s forwards, scale-in 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0.25s forwards;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #c79364;
  color: #c79364;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff !important;
  background-color: #c79364 !important;
  border-color: #c79364 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #c79364 !important;
  border-color: #c79364 !important;
}
.btn-warning-outline {
  color: #ddb693 !important;
  background: transparent !important;
  border: 0 !important;
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  padding-bottom: .25rem !important;
  position: relative;
  font-weight: 500 !important;
  transition: color 0.25s cubic-bezier(0.28, 0.44, 0.49, 1);
}
.btn-warning-outline:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  will-change: transform;
  background-color: #ddb693;
}
.btn-warning-outline:hover {
  background-color: transparent !important;
  color: #a26a38 !important;
}
.btn-warning-outline:active {
  outline: none;
}
.btn-warning-outline:hover:after {
  background-color: #a26a38;
  animation: scale-out 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0s forwards, scale-in 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0.25s forwards;
}
.btn-danger-outline {
  color: #a26a38 !important;
  background: transparent !important;
  border: 0 !important;
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  padding-bottom: .25rem !important;
  position: relative;
  font-weight: 500 !important;
  transition: color 0.25s cubic-bezier(0.28, 0.44, 0.49, 1);
}
.btn-danger-outline:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  will-change: transform;
  background-color: #a26a38;
}
.btn-danger-outline:hover {
  background-color: transparent !important;
  color: #a26a38 !important;
}
.btn-danger-outline:active {
  outline: none;
}
.btn-danger-outline:hover:after {
  background-color: #a26a38;
  animation: scale-out 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0s forwards, scale-in 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0.25s forwards;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background-color: transparent;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #000000;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #a26a38 !important;
}
.text-secondary {
  color: #a26a38 !important;
}
.text-success {
  color: #c79364 !important;
}
.text-info {
  color: #a26a38 !important;
}
.text-warning {
  color: #ddb693 !important;
}
.text-danger {
  color: #a26a38 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #a26a38 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #a26a38 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #c79364 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #a26a38 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ddb693 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #a26a38 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #232323 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  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]):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: #a26a38;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #a26a38;
}
.alert-warning {
  background-color: #ddb693;
}
.alert-danger {
  background-color: #a26a38;
}
.mbr-gallery-filter li.active .btn {
  background-color: #a26a38;
  border-color: #a26a38;
  color: #ffffff;
}
a,
a:hover {
  color: #a26a38;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d5aa85;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e9d4c2;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d5aa85;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #d5aa85;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.68;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.68;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #a26a38;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #a26a38;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #a26a38;
}
.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: #a26a38;
  border-bottom-color: #a26a38;
}
.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: #a26a38 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #a26a38 !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='%23a26a38' %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;
}
.cid-umiJtJo3gO .navbar {
  background: #fafafa;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-umiJtJo3gO .navbar-dropdown.bg-color.transparent.opened {
  background: #fafafa;
}
.cid-umiJtJo3gO a {
  font-style: normal;
}
.cid-umiJtJo3gO .navbar-buttons {
  flex-wrap: wrap;
}
.cid-umiJtJo3gO .show {
  overflow: visible;
}
.cid-umiJtJo3gO .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-umiJtJo3gO .dropdown-item:active {
  background-color: transparent;
}
.cid-umiJtJo3gO .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-umiJtJo3gO .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.25rem !important;
  -webkit-align-items: center;
}
.cid-umiJtJo3gO .nav-item:focus,
.cid-umiJtJo3gO .nav-link:focus {
  outline: none;
}
.cid-umiJtJo3gO .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-umiJtJo3gO .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-umiJtJo3gO .menu-logo {
  margin-right: auto;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-umiJtJo3gO .dropdown .dropdown-menu {
  background: #fafafa;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-umiJtJo3gO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-umiJtJo3gO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umiJtJo3gO .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-umiJtJo3gO .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umiJtJo3gO .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-umiJtJo3gO .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-umiJtJo3gO button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-umiJtJo3gO button.navbar-toggler:focus {
  outline: none;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umiJtJo3gO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umiJtJo3gO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umiJtJo3gO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umiJtJo3gO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-umiJtJo3gO .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-umiJtJo3gO .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-umiJtJo3gO .collapsed .btn {
  display: -webkit-flex;
}
.cid-umiJtJo3gO .collapsed .outstanding {
  display: -webkit-flex;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.25rem !important;
  -webkit-align-items: center;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-umiJtJo3gO .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 91.5625vh;
  }
}
.cid-umiJtJo3gO .collapsed button.navbar-toggler {
  display: block;
}
.cid-umiJtJo3gO .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-umiJtJo3gO .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-umiJtJo3gO .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-umiJtJo3gO .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-umiJtJo3gO .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-umiJtJo3gO .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
@media (max-width: 991px) {
  .cid-umiJtJo3gO.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-umiJtJo3gO img {
    height: 3.8rem !important;
  }
  .cid-umiJtJo3gO .btn {
    display: -webkit-flex;
  }
  .cid-umiJtJo3gO button.navbar-toggler {
    display: block;
  }
  .cid-umiJtJo3gO .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-umiJtJo3gO .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-umiJtJo3gO .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing,
  .cid-umiJtJo3gO .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing .navbar-nav,
  .cid-umiJtJo3gO .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-umiJtJo3gO .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing .navbar-buttons,
  .cid-umiJtJo3gO .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-umiJtJo3gO .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-umiJtJo3gO .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-umiJtJo3gO .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-umiJtJo3gO .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-umiJtJo3gO .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-umiJtJo3gO .nav-link {
    justify-content: start !important;
  }
  .cid-umiJtJo3gO .navbar.opened {
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-umiJtJo3gO .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-umiJtJo3gO .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-umiJtJo3gO .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-umiJtJo3gO .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-umiJtJo3gO .nav-link:hover,
.cid-umiJtJo3gO .dropdown-item:hover {
  color: #000000 !important;
  opacity: .75;
}
.cid-umiJtJo3gO .nav-link:active,
.cid-umiJtJo3gO .dropdown-item:active {
  color: #ddb693;
}
@media (min-width: 1500px) {
  .cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse {
    max-width: 90% !important;
    padding-right: 5rem;
  }
  .cid-umiJtJo3gO .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-umiJtJo3gO .outstanding {
  display: inline-block;
  padding: 0 2rem;
  vertical-align: middle;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-umiJtJo3gO .outstanding {
    padding: 0.7rem 0 !important;
    display: -webkit-flex;
    margin: 0rem 1.25rem !important;
    -webkit-align-items: center;
  }
}
.cid-uLcUWUcvjM {
  background-image: url("../../../assets/images/7beac9d0d104694f20792e94c901d9d9.jpg-736x919.jpg");
}
.cid-uLcUWUcvjM h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-uLcUWUcvjM span {
  background-image: url("../../../assets/images/istockphoto-1367614696-612x612.jpg-612x408.jpg");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uLcUWUcvjM .mbr-section-title {
  color: #ffffff;
}
.cid-uLcUWUcvjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLcUWUcvjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulfXyKCo1M {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ulfXyKCo1M .mbr-section-subtitle {
  margin-bottom: 6px;
  color: #a26a38;
}
.cid-ulfXyKCo1M .mbr-section-title {
  margin-bottom: 0;
  color: #a26a38;
}
.cid-ulfXyKCo1M .card_wrapper {
  margin-top: 40px;
  padding: 60px 40px;
  background-color: #000000;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 3px 4px 0 rgba(38, 59, 94, 0.1);
}
.cid-ulfXyKCo1M .card_wrapper:hover {
  transform: translateY(-16px);
  box-shadow: 0 30px 60px 0 rgba(38, 59, 94, 0.1);
}
.cid-ulfXyKCo1M .card_wrapper:hover .card_title a {
  color: #a26a38 !important;
}
.cid-ulfXyKCo1M .card_wrapper:hover .card_link .mbr-iconfont {
  color: #a26a38 !important;
}
.cid-ulfXyKCo1M .card_wrapper:hover .shape {
  opacity: 1;
}
.cid-ulfXyKCo1M .card_wrapper:hover .shape_1 {
  top: -5px;
  left: -6px;
}
.cid-ulfXyKCo1M .card_wrapper:hover .shape_2 {
  transform: rotate(360deg);
  top: -6px;
  right: -2px;
}
.cid-ulfXyKCo1M .card_wrapper:hover .shape_3 {
  left: -6px;
  bottom: -6px;
  transform: rotate(360deg);
}
.cid-ulfXyKCo1M .card_wrapper:hover .shape_4 {
  right: -20px;
  bottom: 24px;
}
.cid-ulfXyKCo1M .icon_block {
  margin-bottom: 40px;
}
.cid-ulfXyKCo1M .icon_block .iconfont-wrapper {
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  position: relative;
  box-shadow: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
  background-image: linear-gradient(40deg, #c58245 0%, rgba(221, 182, 147, 0.8) 100%);
}
.cid-ulfXyKCo1M .icon_block .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-ulfXyKCo1M .card_title {
  margin-bottom: 20px;
  color: #a26a38;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-ulfXyKCo1M .card_text {
  margin-bottom: 50px;
}
.cid-ulfXyKCo1M .card_link {
  display: block;
}
.cid-ulfXyKCo1M .card_link a {
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
}
.cid-ulfXyKCo1M .card_link a:hover {
  transform: translateX(6px);
}
.cid-ulfXyKCo1M .card_link .mbr-iconfont {
  line-height: 1;
  font-size: 48px;
  color: #afb8ce;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-ulfXyKCo1M .shape {
  opacity: 0;
  z-index: -1;
  line-height: 1;
  position: absolute;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 10px;
}
.cid-ulfXyKCo1M .shape_1 {
  top: 9px;
  left: 12px;
  width: 10px;
  height: 10px;
  background: #c79364;
  border-radius: 50%;
}
.cid-ulfXyKCo1M .shape_2 {
  top: 9px;
  right: 12px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #a26a38;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.cid-ulfXyKCo1M .shape_3 {
  left: 12px;
  bottom: 9px;
  width: 10px;
  height: 10px;
  background-color: #ddb693;
}
.cid-ulfXyKCo1M .shape_4 {
  right: 12px;
  bottom: 9px;
  width: 8px;
  height: 8px;
  background: #a26a38;
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .cid-ulfXyKCo1M .card_wrapper {
    padding: 40px 30px;
    max-width: 370px;
    margin: 30px auto 0;
  }
  .cid-ulfXyKCo1M .card_title {
    margin-bottom: 15px;
  }
  .cid-ulfXyKCo1M .card_text {
    margin-bottom: 20px;
  }
  .cid-ulfXyKCo1M .card_link .mbr-iconfont {
    font-size: 42px;
  }
}
.cid-ulfXyKCo1M .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulfXyKCo1M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulfXyKCo1M .card_title,
.cid-ulfXyKCo1M .icon_block {
  color: #f7f4f8;
}
.cid-ukYQX3pl64 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-ukYQX3pl64 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukYQX3pl64 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukYQX3pl64 .col-text {
  position: relative;
  z-index: 10;
}
@media (min-width: 992px) {
  .cid-ukYQX3pl64 .col-text {
    padding-right: 28px;
  }
}
@media (max-width: 991px) {
  .cid-ukYQX3pl64 .col-text {
    order: 2;
  }
}
.cid-ukYQX3pl64 .col-img {
  position: relative;
}
@media (min-width: 992px) {
  .cid-ukYQX3pl64 .col-img {
    padding-left: 28px;
  }
}
@media (max-width: 991px) {
  .cid-ukYQX3pl64 .col-img {
    order: 1;
  }
}
.cid-ukYQX3pl64 .card-title {
  color: #161616;
  margin-top: 1rem;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ukYQX3pl64 .card-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
  }
}
.cid-ukYQX3pl64 .mbr-text {
  color: #161616;
  margin-top: 2rem;
  margin-bottom: 0 !important;
  width: 100%;
  max-width: 480px;
}
@media (max-width: 991px) {
  .cid-ukYQX3pl64 .mbr-text {
    text-align: center !important;
    padding-right: 0;
    margin-top: 1.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-ukYQX3pl64 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .cid-ukYQX3pl64 .mbr-section-btn {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-ukYQX3pl64 .mbr-section-btn {
    width: 100%;
  }
}
.cid-ukYQX3pl64 .image-wrapper {
  display: flex;
  position: relative;
  z-index: 10;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: 612px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ukYQX3pl64 .image-wrapper {
    height: 432px;
    margin-bottom: 24px;
  }
}
@media (max-width: 575px) {
  .cid-ukYQX3pl64 .image-wrapper {
    height: auto;
  }
}
.cid-ukYQX3pl64 .image-wrapper img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.cid-ukYQX3pl64 .circle-blur {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  display: block;
  width: 560px;
  height: 560px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #fafafa 27%, #fafafa 50%, #fafafa 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
@media (max-width: 991px) {
  .cid-ukYQX3pl64 .circle-blur {
    width: 320px;
    height: 320px;
    top: -10%;
    right: -5%;
    transform: translate(0, 0);
  }
}
.cid-ukYQX3pl64 .mbr-text,
.cid-ukYQX3pl64 .link-wrap {
  color: #f5f9fc;
}
.cid-ukYQX3pl64 .card-title,
.cid-ukYQX3pl64 .mbr-section-btn {
  color: #c79364;
}
.cid-uNara6CAM8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uNara6CAM8 .section-head {
  margin-bottom: 2rem;
}
.cid-uNara6CAM8 .mbr-section-title {
  text-align: right;
  margin-bottom: 1.5rem;
}
.cid-uNara6CAM8 .mbr-section-subtitle {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-uNara6CAM8 .row {
    text-align: center;
  }
}
.cid-uNara6CAM8 .wave-container {
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: -1px;
  overflow: hidden;
}
.cid-uNara6CAM8 .wave-container .wave {
  width: 5500px;
  position: relative;
  left: -3300px;
}
.cid-uNara6CAM8 .wave-container .wave svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: wavy 35s infinite linear;
  backface-visibility: hidden;
}
.cid-uNara6CAM8 .wave-container .wave svg path {
  fill: #000000;
}
@keyframes wavy {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
    animation-timing-function: linear;
  }
  100% {
    opacity: 1;
    transform: translateX(3230px) translateY(0px) rotate(0deg) scale(1, 1);
  }
}
.cid-tUj8HrOZ5m {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tUj8HrOZ5m .mbr-section-subtitle {
  margin-bottom: 1.5rem;
}
.cid-tUj8HrOZ5m .linkBtn {
  margin-top: 2.5rem;
}
.cid-tUj8HrOZ5m b,
.cid-tUj8HrOZ5m strong {
  font-weight: 500;
  color: #a26a38;
}
@media (max-width: 767px) {
  .cid-tUj8HrOZ5m .mbr-section-subtitle {
    margin-bottom: 0.75rem;
  }
  .cid-tUj8HrOZ5m .linkBtn {
    margin-top: 1.5rem;
    text-align: left;
  }
}
.cid-tUj8HrOZ5m .mbr-section-title,
.cid-tUj8HrOZ5m .linkBtn {
  color: #fafafa;
}
.cid-tUj8HrOZ5m H4 {
  color: #dfccee;
}
.cid-uLi5pjXt18 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uLi5pjXt18 .font {
  color: #c0bcb7;
}
.cid-uLi5pjXt18 .wrap {
  position: relative;
}
.cid-uLi5pjXt18 .image-wrapper {
  height: 100%;
  position: relative;
}
.cid-uLi5pjXt18 .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uLi5pjXt18 .wrapper-title {
  width: 100%;
  position: absolute;
  bottom: 0;
}
.cid-uLi5pjXt18 .mbr-text {
  text-align: center;
  color: #f5f9fc;
}
.cid-uLi5pjXt18 .mbr-section-title {
  text-align: center;
  color: #c79364;
}
.cid-ulgXkySHto {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ulgXkySHto .mbr-section-subtitle {
  margin-bottom: 1.5rem;
}
.cid-ulgXkySHto .linkBtn {
  margin-top: 2.5rem;
}
.cid-ulgXkySHto b,
.cid-ulgXkySHto strong {
  font-weight: 500;
  color: #a26a38;
}
@media (max-width: 767px) {
  .cid-ulgXkySHto .mbr-section-subtitle {
    margin-bottom: 0.75rem;
  }
  .cid-ulgXkySHto .linkBtn {
    margin-top: 1.5rem;
    text-align: left;
  }
}
.cid-ulgXkySHto .mbr-section-title,
.cid-ulgXkySHto .linkBtn {
  color: #fafafa;
  text-align: center;
}
.cid-ulgXkySHto H4 {
  color: #dfccee;
}
.cid-ulgNfGUrLY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ulgNfGUrLY .row {
  align-items: center;
  justify-content: space-between;
}
.cid-ulgNfGUrLY .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #a26a38;
}
.cid-ulgNfGUrLY .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-ulgNfGUrLY .mbr-text {
  color: #8c8c95;
  margin-bottom: 36px;
}
.cid-ulgNfGUrLY .right-side {
  max-width: 554px;
}
.cid-ulgNfGUrLY .rs {
  margin-right: 60px;
}
.cid-ulgNfGUrLY .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-ulgNfGUrLY .margin {
  margin-right: 14px;
}
.cid-ulgNfGUrLY .gray {
  padding: 45px 0;
  background-color: #fafafa;
}
.cid-ulgNfGUrLY img {
  position: relative;
  right: 40px;
}
@media (max-width: 767px) {
  .cid-ulgNfGUrLY .gray {
    padding: 0px 0 5px;
  }
  .cid-ulgNfGUrLY img {
    right: initial;
    width: 90%;
    margin: auto;
    top: -35px;
  }
  .cid-ulgNfGUrLY .col-md-5 {
    padding-top: 90px;
  }
}
@media (max-width: 430px) {
  .cid-ulgNfGUrLY .b {
    margin-bottom: 10px;
  }
}
.cid-ulgNfGUrLY .btn {
  margin-top: 20px;
}
.cid-ulgNfGUrLY a.btn > span {
  margin-left: 0.5rem;
}
.cid-ulgNfGUrLY .mbr-text,
.cid-ulgNfGUrLY .button-align {
  color: #fafafa;
}
.cid-ulgMmXH6NS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ulgMmXH6NS .mbr-section-subtitle {
  margin-bottom: 1.5rem;
}
.cid-ulgMmXH6NS .linkBtn {
  margin-top: 2.5rem;
}
.cid-ulgMmXH6NS b,
.cid-ulgMmXH6NS strong {
  font-weight: 500;
  color: #a26a38;
}
@media (max-width: 767px) {
  .cid-ulgMmXH6NS .mbr-section-subtitle {
    margin-bottom: 0.75rem;
  }
  .cid-ulgMmXH6NS .linkBtn {
    margin-top: 1.5rem;
    text-align: left;
  }
}
.cid-ulgMmXH6NS .mbr-section-title,
.cid-ulgMmXH6NS .linkBtn {
  color: #fafafa;
  text-align: center;
}
.cid-ulgMmXH6NS H4 {
  color: #dfccee;
}
.cid-tUjhKQVw2a {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tUjhKQVw2a .mbr-section-title {
  color: #233d63;
}
.cid-tUjhKQVw2a .icon__block {
  background: linear-gradient(135deg, rgba(199, 147, 100, 0.54) 0%, rgba(199, 147, 100, 0.85) 60%, #c79364 100%);
}
.cid-tUjhKQVw2a .mbr-section-title,
.cid-tUjhKQVw2a .icon__wrap {
  text-align: center;
  color: #fafafa;
}
.cid-tUjhKQVw2a .mbr-section-subtitle {
  text-align: center;
}
.cid-tUjhKQVw2a .icon__wrap {
  width: 100%;
  margin-bottom: 23px;
}
.cid-tUjhKQVw2a .icon__wrap .icon__block {
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 10px;
}
.cid-tUjhKQVw2a .icon__wrap .icon__block::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 65px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  transform: rotate(-45deg);
}
.cid-tUjhKQVw2a .icon__wrap .icon__block::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 65px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.15);
  transform: rotate(45deg);
}
.cid-tUjhKQVw2a .icon__wrap .icon__block .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  position: relative;
  z-index: 10;
}
.cid-tUjhKQVw2a .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUjhKQVw2a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulfQCsl6iQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ulfQCsl6iQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulfQCsl6iQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulfQCsl6iQ .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-ulfQCsl6iQ .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-ulfQCsl6iQ .container {
    padding: 0 20px;
  }
}
.cid-ulfQCsl6iQ .item {
  margin-top: 32px;
}
.cid-ulfQCsl6iQ .item:first-child {
  margin-top: 0;
}
.cid-ulfQCsl6iQ .item:nth-child(2) {
  margin-top: 0;
}
@media (max-width: 992px) {
  .cid-ulfQCsl6iQ .item:nth-child(2) {
    margin-top: 32px;
  }
}
.cid-ulfQCsl6iQ .item:nth-child(2n) .item-wrapper {
  background-color: #000000;
}
.cid-ulfQCsl6iQ .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 52px 40px;
  background-color: #ddb693;
  border-radius: 20px !important;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ulfQCsl6iQ .item .item-wrapper {
    padding: 46px 20px;
  }
}
.cid-ulfQCsl6iQ .item .item-wrapper .card-box .card-desc_1,
.cid-ulfQCsl6iQ .item .item-wrapper .card-box .card-desc_2 {
  margin-bottom: 46px;
}
@media (max-width: 992px) {
  .cid-ulfQCsl6iQ .item .item-wrapper .card-box .card-desc_1,
  .cid-ulfQCsl6iQ .item .item-wrapper .card-box .card-desc_2 {
    margin-bottom: 20px;
  }
}
.cid-ulfQCsl6iQ .item .item-wrapper .card-box .icon-wrapper_1 .mbr-iconfont,
.cid-ulfQCsl6iQ .item .item-wrapper .card-box .icon-wrapper_2 .mbr-iconfont {
  display: inline-flex;
  font-size: 78px;
  margin-bottom: 80px;
  color: #fafafa;
}
@media (max-width: 992px) {
  .cid-ulfQCsl6iQ .item .item-wrapper .card-box .icon-wrapper_1 .mbr-iconfont,
  .cid-ulfQCsl6iQ .item .item-wrapper .card-box .icon-wrapper_2 .mbr-iconfont {
    margin-bottom: 46px;
  }
}
.cid-ulfQCsl6iQ .item .item-wrapper .card-box .icon-wrapper_2 .mbr-iconfont {
  color: #fafafa;
}
.cid-ulfQCsl6iQ .item .item-wrapper .card-box .card-title_1,
.cid-ulfQCsl6iQ .item .item-wrapper .card-box .card-title_2 {
  margin-bottom: 32px;
}
.cid-ulfQCsl6iQ .item .item-wrapper .card-box .title-wrapper_1 .card-title_1 {
  display: inline-flex;
  width: 70%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-ulfQCsl6iQ .item .item-wrapper .card-box .title-wrapper_1 .card-title_1 {
    width: 100%;
  }
}
.cid-ulfQCsl6iQ .item .item-wrapper .card-box .title-wrapper_2 .card-title_2 {
  display: inline-flex;
  width: 70%;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .cid-ulfQCsl6iQ .item .item-wrapper .card-box .title-wrapper_2 .card-title_2 {
    width: 100%;
  }
}
.cid-ulfQCsl6iQ .item .item-wrapper .card-box .text-wrapper_1 .card-text_1 {
  display: inline-flex;
  width: 60%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ulfQCsl6iQ .item .item-wrapper .card-box .text-wrapper_1 .card-text_1 {
    width: 100%;
  }
}
.cid-ulfQCsl6iQ .item .item-wrapper .card-box .text-wrapper_2 .card-text_2 {
  display: inline-flex;
  width: 50%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ulfQCsl6iQ .item .item-wrapper .card-box .text-wrapper_2 .card-text_2 {
    width: 100%;
  }
}
.cid-ulfQCsl6iQ .card-desc_1 {
  color: #000000;
  text-align: center;
}
.cid-ulfQCsl6iQ .card-desc_2 {
  color: #ffffff;
  text-align: center;
}
.cid-ulfQCsl6iQ .card-title_1 {
  color: #000000;
}
.cid-ulfQCsl6iQ .card-title_2 {
  color: #ffffff;
}
.cid-ulfQCsl6iQ .card-text_1,
.cid-ulfQCsl6iQ .text-wrapper_1 {
  color: #000000;
  text-align: center;
}
.cid-ulfQCsl6iQ .card-text_2,
.cid-ulfQCsl6iQ .text-wrapper_2 {
  color: #ffffff;
  text-align: center;
}
.cid-ulfQCsl6iQ .card-title_1,
.cid-ulfQCsl6iQ .buttons_1,
.cid-ulfQCsl6iQ .icon-wrapper_1,
.cid-ulfQCsl6iQ .title-wrapper_1 {
  text-align: center;
}
.cid-ulfQCsl6iQ .card-title_2,
.cid-ulfQCsl6iQ .buttons_2,
.cid-ulfQCsl6iQ .icon-wrapper_2,
.cid-ulfQCsl6iQ .title-wrapper_2 {
  text-align: center;
}
.cid-ulfQCsl6iQ .card-title_1,
.cid-ulfQCsl6iQ .icon-wrapper_1,
.cid-ulfQCsl6iQ .buttons_1,
.cid-ulfQCsl6iQ .title-wrapper_1 {
  color: #000000;
  text-align: center;
}
.cid-ulfT69eYsf {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
@media (max-width: 1000px) {
  .cid-ulfT69eYsf {
    padding-top: 0rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cid-ulfT69eYsf {
    padding-top: 0rem;
    padding-bottom: 0.9rem;
  }
}
.cid-ulfT69eYsf .f-row {
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 991px) {
  .cid-ulfT69eYsf .flex-item {
    flex: 0 1 50%;
  }
}
@media (max-width: 990px) {
  .cid-ulfT69eYsf .f-row {
    flex-direction: column;
  }
  .cid-ulfT69eYsf .flex-item {
    flex: 1 1 100%;
  }
}
@media (max-width: 991px) {
  .cid-ulfT69eYsf .image-wrapper {
    padding: 1rem;
  }
}
.cid-ulfT69eYsf .text-wrapper {
  background-color: #fafafa;
  padding: 6rem 1.5rem 1rem;
}
@media (min-width: 1200px) {
  .cid-ulfT69eYsf .text-wrapper {
    padding: 8rem 3rem 2rem;
    margin: 1rem;
  }
}
.cid-ulfT69eYsf .title {
  transform: translateY(8rem);
  padding: 1rem;
}
@media (max-width: 1200px) {
  .cid-ulfT69eYsf .title {
    transform: translateY(7rem);
  }
}
@media (max-width: 1000px) {
  .cid-ulfT69eYsf .title {
    transform: translateY(6rem);
  }
}
.cid-ulfT69eYsf .mbr-section-title {
  color: #a26a38;
  text-align: left;
}
.cid-ulfT69eYsf .mbr-text,
.cid-ulfT69eYsf .mbr-section-btn {
  color: #ffd8db;
}
.cid-ulfT69eYsf .z-100 {
  z-index: 100;
}
.cid-ulfT69eYsf .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-tUjl2V9igR {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #000000;
}
.cid-tUjl2V9igR .mbr-section-subtitle {
  color: #cccccc;
}
.cid-tUjl2V9igR h2 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 2rem;
  letter-spacing: 4px;
}
.cid-tUjl2V9igR h2:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-tUjl2V9igR h2:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-tUjl2V9igR .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #a26a38;
  margin: 15px 0.5rem;
  display: block;
}
.cid-tUjl2V9igR .mbr-iconfont-social:before {
  padding: 0.6rem;
  border: 2px solid;
  border-radius: 100px;
  transition: all 0.3s;
}
.cid-tUjl2V9igR .mbr-iconfont-social:hover {
  color: #ffffff;
}
.cid-tUjl2V9igR .mbr-iconfont-social:hover:before {
  background: #a26a38;
  transition: all 0.3s;
  border-color: transparent;
}
.cid-tUjl2V9igR .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-tUjl2V9igR .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-tUjl2V9igR .mbr-iconfont-social {
    margin-left: 0.2rem;
    margin-right: 0.2rem;
  }
}
.cid-tUjl2V9igR .mbr-section-title,
.cid-tUjl2V9igR .social-list {
  color: #fafafa;
}
@media (max-width: 768px) {
  .cid-tUjl2V9igR h2:before,
  .cid-tUjl2V9igR h2:after {
    display: none;
  }
}
.cid-tUjaOQZx9g {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-tUjaOQZx9g .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUjaOQZx9g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUjaOQZx9g .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-tUjaOQZx9g .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-tUjaOQZx9g .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-tUjaOQZx9g .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1599px) {
  .cid-tUjaOQZx9g .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-tUjaOQZx9g .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tUjaOQZx9g .mbr-section-head {
  width: 100%;
}
.cid-tUjaOQZx9g .mbr-section-title {
  color: #FF014E;
}
@media (max-width: 767px) {
  .cid-tUjaOQZx9g .mbr-section-title {
    text-align: center;
  }
}
.cid-tUjaOQZx9g .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tUjaOQZx9g .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-tUjaOQZx9g .card-row {
  align-items: stretch;
}
.cid-tUjaOQZx9g .item {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tUjaOQZx9g .item {
    margin-top: 30px;
  }
}
.cid-tUjaOQZx9g .item-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 50px 35px 50px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #000000, #000000);
  box-shadow: 10px 10px 19px #fafafa, -10px -10px 19px #c79364;
}
@media (max-width: 1199px) {
  .cid-tUjaOQZx9g .item-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-tUjaOQZx9g .item-wrapper {
    padding: 20px;
  }
}
.cid-tUjaOQZx9g .item-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tUjaOQZx9g .item-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-tUjaOQZx9g .item-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-tUjaOQZx9g .item-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-tUjaOQZx9g .item-wrapper:hover .iconfont-wrapper-hover {
  visibility: visible;
  opacity: 1;
}
.cid-tUjaOQZx9g .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tUjaOQZx9g .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 0.7s cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-tUjaOQZx9g .item-img {
  margin-bottom: 29px;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.cid-tUjaOQZx9g .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1.49760766;
}
.cid-tUjaOQZx9g .card-title {
  color: #000000;
  margin-bottom: 20px;
  transition: .5s all;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tUjaOQZx9g .card-title {
    margin-bottom: 15px;
  }
}
.cid-tUjaOQZx9g .card-text {
  color: #000000;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-tUjaOQZx9g .iconfont-wrapper-hover {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  visibility: hidden;
  opacity: 0;
  transition: .5s all;
}
.cid-tUjaOQZx9g .iconfont-wrapper-hover .mbr-iconfont {
  font-size: 32px;
  color: #89edfb;
}
.cid-tUjlPOl2xJ {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-tUjlPOl2xJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUjlPOl2xJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUjlPOl2xJ .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-tUjlPOl2xJ .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-tUjlPOl2xJ .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-tUjlPOl2xJ .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1599px) {
  .cid-tUjlPOl2xJ .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-tUjlPOl2xJ .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tUjlPOl2xJ .mbr-section-head {
  width: 100%;
}
.cid-tUjlPOl2xJ .mbr-section-title {
  color: #FF014E;
}
@media (max-width: 767px) {
  .cid-tUjlPOl2xJ .mbr-section-title {
    text-align: center;
  }
}
.cid-tUjlPOl2xJ .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-tUjlPOl2xJ .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-tUjlPOl2xJ .card-row {
  align-items: stretch;
}
.cid-tUjlPOl2xJ .item {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tUjlPOl2xJ .item {
    margin-top: 30px;
  }
}
.cid-tUjlPOl2xJ .item-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 50px 35px 50px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #000000, #000000);
  box-shadow: 10px 10px 19px #c79364, -10px -10px 19px #fafafa;
}
@media (max-width: 1199px) {
  .cid-tUjlPOl2xJ .item-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-tUjlPOl2xJ .item-wrapper {
    padding: 20px;
  }
}
.cid-tUjlPOl2xJ .item-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tUjlPOl2xJ .item-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-tUjlPOl2xJ .item-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-tUjlPOl2xJ .item-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-tUjlPOl2xJ .item-wrapper:hover .iconfont-wrapper-hover {
  visibility: visible;
  opacity: 1;
}
.cid-tUjlPOl2xJ .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-tUjlPOl2xJ .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 0.7s cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-tUjlPOl2xJ .item-img {
  margin-bottom: 29px;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.cid-tUjlPOl2xJ .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1.49760766;
}
.cid-tUjlPOl2xJ .card-title {
  color: #000000;
  margin-bottom: 20px;
  transition: .5s all;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tUjlPOl2xJ .card-title {
    margin-bottom: 15px;
  }
}
.cid-tUjlPOl2xJ .card-text {
  color: #000000;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-tUjlPOl2xJ .iconfont-wrapper-hover {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  visibility: hidden;
  opacity: 0;
  transition: .5s all;
}
.cid-tUjlPOl2xJ .iconfont-wrapper-hover .mbr-iconfont {
  font-size: 32px;
  color: #89edfb;
}
.cid-ulgXtLsP1K {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ulgXtLsP1K .section-head {
  margin-bottom: 2rem;
}
.cid-ulgXtLsP1K .mbr-section-title {
  text-align: right;
  margin-bottom: 1.5rem;
}
.cid-ulgXtLsP1K .mbr-section-subtitle {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-ulgXtLsP1K .row {
    text-align: center;
  }
}
.cid-ulgXtLsP1K .wave-container {
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: -1px;
  overflow: hidden;
}
.cid-ulgXtLsP1K .wave-container .wave {
  width: 5500px;
  position: relative;
  left: -3300px;
}
.cid-ulgXtLsP1K .wave-container .wave svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: wavy 35s infinite linear;
  backface-visibility: hidden;
}
.cid-ulgXtLsP1K .wave-container .wave svg path {
  fill: #000000;
}
@keyframes wavy {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
    animation-timing-function: linear;
  }
  100% {
    opacity: 1;
    transform: translateX(3230px) translateY(0px) rotate(0deg) scale(1, 1);
  }
}
.cid-tUjr5rF7de {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #000000;
  background: linear-gradient(90deg, #000000, #fafafa);
}
.cid-tUjr5rF7de .media-content .btn-bgr {
  z-index: 0;
}
.cid-tUjr5rF7de .mbr-section-text {
  word-break: break-word;
}
.cid-tUjr5rF7de .mbr-overlay {
  background: linear-gradient(90deg, #e6c63b, #ffffff);
}
@media (min-width: 992px) {
  .cid-tUjr5rF7de .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tUjr5rF7de .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tUjr5rF7de .mbr-text {
    text-align: center;
  }
}
.cid-tUjr5rF7de H1 {
  color: #ffffff;
  text-align: left;
}
.cid-tUjr5rF7de .mbr-text,
.cid-tUjr5rF7de .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-t0fPU57pb2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-t0fPU57pb2 h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-t0fPU57pb2 span {
  background-image: url("../../../assets/images/istockphoto-1367614696-612x612.jpg-612x408.jpg");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-t0fPU57pb2 .mbr-section-title {
  color: #ffffff;
}
.cid-uLd58X1TEV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uLd58X1TEV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLd58X1TEV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLd58X1TEV .container {
  max-width: 1600px;
}
.cid-uLd58X1TEV .content-wrapper {
  display: flex;
  align-items: stretch;
  background: #0e0c0c;
  padding: 4rem 4rem 6.5rem;
  border-radius: 4.17rem;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uLd58X1TEV .content-wrapper {
    padding: 40px 40px 5rem;
  }
}
@media (max-width: 767px) {
  .cid-uLd58X1TEV .content-wrapper {
    padding: 4rem 6vw 5rem;
  }
}
.cid-uLd58X1TEV .col-title {
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .cid-uLd58X1TEV .col-title {
    margin-bottom: 50px;
  }
}
.cid-uLd58X1TEV .mbr-section-title {
  color: #FFDD65;
}
.cid-uLd58X1TEV .panel-group {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 0.83rem;
  border: none;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-uLd58X1TEV .panel-group {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
  }
}
.cid-uLd58X1TEV .card {
  padding: 0 !important;
  overflow: hidden;
  width: 100%;
  margin-bottom: 0.83rem;
  border-radius: 1.25rem !important;
  background-color: rgba(255, 255, 255, 0.01);
}
.cid-uLd58X1TEV .sign.mbr-iconfont {
  font-size: 22px !important;
  font-family: 'Moririse2' !important;
  color: #c79364;
  margin-left: 1.2rem;
  transition: all ease-in-out 0.3s;
}
.cid-uLd58X1TEV .card-header {
  border-bottom: none !important;
  padding: 0 !important;
}
.cid-uLd58X1TEV .card-header .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uLd58X1TEV .panel-title-edit {
  color: #FFFFFF;
  transition: all ease-in-out 0.3s;
}
.cid-uLd58X1TEV .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px !important;
}
@media (max-width: 991px) {
  .cid-uLd58X1TEV .panel-title {
    padding: 16px 24px !important;
  }
}
.cid-uLd58X1TEV .panel-title:hover .panel-title-edit {
  color: #a26a38;
}
.cid-uLd58X1TEV .panel-body {
  padding: 16px 40px 32px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uLd58X1TEV .panel-body {
    padding: 16px 24px 24px;
  }
}
.cid-uLd58X1TEV .panel-text {
  color: #FFFFFF;
  margin-bottom: 0 !important;
}
.cid-uLd58X1TEV .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uLd58X1TEV .col-text {
  width: 100%;
  margin-top: 64px;
}
@media (max-width: 991px) {
  .cid-uLd58X1TEV .col-text {
    margin-top: 40px;
  }
}
.cid-uLd58X1TEV .mbr-section-subtitle {
  color: #c79364;
}
.cid-uLd58X1TEV .mbr-text {
  margin-top: 24px;
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-uLd58X1TEV .mbr-text {
    margin-top: 16px;
  }
}
.cid-uLd58X1TEV .custom-section-btn {
  background-image: linear-gradient(90deg, #000000 2.76%, #c79364 29.66%, #c79364 61%, #000000 99.93%);
}
.cid-uLd58X1TEV .custom-section-btn::after {
  background-image: linear-gradient(90deg, #000000 2.76%, #c79364 29.66%, #c79364 61%, #000000 99.93%);
}
.cid-uLd58X1TEV .btn-container {
  padding: 0 4rem;
  margin-top: -3.5rem;
}
@media (max-width: 767px) {
  .cid-uLd58X1TEV .btn-container {
    padding: 0 6vw;
    width: 100%;
  }
  .cid-uLd58X1TEV .btn-container .custom-section-btn {
    width: 100%;
  }
  .cid-uLd58X1TEV .btn-container .btn {
    width: 100%;
  }
}
.cid-ulfPovDIkj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ulfPovDIkj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulfPovDIkj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulfPovDIkj .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ulfPovDIkj .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-ulfPovDIkj .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ulfPovDIkj .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ulfPovDIkj .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-ulfPovDIkj .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-ulfPovDIkj .item {
  padding: 0 32px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ulfPovDIkj .item {
    margin-bottom: 28px;
  }
}
.cid-ulfPovDIkj .item .item-wrapper {
  padding: 24px;
  height: 100%;
  border: 1px solid #252525;
  background-color: #121212;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-ulfPovDIkj .item .item-wrapper {
    padding: 16px;
  }
}
.cid-ulfPovDIkj .item .item-wrapper .item-content .icon-wrapper {
  height: 176px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-ulfPovDIkj .item .item-wrapper .item-content .icon-wrapper {
    margin-bottom: 16px;
  }
}
.cid-ulfPovDIkj .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  display: inline-block;
  font-size: 70px;
  color: #c79364;
  background: linear-gradient(90deg, #c79364, #d5ad89 65%, #e2c7af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-ulfPovDIkj .item .item-wrapper .item-content .item-title {
  margin-bottom: 8px;
}
.cid-ulfPovDIkj .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-ulfPovDIkj .mbr-section-title {
  color: #a26a38;
  text-align: center;
}
.cid-ulfPovDIkj .mbr-text,
.cid-ulfPovDIkj .text-wrapper {
  color: #9aa0a6;
  text-align: center;
}
.cid-ulfPovDIkj .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-ulfPovDIkj .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-tUjpoxEyjc {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tUjpoxEyjc .line {
  background-color: #c79364;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tUjpoxEyjc .mbr-text {
  color: #f5f9fc;
}
.cid-uNax6qEwiW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNax6qEwiW .section-head {
  margin-bottom: 2rem;
}
.cid-uNax6qEwiW .mbr-section-title {
  text-align: right;
  margin-bottom: 1.5rem;
}
.cid-uNax6qEwiW .mbr-section-subtitle {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-uNax6qEwiW .row {
    text-align: center;
  }
}
.cid-uNax6qEwiW .wave-container {
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: -1px;
  overflow: hidden;
}
.cid-uNax6qEwiW .wave-container .wave {
  width: 5500px;
  position: relative;
  left: -3300px;
}
.cid-uNax6qEwiW .wave-container .wave svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: wavy 35s infinite linear;
  backface-visibility: hidden;
}
.cid-uNax6qEwiW .wave-container .wave svg path {
  fill: #ffffff;
}
@keyframes wavy {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
    animation-timing-function: linear;
  }
  100% {
    opacity: 1;
    transform: translateX(3230px) translateY(0px) rotate(0deg) scale(1, 1);
  }
}
.cid-umiNgwyd9r {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-umiNgwyd9r .row {
  flex-direction: row-reverse;
}
.cid-umiNgwyd9r img {
  display: inline;
}
.cid-umiNgwyd9r .si {
  width: 100%;
}
.cid-umiNgwyd9r .si img {
  width: auto;
}
.cid-umiNgwyd9r .text {
  color: #ffffff;
}
.cid-umiNgwyd9r .text,
.cid-umiNgwyd9r .si {
  color: #000000;
  text-align: center;
}
.cid-umiNgwyd9r .copyright {
  font-family: "EB Garamond";
  color: #000000;
}
.cid-umiNgwyd9r .list {
  font-family: "Josefin Sans";
  letter-spacing: .2em;
  list-style: none;
  padding-left: 0;
  color: #a26a38;
}
@media (max-width: 991px) {
  .cid-umiNgwyd9r .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umiNgwyd9r .list {
    margin-bottom: 0rem;
  }
}
.cid-umiNgwyd9r .list li {
  margin-bottom: .5rem;
}
.cid-umiNgwyd9r .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 758px) {
  .cid-umiNgwyd9r .logo {
    margin-top: 2rem;
  }
}
.cid-umiNgwyd9r .mbr-section-subtitle {
  color: #000000;
}
.cid-umiJtJo3gO .navbar {
  background: #fafafa;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-umiJtJo3gO .navbar-dropdown.bg-color.transparent.opened {
  background: #fafafa;
}
.cid-umiJtJo3gO a {
  font-style: normal;
}
.cid-umiJtJo3gO .navbar-buttons {
  flex-wrap: wrap;
}
.cid-umiJtJo3gO .show {
  overflow: visible;
}
.cid-umiJtJo3gO .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-umiJtJo3gO .dropdown-item:active {
  background-color: transparent;
}
.cid-umiJtJo3gO .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-umiJtJo3gO .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.25rem !important;
  -webkit-align-items: center;
}
.cid-umiJtJo3gO .nav-item:focus,
.cid-umiJtJo3gO .nav-link:focus {
  outline: none;
}
.cid-umiJtJo3gO .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-umiJtJo3gO .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-umiJtJo3gO .menu-logo {
  margin-right: auto;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-umiJtJo3gO .dropdown .dropdown-menu {
  background: #fafafa;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-umiJtJo3gO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-umiJtJo3gO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umiJtJo3gO .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-umiJtJo3gO .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umiJtJo3gO .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-umiJtJo3gO .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-umiJtJo3gO button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-umiJtJo3gO button.navbar-toggler:focus {
  outline: none;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umiJtJo3gO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umiJtJo3gO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umiJtJo3gO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umiJtJo3gO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-umiJtJo3gO .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-umiJtJo3gO .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-umiJtJo3gO .collapsed .btn {
  display: -webkit-flex;
}
.cid-umiJtJo3gO .collapsed .outstanding {
  display: -webkit-flex;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.25rem !important;
  -webkit-align-items: center;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-umiJtJo3gO .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 91.5625vh;
  }
}
.cid-umiJtJo3gO .collapsed button.navbar-toggler {
  display: block;
}
.cid-umiJtJo3gO .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-umiJtJo3gO .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-umiJtJo3gO .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-umiJtJo3gO .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-umiJtJo3gO .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-umiJtJo3gO .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
@media (max-width: 991px) {
  .cid-umiJtJo3gO.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-umiJtJo3gO img {
    height: 3.8rem !important;
  }
  .cid-umiJtJo3gO .btn {
    display: -webkit-flex;
  }
  .cid-umiJtJo3gO button.navbar-toggler {
    display: block;
  }
  .cid-umiJtJo3gO .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-umiJtJo3gO .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-umiJtJo3gO .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing,
  .cid-umiJtJo3gO .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing .navbar-nav,
  .cid-umiJtJo3gO .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-umiJtJo3gO .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing .navbar-buttons,
  .cid-umiJtJo3gO .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-umiJtJo3gO .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-umiJtJo3gO .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-umiJtJo3gO .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-umiJtJo3gO .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-umiJtJo3gO .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-umiJtJo3gO .nav-link {
    justify-content: start !important;
  }
  .cid-umiJtJo3gO .navbar.opened {
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-umiJtJo3gO .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-umiJtJo3gO .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-umiJtJo3gO .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-umiJtJo3gO .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-umiJtJo3gO .nav-link:hover,
.cid-umiJtJo3gO .dropdown-item:hover {
  color: #000000 !important;
  opacity: .75;
}
.cid-umiJtJo3gO .nav-link:active,
.cid-umiJtJo3gO .dropdown-item:active {
  color: #ddb693;
}
@media (min-width: 1500px) {
  .cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse {
    max-width: 90% !important;
    padding-right: 5rem;
  }
  .cid-umiJtJo3gO .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-umiJtJo3gO .outstanding {
  display: inline-block;
  padding: 0 2rem;
  vertical-align: middle;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-umiJtJo3gO .outstanding {
    padding: 0.7rem 0 !important;
    display: -webkit-flex;
    margin: 0rem 1.25rem !important;
    -webkit-align-items: center;
  }
}
.cid-t0goLFakXY {
  overflow: hidden !important;
  background-image: url("../../../assets/images/8a0297c9c159b6f554cae29442d5c45a.jpg-736x920.jpg");
}
.cid-t0goLFakXY .animated-element {
  color: #fafafa;
}
.cid-t0goLFakXY .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (min-width: 992px) {
  .cid-t0goLFakXY .img-block {
    padding-right: 2rem;
  }
}
.cid-t0goLFakXY .mbr-section-subtitle {
  color: #ffef00;
}
.cid-t0goLFakXY .mbr-text,
.cid-t0goLFakXY .mbr-section-btn {
  color: #efefef;
}
.cid-t0goLFakXY .mbr-section-title {
  color: #a26a38;
  text-align: left;
}
.cid-tUjtc25QIo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tUjtc25QIo .section-head {
  margin-bottom: 2rem;
}
.cid-tUjtc25QIo .mbr-section-title {
  text-align: right;
  margin-bottom: 1.5rem;
}
.cid-tUjtc25QIo .mbr-section-subtitle {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-tUjtc25QIo .row {
    text-align: center;
  }
}
.cid-tUjtc25QIo .wave-container {
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: -1px;
  overflow: hidden;
}
.cid-tUjtc25QIo .wave-container .wave {
  width: 5500px;
  position: relative;
  left: -3300px;
}
.cid-tUjtc25QIo .wave-container .wave svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tUjtc25QIo .wave-container .wave svg path {
  fill: #000000;
}
@keyframes wavy {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
    animation-timing-function: linear;
  }
  100% {
    opacity: 1;
    transform: translateX(3230px) translateY(0px) rotate(0deg) scale(1, 1);
  }
}
.cid-t0gr0CqRBk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-t0gr0CqRBk h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-t0gr0CqRBk span {
  background-image: url("../../../assets/images/istockphoto-1367614696-612x612.jpg-612x408.jpg");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-t0gr0CqRBk .mbr-section-title {
  color: #ffffff;
}
.cid-uLi8OpX1pv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uLi8OpX1pv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLi8OpX1pv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLi8OpX1pv .row {
  justify-content: center;
}
.cid-uLi8OpX1pv .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLi8OpX1pv .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uLi8OpX1pv .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uLi8OpX1pv .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 1440px) {
  .cid-uLi8OpX1pv .items-wrapper {
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .cid-uLi8OpX1pv .items-wrapper {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .cid-uLi8OpX1pv .items-wrapper {
    display: block;
  }
}
.cid-uLi8OpX1pv .item {
  transition: all .3s ease;
}
@media (max-width: 768px) {
  .cid-uLi8OpX1pv .item {
    margin-bottom: 16px;
  }
}
.cid-uLi8OpX1pv .item:hover .item-wrapper .item-img img,
.cid-uLi8OpX1pv .item:focus .item-wrapper .item-img img {
  transform: scale(1.05);
}
.cid-uLi8OpX1pv .item .item-wrapper {
  height: 100%;
  border: 3px solid #c79364;
  padding: 48px;
}
@media (max-width: 1440px) {
  .cid-uLi8OpX1pv .item .item-wrapper {
    padding: 30px;
  }
}
@media (max-width: 1200px) {
  .cid-uLi8OpX1pv .item .item-wrapper {
    padding: 30px 20px;
  }
}
.cid-uLi8OpX1pv .item .item-wrapper .item-img {
  margin-bottom: 40px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uLi8OpX1pv .item .item-wrapper .item-img {
    margin-bottom: 30px;
  }
}
.cid-uLi8OpX1pv .item .item-wrapper .item-img img {
  height: 500px;
  object-fit: cover;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-uLi8OpX1pv .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uLi8OpX1pv .item .item-wrapper .card-box .card-name {
  margin-bottom: 10px;
}
.cid-uLi8OpX1pv .item .item-wrapper .card-box .card-role {
  margin-bottom: 0;
}
.cid-uLi8OpX1pv .item .item-wrapper .card-box .text-wrapper .card-text {
  display: inline-block;
  width: 80%;
  margin-top: 40px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uLi8OpX1pv .item .item-wrapper .card-box .text-wrapper .card-text {
    width: 100%;
    margin-top: 30px;
  }
}
.cid-uLi8OpX1pv .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 40px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uLi8OpX1pv .item .item-wrapper .card-box .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uLi8OpX1pv .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
  width: 100%;
}
.cid-uLi8OpX1pv .mbr-section-title {
  color: #ffffff;
}
.cid-uLi8OpX1pv .card-name {
  color: #c79364;
}
.cid-uLi8OpX1pv .card-role {
  color: #cbff5b;
}
.cid-uLi8OpX1pv .card-text {
  color: #ffffff;
}
.cid-uLi8OpX1pv .mbr-tag {
  color: #000000;
}
.cid-umixRFuIK0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-umixRFuIK0 .mbr-section-subtitle {
  margin-bottom: 1.5rem;
}
.cid-umixRFuIK0 .linkBtn {
  margin-top: 2.5rem;
}
.cid-umixRFuIK0 b,
.cid-umixRFuIK0 strong {
  font-weight: 500;
  color: #a26a38;
}
@media (max-width: 767px) {
  .cid-umixRFuIK0 .mbr-section-subtitle {
    margin-bottom: 0.75rem;
  }
  .cid-umixRFuIK0 .linkBtn {
    margin-top: 1.5rem;
    text-align: left;
  }
}
.cid-umixRFuIK0 .mbr-section-title,
.cid-umixRFuIK0 .linkBtn {
  color: #fafafa;
  text-align: center;
}
.cid-umixRFuIK0 H4 {
  color: #dfccee;
}
.cid-uLi9pKi73F {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #040402;
}
.cid-uLi9pKi73F h3 {
  text-align: center;
  letter-spacing: 0;
}
.cid-uLi9pKi73F .wrap {
  width: 130px;
  height: 130px;
  margin: 0 auto;
}
.cid-uLi9pKi73F .pie_progress__number {
  font-weight: 600;
  text-align: center !important;
  color: #999999;
}
.cid-uLi9pKi73F .mbr-section-subtitle {
  color: #999999;
}
.cid-uLi9pKi73F .card-title {
  margin-bottom: 0;
}
.cid-uLi9pKi73F .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-uLi9pKi73F .svg-gradient {
  position: absolute;
}
.cid-uLi9pKi73F svg {
  overflow: visible;
}
.cid-uLi9pKi73F ellipse {
  stroke: rgba(206, 206, 206, 0.4);
  stroke-width: 14px;
}
.cid-uLi9pKi73F path {
  stroke-width: 14px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uLi9pKi73F .card {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
.cid-uLi9pKi73F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLi9pKi73F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNaxlV4CXa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNaxlV4CXa .section-head {
  margin-bottom: 2rem;
}
.cid-uNaxlV4CXa .mbr-section-title {
  text-align: right;
  margin-bottom: 1.5rem;
}
.cid-uNaxlV4CXa .mbr-section-subtitle {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-uNaxlV4CXa .row {
    text-align: center;
  }
}
.cid-uNaxlV4CXa .wave-container {
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: -1px;
  overflow: hidden;
}
.cid-uNaxlV4CXa .wave-container .wave {
  width: 5500px;
  position: relative;
  left: -3300px;
}
.cid-uNaxlV4CXa .wave-container .wave svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: wavy 35s infinite linear;
  backface-visibility: hidden;
}
.cid-uNaxlV4CXa .wave-container .wave svg path {
  fill: #ffffff;
}
@keyframes wavy {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
    animation-timing-function: linear;
  }
  100% {
    opacity: 1;
    transform: translateX(3230px) translateY(0px) rotate(0deg) scale(1, 1);
  }
}
.cid-umiNgwyd9r {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-umiNgwyd9r .row {
  flex-direction: row-reverse;
}
.cid-umiNgwyd9r img {
  display: inline;
}
.cid-umiNgwyd9r .si {
  width: 100%;
}
.cid-umiNgwyd9r .si img {
  width: auto;
}
.cid-umiNgwyd9r .text {
  color: #ffffff;
}
.cid-umiNgwyd9r .text,
.cid-umiNgwyd9r .si {
  color: #000000;
  text-align: center;
}
.cid-umiNgwyd9r .copyright {
  font-family: "EB Garamond";
  color: #000000;
}
.cid-umiNgwyd9r .list {
  font-family: "Josefin Sans";
  letter-spacing: .2em;
  list-style: none;
  padding-left: 0;
  color: #a26a38;
}
@media (max-width: 991px) {
  .cid-umiNgwyd9r .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umiNgwyd9r .list {
    margin-bottom: 0rem;
  }
}
.cid-umiNgwyd9r .list li {
  margin-bottom: .5rem;
}
.cid-umiNgwyd9r .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 758px) {
  .cid-umiNgwyd9r .logo {
    margin-top: 2rem;
  }
}
.cid-umiNgwyd9r .mbr-section-subtitle {
  color: #000000;
}
.cid-umiJtJo3gO .navbar {
  background: #fafafa;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-umiJtJo3gO .navbar-dropdown.bg-color.transparent.opened {
  background: #fafafa;
}
.cid-umiJtJo3gO a {
  font-style: normal;
}
.cid-umiJtJo3gO .navbar-buttons {
  flex-wrap: wrap;
}
.cid-umiJtJo3gO .show {
  overflow: visible;
}
.cid-umiJtJo3gO .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-umiJtJo3gO .dropdown-item:active {
  background-color: transparent;
}
.cid-umiJtJo3gO .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-umiJtJo3gO .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.25rem !important;
  -webkit-align-items: center;
}
.cid-umiJtJo3gO .nav-item:focus,
.cid-umiJtJo3gO .nav-link:focus {
  outline: none;
}
.cid-umiJtJo3gO .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-umiJtJo3gO .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-umiJtJo3gO .menu-logo {
  margin-right: auto;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-umiJtJo3gO .dropdown .dropdown-menu {
  background: #fafafa;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-umiJtJo3gO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-umiJtJo3gO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umiJtJo3gO .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-umiJtJo3gO .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umiJtJo3gO .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-umiJtJo3gO .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-umiJtJo3gO button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-umiJtJo3gO button.navbar-toggler:focus {
  outline: none;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umiJtJo3gO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umiJtJo3gO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umiJtJo3gO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umiJtJo3gO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-umiJtJo3gO .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-umiJtJo3gO .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-umiJtJo3gO .collapsed .btn {
  display: -webkit-flex;
}
.cid-umiJtJo3gO .collapsed .outstanding {
  display: -webkit-flex;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.25rem !important;
  -webkit-align-items: center;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-umiJtJo3gO .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 91.5625vh;
  }
}
.cid-umiJtJo3gO .collapsed button.navbar-toggler {
  display: block;
}
.cid-umiJtJo3gO .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-umiJtJo3gO .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-umiJtJo3gO .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-umiJtJo3gO .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-umiJtJo3gO .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-umiJtJo3gO .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
@media (max-width: 991px) {
  .cid-umiJtJo3gO.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-umiJtJo3gO img {
    height: 3.8rem !important;
  }
  .cid-umiJtJo3gO .btn {
    display: -webkit-flex;
  }
  .cid-umiJtJo3gO button.navbar-toggler {
    display: block;
  }
  .cid-umiJtJo3gO .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-umiJtJo3gO .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-umiJtJo3gO .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing,
  .cid-umiJtJo3gO .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing .navbar-nav,
  .cid-umiJtJo3gO .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-umiJtJo3gO .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing .navbar-buttons,
  .cid-umiJtJo3gO .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-umiJtJo3gO .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-umiJtJo3gO .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-umiJtJo3gO .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-umiJtJo3gO .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-umiJtJo3gO .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-umiJtJo3gO .nav-link {
    justify-content: start !important;
  }
  .cid-umiJtJo3gO .navbar.opened {
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-umiJtJo3gO .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-umiJtJo3gO .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-umiJtJo3gO .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-umiJtJo3gO .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-umiJtJo3gO .nav-link:hover,
.cid-umiJtJo3gO .dropdown-item:hover {
  color: #000000 !important;
  opacity: .75;
}
.cid-umiJtJo3gO .nav-link:active,
.cid-umiJtJo3gO .dropdown-item:active {
  color: #ddb693;
}
@media (min-width: 1500px) {
  .cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse {
    max-width: 90% !important;
    padding-right: 5rem;
  }
  .cid-umiJtJo3gO .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-umiJtJo3gO .outstanding {
  display: inline-block;
  padding: 0 2rem;
  vertical-align: middle;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-umiJtJo3gO .outstanding {
    padding: 0.7rem 0 !important;
    display: -webkit-flex;
    margin: 0rem 1.25rem !important;
    -webkit-align-items: center;
  }
}
.cid-ulgQbBeGva {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ulgQbBeGva .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulgQbBeGva .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulgQbBeGva .container-fluid {
  padding: 0 32px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ulgQbBeGva .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ulgQbBeGva .container {
    padding: 0 20px;
  }
}
.cid-ulgQbBeGva .row {
  padding: 90px 82px;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ulgQbBeGva .row {
    padding: 50px 16px;
  }
}
.cid-ulgQbBeGva .row .blur-wrap_1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background-color: #a26a38;
  filter: blur(120px);
}
.cid-ulgQbBeGva .row .blur-wrap_2 {
  position: absolute;
  bottom: -8rem;
  right: 15%;
  width: 500px;
  height: 500px;
  border-radius: 100%;
  background-color: #a26a38;
  filter: blur(150px);
}
.cid-ulgQbBeGva .row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #000000;
  opacity: 1;
}
.cid-ulgQbBeGva .row .image-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}
.cid-ulgQbBeGva .row .image-wrapper img {
  height: 400px;
  width: 70%;
  object-fit: cover;
  border-radius: 50px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-ulgQbBeGva .row .image-wrapper img {
    height: 300px;
    width: 100%;
    margin: 0;
  }
}
.cid-ulgQbBeGva .row .title-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-ulgQbBeGva .row .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-ulgQbBeGva .row .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ulgQbBeGva .row .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ulgQbBeGva .row .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-ulgQbBeGva .mbr-desc {
  color: #ffffff;
}
.cid-ulgQbBeGva .mbr-section-title {
  color: #ffffff;
}
.cid-ulgQbBeGva .mbr-text {
  color: #ffffff;
}
.cid-ulgQbBeGva .mbr-section-title,
.cid-ulgQbBeGva .mbr-section-btn {
  color: #fafafa;
  text-align: left;
}
.cid-ulgSiXeQpq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ulgSiXeQpq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulgSiXeQpq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulgSiXeQpq .container-fluid {
  padding: 0 32px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ulgSiXeQpq .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ulgSiXeQpq .container {
    padding: 0 20px;
  }
}
.cid-ulgSiXeQpq .container,
.cid-ulgSiXeQpq .container-fluid {
  position: relative;
}
.cid-ulgSiXeQpq .container .blur-wrap,
.cid-ulgSiXeQpq .container-fluid .blur-wrap {
  position: absolute;
  bottom: -3rem;
  right: 25%;
  width: 250px;
  height: 250px;
  border-radius: 100%;
  background-image: linear-gradient(45deg, #a26a38 10%, #ddb693 60%);
  filter: blur(50px);
}
.cid-ulgSiXeQpq .row.blur-row {
  padding: 50px;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ulgSiXeQpq .row.blur-row {
    padding: 32px 16px;
  }
}
.cid-ulgSiXeQpq .row.blur-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #522802;
  opacity: .2;
}
.cid-ulgSiXeQpq .mbr-section-title {
  margin-bottom: 50px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ulgSiXeQpq .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ulgSiXeQpq .dragArea.row {
  padding: 0;
  border-radius: 0;
}
.cid-ulgSiXeQpq .dragArea.row::before {
  content: none;
}
.cid-ulgSiXeQpq .dragArea.row .form-group {
  padding-left: 0.1rem;
  padding-right: 0.1rem;
  margin-bottom: 16px !important;
}
.cid-ulgSiXeQpq .dragArea.row .form-group .form-control {
  padding: 0 20px;
  border-radius: 65px;
  border: none;
  min-height: 65px;
  background-color: #ffffff;
  box-shadow: none;
}
.cid-ulgSiXeQpq .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
  opacity: .5;
}
.cid-ulgSiXeQpq .dragArea.row .form-group textarea {
  padding: 20px;
}
.cid-ulgSiXeQpq .dragArea.row .form-group .form-check .form-check-input {
  background-color: #a26a38;
  border-collapse: #a26a38;
}
.cid-ulgSiXeQpq .dragArea.row .mbr-section-btn {
  padding-left: 0.1rem;
  padding-right: 0.1rem;
}
.cid-ulgSiXeQpq .dragArea.row .mbr-section-btn .btn {
  padding: 20px 50px;
  border-radius: 65px;
}
.cid-ulgSiXeQpq .row.forms-row {
  padding: 0;
  border-radius: 0;
}
.cid-ulgSiXeQpq .row.forms-row::before {
  content: none !important;
}
.cid-ulgSiXeQpq .mbr-desc {
  color: #ffffff;
}
.cid-ulgSiXeQpq .mbr-text {
  color: #ffffff;
}
.cid-ulgSiXeQpq label {
  color: #f5fd7b;
}
.cid-ulgSiXeQpq .mbr-section-title,
.cid-ulgSiXeQpq .mbr-section-btn {
  color: #a26a38;
}
.cid-ulgSzMQ0AH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ulgSzMQ0AH .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #fff;
  background-color: #c79364;
  margin-bottom: 2rem;
  border-radius: 50%;
  width: 56px;
  height: 56px;
}
.cid-ulgSzMQ0AH .card {
  margin-bottom: 1.5rem;
}
.cid-ulgSzMQ0AH .card-wrapper {
  padding: 3rem 2.5rem;
  background-color: #ffffff;
  border-width: 0 0 4px 0;
  border-style: solid;
}
.cid-ulgSzMQ0AH .card-wrapper-1 {
  border-color: #a26a38;
}
.cid-ulgSzMQ0AH .card-wrapper-2 {
  border-color: #a26a38;
}
.cid-ulgSzMQ0AH .card-wrapper-3 {
  border-color: #bcd9df;
}
.cid-ulgSzMQ0AH .card-wrapper-4 {
  border-color: #67beb0;
}
.cid-ulgSzMQ0AH .card-title {
  position: relative;
  width: 100%;
  cursor: pointer;
  display: block;
  margin-right: 1rem;
  margin-bottom: 2rem;
}
.cid-ulgSzMQ0AH .card-text {
  color: #000000;
  text-align: left;
}
.cid-ulgSzMQ0AH .card-title,
.cid-ulgSzMQ0AH .icon-wrap {
  color: #000000;
  text-align: left;
}
.cid-ulgSzMQ0AH .mbr-section-title {
  text-align: left;
  color: #c79364;
}
.cid-ulgSzMQ0AH .card-subtitle {
  text-align: left;
  color: #000000;
}
.cid-ulgSzMQ0AH .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulgSzMQ0AH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUjwnyw1qB {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tUjwnyw1qB .line {
  background-color: #c79364;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tUjwnyw1qB .mbr-text {
  color: #fafafa;
}
.cid-uNaCCuthcz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNaCCuthcz .section-head {
  margin-bottom: 2rem;
}
.cid-uNaCCuthcz .mbr-section-title {
  text-align: right;
  margin-bottom: 1.5rem;
}
.cid-uNaCCuthcz .mbr-section-subtitle {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-uNaCCuthcz .row {
    text-align: center;
  }
}
.cid-uNaCCuthcz .wave-container {
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: -1px;
  overflow: hidden;
}
.cid-uNaCCuthcz .wave-container .wave {
  width: 5500px;
  position: relative;
  left: -3300px;
}
.cid-uNaCCuthcz .wave-container .wave svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: wavy 35s infinite linear;
  backface-visibility: hidden;
}
.cid-uNaCCuthcz .wave-container .wave svg path {
  fill: #ffffff;
}
@keyframes wavy {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
    animation-timing-function: linear;
  }
  100% {
    opacity: 1;
    transform: translateX(3230px) translateY(0px) rotate(0deg) scale(1, 1);
  }
}
.cid-umiNgwyd9r {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-umiNgwyd9r .row {
  flex-direction: row-reverse;
}
.cid-umiNgwyd9r img {
  display: inline;
}
.cid-umiNgwyd9r .si {
  width: 100%;
}
.cid-umiNgwyd9r .si img {
  width: auto;
}
.cid-umiNgwyd9r .text {
  color: #ffffff;
}
.cid-umiNgwyd9r .text,
.cid-umiNgwyd9r .si {
  color: #000000;
  text-align: center;
}
.cid-umiNgwyd9r .copyright {
  font-family: "EB Garamond";
  color: #000000;
}
.cid-umiNgwyd9r .list {
  font-family: "Josefin Sans";
  letter-spacing: .2em;
  list-style: none;
  padding-left: 0;
  color: #a26a38;
}
@media (max-width: 991px) {
  .cid-umiNgwyd9r .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umiNgwyd9r .list {
    margin-bottom: 0rem;
  }
}
.cid-umiNgwyd9r .list li {
  margin-bottom: .5rem;
}
.cid-umiNgwyd9r .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 758px) {
  .cid-umiNgwyd9r .logo {
    margin-top: 2rem;
  }
}
.cid-umiNgwyd9r .mbr-section-subtitle {
  color: #000000;
}
.cid-umiJtJo3gO .navbar {
  background: #fafafa;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-umiJtJo3gO .navbar-dropdown.bg-color.transparent.opened {
  background: #fafafa;
}
.cid-umiJtJo3gO a {
  font-style: normal;
}
.cid-umiJtJo3gO .navbar-buttons {
  flex-wrap: wrap;
}
.cid-umiJtJo3gO .show {
  overflow: visible;
}
.cid-umiJtJo3gO .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-umiJtJo3gO .dropdown-item:active {
  background-color: transparent;
}
.cid-umiJtJo3gO .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-umiJtJo3gO .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.25rem !important;
  -webkit-align-items: center;
}
.cid-umiJtJo3gO .nav-item:focus,
.cid-umiJtJo3gO .nav-link:focus {
  outline: none;
}
.cid-umiJtJo3gO .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-umiJtJo3gO .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-umiJtJo3gO .menu-logo {
  margin-right: auto;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-umiJtJo3gO .dropdown .dropdown-menu {
  background: #fafafa;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-umiJtJo3gO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-umiJtJo3gO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umiJtJo3gO .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-umiJtJo3gO .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umiJtJo3gO .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-umiJtJo3gO .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-umiJtJo3gO button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-umiJtJo3gO button.navbar-toggler:focus {
  outline: none;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umiJtJo3gO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umiJtJo3gO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umiJtJo3gO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umiJtJo3gO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-umiJtJo3gO .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-umiJtJo3gO .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-umiJtJo3gO .collapsed .btn {
  display: -webkit-flex;
}
.cid-umiJtJo3gO .collapsed .outstanding {
  display: -webkit-flex;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.25rem !important;
  -webkit-align-items: center;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-umiJtJo3gO .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 91.5625vh;
  }
}
.cid-umiJtJo3gO .collapsed button.navbar-toggler {
  display: block;
}
.cid-umiJtJo3gO .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-umiJtJo3gO .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-umiJtJo3gO .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-umiJtJo3gO .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-umiJtJo3gO .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-umiJtJo3gO .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
@media (max-width: 991px) {
  .cid-umiJtJo3gO.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-umiJtJo3gO img {
    height: 3.8rem !important;
  }
  .cid-umiJtJo3gO .btn {
    display: -webkit-flex;
  }
  .cid-umiJtJo3gO button.navbar-toggler {
    display: block;
  }
  .cid-umiJtJo3gO .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-umiJtJo3gO .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-umiJtJo3gO .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing,
  .cid-umiJtJo3gO .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing .navbar-nav,
  .cid-umiJtJo3gO .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-umiJtJo3gO .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing .navbar-buttons,
  .cid-umiJtJo3gO .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-umiJtJo3gO .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-umiJtJo3gO .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-umiJtJo3gO .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-umiJtJo3gO .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-umiJtJo3gO .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-umiJtJo3gO .nav-link {
    justify-content: start !important;
  }
  .cid-umiJtJo3gO .navbar.opened {
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-umiJtJo3gO .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-umiJtJo3gO .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-umiJtJo3gO .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-umiJtJo3gO .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-umiJtJo3gO .nav-link:hover,
.cid-umiJtJo3gO .dropdown-item:hover {
  color: #000000 !important;
  opacity: .75;
}
.cid-umiJtJo3gO .nav-link:active,
.cid-umiJtJo3gO .dropdown-item:active {
  color: #ddb693;
}
@media (min-width: 1500px) {
  .cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse {
    max-width: 90% !important;
    padding-right: 5rem;
  }
  .cid-umiJtJo3gO .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-umiJtJo3gO .outstanding {
  display: inline-block;
  padding: 0 2rem;
  vertical-align: middle;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-umiJtJo3gO .outstanding {
    padding: 0.7rem 0 !important;
    display: -webkit-flex;
    margin: 0rem 1.25rem !important;
    -webkit-align-items: center;
  }
}
.cid-uLdnnZqSFP {
  background-image: url("../../../assets/images/a43294d45ecac1743b86836eb08a70de.jpg-736x1104.jpg");
}
.cid-uLdnnZqSFP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLdnnZqSFP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLdnnZqSFP .container-fluid {
  margin: 0;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uLdnnZqSFP .container-fluid {
    padding: 0 25px;
  }
}
.cid-uLdnnZqSFP .container-fluid .row {
  padding: 0;
}
.cid-uLdnnZqSFP .title-wrapper .image-wrapper {
  margin-bottom: 36px;
}
.cid-uLdnnZqSFP .title-wrapper .image-wrapper img {
  width: 108px;
  height: 108px;
  display: inline;
}
.cid-uLdnnZqSFP .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uLdnnZqSFP .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uLdnnZqSFP .title-wrapper .mbr-section-btn .btn {
  background-image: linear-gradient(99deg, rgba(255, 255, 255, 0) 30%, #ffffff 100%), radial-gradient(circle at 50% 50%, #ffffff 0, rgba(255, 255, 255, 0) 70%);
  color: #000000 !important;
}
.cid-uLdnnZqSFP .mbr-section-title {
  color: #ffffff;
}
.cid-uLdnnZqSFP .mbr-text {
  color: #b6b6b6;
  text-align: center;
}
.cid-uLdnnZqSFP .mbr-section-title,
.cid-uLdnnZqSFP .mbr-section-btn,
.cid-uLdnnZqSFP .image-wrapper {
  text-align: center;
}
.cid-umiHnE1Cgp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-umiHnE1Cgp span {
  color: #c1c1c1;
}
.cid-umiHnE1Cgp .mbr-text {
  padding-left: 1.5rem;
}
.cid-umiHnE1Cgp .mbr-section-title {
  padding-left: 1.5px;
}
.cid-umiHnE1Cgp .mbr-section-btn {
  margin-top: 22.5px;
}
.cid-umiHnE1Cgp H1 {
  text-align: left;
  color: #c79364;
}
.cid-umiHnE1Cgp .mbr-text,
.cid-umiHnE1Cgp .mbr-section-btn {
  text-align: left;
  color: #fafafa;
}
.cid-umiSGcgjVg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-umiSGcgjVg h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-umiSGcgjVg span {
  background-image: url("../../../assets/images/istockphoto-1367614696-612x612.jpg-612x408.jpg");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-umiSGcgjVg .mbr-section-title {
  color: #ffffff;
}
.cid-umiHhjw2wz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-umiHhjw2wz .title_block {
  margin-bottom: 50px;
}
.cid-umiHhjw2wz .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-umiHhjw2wz .mbr-section-title {
  color: #ffffff;
}
.cid-umiHhjw2wz .item:nth-child(1) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(162, 106, 56, 0.4);
  background-image: linear-gradient(40deg, #a26a38 0%, #ce9d72 100%);
}
.cid-umiHhjw2wz .item:nth-child(2) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(199, 147, 100, 0.4);
  background-image: linear-gradient(40deg, #c79364 0%, #e2c7af 100%);
}
.cid-umiHhjw2wz .item:nth-child(3) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(221, 182, 147, 0.4);
  background-image: linear-gradient(40deg, #ddb693 0%, #f5eae1 100%);
}
.cid-umiHhjw2wz .item:nth-child(4) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(162, 106, 56, 0.4);
  background-image: linear-gradient(40deg, #a26a38 0%, #ce9d72 100%);
}
.cid-umiHhjw2wz .item:nth-child(5) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(162, 106, 56, 0.4);
  background-image: linear-gradient(40deg, #a26a38 0%, #ce9d72 100%);
}
.cid-umiHhjw2wz .item:nth-child(6) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(162, 106, 56, 0.4);
  background-image: linear-gradient(40deg, #a26a38 0%, #ce9d72 100%);
}
.cid-umiHhjw2wz .iconfont-wrapper {
  left: 50%;
  top: -35px;
  width: 70px;
  height: 70px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  transform: translateX(-50%);
}
.cid-umiHhjw2wz .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 34px;
  line-height: 70px;
}
.cid-umiHhjw2wz .card_wrap {
  padding: 45px;
  padding-top: 65px;
  margin-top: 60px;
  border-radius: 5px;
  position: relative;
  background-color: #000000;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-umiHhjw2wz .card_wrap:hover {
  transform: translateY(-16px);
}
.cid-umiHhjw2wz .card_title {
  margin-bottom: 20px;
  color: #fafafa;
}
@media (max-width: 991px) {
  .cid-umiHhjw2wz .title_block {
    margin-bottom: 30px;
  }
  .cid-umiHhjw2wz .card_wrap {
    padding: 35px;
    padding-top: 65px;
  }
}
.cid-umiHhjw2wz .mbr-fallback-image.disabled {
  display: none;
}
.cid-umiHhjw2wz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLhm7jPh04 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uLhm7jPh04 .title_block {
  margin-bottom: 50px;
}
.cid-uLhm7jPh04 .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-uLhm7jPh04 .mbr-section-title {
  color: #ffffff;
}
.cid-uLhm7jPh04 .item:nth-child(1) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(162, 106, 56, 0.4);
  background-image: linear-gradient(40deg, #a26a38 0%, #ce9d72 100%);
}
.cid-uLhm7jPh04 .item:nth-child(2) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(199, 147, 100, 0.4);
  background-image: linear-gradient(40deg, #c79364 0%, #e2c7af 100%);
}
.cid-uLhm7jPh04 .item:nth-child(3) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(221, 182, 147, 0.4);
  background-image: linear-gradient(40deg, #ddb693 0%, #f5eae1 100%);
}
.cid-uLhm7jPh04 .item:nth-child(4) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(162, 106, 56, 0.4);
  background-image: linear-gradient(40deg, #a26a38 0%, #ce9d72 100%);
}
.cid-uLhm7jPh04 .item:nth-child(5) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(162, 106, 56, 0.4);
  background-image: linear-gradient(40deg, #a26a38 0%, #ce9d72 100%);
}
.cid-uLhm7jPh04 .item:nth-child(6) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(162, 106, 56, 0.4);
  background-image: linear-gradient(40deg, #a26a38 0%, #ce9d72 100%);
}
.cid-uLhm7jPh04 .iconfont-wrapper {
  left: 50%;
  top: -35px;
  width: 70px;
  height: 70px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  transform: translateX(-50%);
}
.cid-uLhm7jPh04 .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 34px;
  line-height: 70px;
}
.cid-uLhm7jPh04 .card_wrap {
  padding: 45px;
  padding-top: 65px;
  margin-top: 60px;
  border-radius: 5px;
  position: relative;
  background-color: #000000;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uLhm7jPh04 .card_wrap:hover {
  transform: translateY(-16px);
}
.cid-uLhm7jPh04 .card_title {
  margin-bottom: 20px;
  color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uLhm7jPh04 .title_block {
    margin-bottom: 30px;
  }
  .cid-uLhm7jPh04 .card_wrap {
    padding: 35px;
    padding-top: 65px;
  }
}
.cid-uLhm7jPh04 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLhm7jPh04 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umiSGN3GIb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-umiSGN3GIb h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
}
.cid-umiSGN3GIb span {
  background-image: url("../../../assets/images/istockphoto-1367614696-612x612.jpg-612x408.jpg");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-umiSGN3GIb .mbr-section-title {
  color: #ffffff;
}
.cid-uLhpgQKxIn {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uLhpgQKxIn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLhpgQKxIn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLhpgQKxIn .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uLhpgQKxIn .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uLhpgQKxIn .content-wrapper {
  margin: 0 -8px;
}
.cid-uLhpgQKxIn .content-wrapper .card {
  padding: 0 8px;
}
.cid-uLhpgQKxIn .image-wrapper {
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uLhpgQKxIn .image-wrapper {
    margin-bottom: 12px;
  }
}
.cid-uLhpgQKxIn .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uLhpgQKxIn .image-wrapper img {
    height: 300px;
  }
}
.cid-uLhpgQKxIn .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 992px) {
  .cid-uLhpgQKxIn .items-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.cid-uLhpgQKxIn .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #0e0c0c;
  padding: 64px;
}
@media (max-width: 1440px) {
  .cid-uLhpgQKxIn .items-wrapper .item .item-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uLhpgQKxIn .items-wrapper .item .item-wrapper {
    padding: 24px;
  }
}
.cid-uLhpgQKxIn .items-wrapper .item .item-wrapper .iconfont-wrap {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uLhpgQKxIn .items-wrapper .item .item-wrapper .iconfont-wrap {
    margin-bottom: 24px;
  }
}
.cid-uLhpgQKxIn .items-wrapper .item .item-wrapper .iconfont-wrap .mbr-iconfont {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #c79364;
  font-size: 36px;
  color: #e5e5e5;
}
.cid-uLhpgQKxIn .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 24px;
}
.cid-uLhpgQKxIn .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uLhpgQKxIn .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 24px;
}
.cid-uLhpgQKxIn .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uLhpgQKxIn .mbr-section-title {
  color: #a26a38;
  text-align: center;
}
.cid-uLhpgQKxIn .card-title {
  color: #2c2c26;
}
.cid-uLhpgQKxIn .card-text {
  color: #fafafa;
}
.cid-uLhpgQKxIn .card-title,
.cid-uLhpgQKxIn .iconfont-wrap {
  color: #fafafa;
  text-align: center;
}
.cid-uLhrPbvkzE {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uLhrPbvkzE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLhrPbvkzE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLhrPbvkzE .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uLhrPbvkzE .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uLhrPbvkzE .content-wrapper {
  margin: 0 -8px;
}
.cid-uLhrPbvkzE .content-wrapper .card {
  padding: 0 8px;
}
.cid-uLhrPbvkzE .image-wrapper {
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uLhrPbvkzE .image-wrapper {
    margin-bottom: 12px;
  }
}
.cid-uLhrPbvkzE .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uLhrPbvkzE .image-wrapper img {
    height: 300px;
  }
}
.cid-uLhrPbvkzE .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 992px) {
  .cid-uLhrPbvkzE .items-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.cid-uLhrPbvkzE .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #0e0c0c;
  padding: 64px;
}
@media (max-width: 1440px) {
  .cid-uLhrPbvkzE .items-wrapper .item .item-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uLhrPbvkzE .items-wrapper .item .item-wrapper {
    padding: 24px;
  }
}
.cid-uLhrPbvkzE .items-wrapper .item .item-wrapper .iconfont-wrap {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uLhrPbvkzE .items-wrapper .item .item-wrapper .iconfont-wrap {
    margin-bottom: 24px;
  }
}
.cid-uLhrPbvkzE .items-wrapper .item .item-wrapper .iconfont-wrap .mbr-iconfont {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #c79364;
  font-size: 36px;
  color: #e5e5e5;
}
.cid-uLhrPbvkzE .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 24px;
}
.cid-uLhrPbvkzE .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uLhrPbvkzE .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 24px;
}
.cid-uLhrPbvkzE .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uLhrPbvkzE .mbr-section-title {
  color: #a26a38;
  text-align: center;
}
.cid-uLhrPbvkzE .card-title {
  color: #2c2c26;
}
.cid-uLhrPbvkzE .card-text {
  color: #fafafa;
}
.cid-uLhrPbvkzE .card-title,
.cid-uLhrPbvkzE .iconfont-wrap {
  color: #fafafa;
  text-align: center;
}
.cid-uLhtznJAyd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uLhtznJAyd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLhtznJAyd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLhtznJAyd .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uLhtznJAyd .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uLhtznJAyd .content-wrapper {
  margin: 0 -8px;
}
.cid-uLhtznJAyd .content-wrapper .card {
  padding: 0 8px;
}
.cid-uLhtznJAyd .image-wrapper {
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uLhtznJAyd .image-wrapper {
    margin-bottom: 12px;
  }
}
.cid-uLhtznJAyd .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uLhtznJAyd .image-wrapper img {
    height: 300px;
  }
}
.cid-uLhtznJAyd .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 992px) {
  .cid-uLhtznJAyd .items-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.cid-uLhtznJAyd .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #0e0c0c;
  padding: 64px;
}
@media (max-width: 1440px) {
  .cid-uLhtznJAyd .items-wrapper .item .item-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uLhtznJAyd .items-wrapper .item .item-wrapper {
    padding: 24px;
  }
}
.cid-uLhtznJAyd .items-wrapper .item .item-wrapper .iconfont-wrap {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uLhtznJAyd .items-wrapper .item .item-wrapper .iconfont-wrap {
    margin-bottom: 24px;
  }
}
.cid-uLhtznJAyd .items-wrapper .item .item-wrapper .iconfont-wrap .mbr-iconfont {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #c79364;
  font-size: 36px;
  color: #e5e5e5;
}
.cid-uLhtznJAyd .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 24px;
}
.cid-uLhtznJAyd .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uLhtznJAyd .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 24px;
}
.cid-uLhtznJAyd .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uLhtznJAyd .mbr-section-title {
  color: #a26a38;
  text-align: center;
}
.cid-uLhtznJAyd .card-title {
  color: #2c2c26;
}
.cid-uLhtznJAyd .card-text {
  color: #fafafa;
}
.cid-uLhtznJAyd .card-title,
.cid-uLhtznJAyd .iconfont-wrap {
  color: #fafafa;
  text-align: center;
}
.cid-uLhuCHjD15 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uLhuCHjD15 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLhuCHjD15 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLhuCHjD15 .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uLhuCHjD15 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uLhuCHjD15 .content-wrapper {
  margin: 0 -8px;
}
.cid-uLhuCHjD15 .content-wrapper .card {
  padding: 0 8px;
}
.cid-uLhuCHjD15 .image-wrapper {
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uLhuCHjD15 .image-wrapper {
    margin-bottom: 12px;
  }
}
.cid-uLhuCHjD15 .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uLhuCHjD15 .image-wrapper img {
    height: 300px;
  }
}
.cid-uLhuCHjD15 .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 992px) {
  .cid-uLhuCHjD15 .items-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.cid-uLhuCHjD15 .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #0e0c0c;
  padding: 64px;
}
@media (max-width: 1440px) {
  .cid-uLhuCHjD15 .items-wrapper .item .item-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uLhuCHjD15 .items-wrapper .item .item-wrapper {
    padding: 24px;
  }
}
.cid-uLhuCHjD15 .items-wrapper .item .item-wrapper .iconfont-wrap {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uLhuCHjD15 .items-wrapper .item .item-wrapper .iconfont-wrap {
    margin-bottom: 24px;
  }
}
.cid-uLhuCHjD15 .items-wrapper .item .item-wrapper .iconfont-wrap .mbr-iconfont {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #c79364;
  font-size: 36px;
  color: #e5e5e5;
}
.cid-uLhuCHjD15 .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 24px;
}
.cid-uLhuCHjD15 .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uLhuCHjD15 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 24px;
}
.cid-uLhuCHjD15 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uLhuCHjD15 .mbr-section-title {
  color: #a26a38;
  text-align: center;
}
.cid-uLhuCHjD15 .card-title {
  color: #2c2c26;
}
.cid-uLhuCHjD15 .card-text {
  color: #fafafa;
}
.cid-uLhuCHjD15 .card-title,
.cid-uLhuCHjD15 .iconfont-wrap {
  color: #fafafa;
  text-align: center;
}
.cid-uLhyPyVmZo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uLhyPyVmZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLhyPyVmZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLhyPyVmZo .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uLhyPyVmZo .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uLhyPyVmZo .content-wrapper {
  margin: 0 -8px;
}
.cid-uLhyPyVmZo .content-wrapper .card {
  padding: 0 8px;
}
.cid-uLhyPyVmZo .image-wrapper {
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uLhyPyVmZo .image-wrapper {
    margin-bottom: 12px;
  }
}
.cid-uLhyPyVmZo .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uLhyPyVmZo .image-wrapper img {
    height: 300px;
  }
}
.cid-uLhyPyVmZo .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 992px) {
  .cid-uLhyPyVmZo .items-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.cid-uLhyPyVmZo .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #0e0c0c;
  padding: 64px;
}
@media (max-width: 1440px) {
  .cid-uLhyPyVmZo .items-wrapper .item .item-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uLhyPyVmZo .items-wrapper .item .item-wrapper {
    padding: 24px;
  }
}
.cid-uLhyPyVmZo .items-wrapper .item .item-wrapper .iconfont-wrap {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uLhyPyVmZo .items-wrapper .item .item-wrapper .iconfont-wrap {
    margin-bottom: 24px;
  }
}
.cid-uLhyPyVmZo .items-wrapper .item .item-wrapper .iconfont-wrap .mbr-iconfont {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #c79364;
  font-size: 36px;
  color: #e5e5e5;
}
.cid-uLhyPyVmZo .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 24px;
}
.cid-uLhyPyVmZo .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uLhyPyVmZo .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 24px;
}
.cid-uLhyPyVmZo .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uLhyPyVmZo .mbr-section-title {
  color: #a26a38;
  text-align: center;
}
.cid-uLhyPyVmZo .card-title {
  color: #2c2c26;
}
.cid-uLhyPyVmZo .card-text {
  color: #fafafa;
}
.cid-uLhyPyVmZo .card-title,
.cid-uLhyPyVmZo .iconfont-wrap {
  color: #fafafa;
  text-align: center;
}
.cid-uLhAbubYAe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uLhAbubYAe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLhAbubYAe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLhAbubYAe .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uLhAbubYAe .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uLhAbubYAe .content-wrapper {
  margin: 0 -8px;
}
.cid-uLhAbubYAe .content-wrapper .card {
  padding: 0 8px;
}
.cid-uLhAbubYAe .image-wrapper {
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uLhAbubYAe .image-wrapper {
    margin-bottom: 12px;
  }
}
.cid-uLhAbubYAe .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uLhAbubYAe .image-wrapper img {
    height: 300px;
  }
}
.cid-uLhAbubYAe .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 992px) {
  .cid-uLhAbubYAe .items-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.cid-uLhAbubYAe .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #0e0c0c;
  padding: 64px;
}
@media (max-width: 1440px) {
  .cid-uLhAbubYAe .items-wrapper .item .item-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uLhAbubYAe .items-wrapper .item .item-wrapper {
    padding: 24px;
  }
}
.cid-uLhAbubYAe .items-wrapper .item .item-wrapper .iconfont-wrap {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uLhAbubYAe .items-wrapper .item .item-wrapper .iconfont-wrap {
    margin-bottom: 24px;
  }
}
.cid-uLhAbubYAe .items-wrapper .item .item-wrapper .iconfont-wrap .mbr-iconfont {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #c79364;
  font-size: 36px;
  color: #e5e5e5;
}
.cid-uLhAbubYAe .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 24px;
}
.cid-uLhAbubYAe .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uLhAbubYAe .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 24px;
}
.cid-uLhAbubYAe .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uLhAbubYAe .mbr-section-title {
  color: #a26a38;
  text-align: center;
}
.cid-uLhAbubYAe .card-title {
  color: #2c2c26;
}
.cid-uLhAbubYAe .card-text {
  color: #fafafa;
}
.cid-uLhAbubYAe .card-title,
.cid-uLhAbubYAe .iconfont-wrap {
  color: #fafafa;
  text-align: center;
}
.cid-uLhBvjdSy1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uLhBvjdSy1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLhBvjdSy1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLhBvjdSy1 .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uLhBvjdSy1 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uLhBvjdSy1 .content-wrapper {
  margin: 0 -8px;
}
.cid-uLhBvjdSy1 .content-wrapper .card {
  padding: 0 8px;
}
.cid-uLhBvjdSy1 .image-wrapper {
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uLhBvjdSy1 .image-wrapper {
    margin-bottom: 12px;
  }
}
.cid-uLhBvjdSy1 .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uLhBvjdSy1 .image-wrapper img {
    height: 300px;
  }
}
.cid-uLhBvjdSy1 .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 992px) {
  .cid-uLhBvjdSy1 .items-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.cid-uLhBvjdSy1 .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #0e0c0c;
  padding: 64px;
}
@media (max-width: 1440px) {
  .cid-uLhBvjdSy1 .items-wrapper .item .item-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uLhBvjdSy1 .items-wrapper .item .item-wrapper {
    padding: 24px;
  }
}
.cid-uLhBvjdSy1 .items-wrapper .item .item-wrapper .iconfont-wrap {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uLhBvjdSy1 .items-wrapper .item .item-wrapper .iconfont-wrap {
    margin-bottom: 24px;
  }
}
.cid-uLhBvjdSy1 .items-wrapper .item .item-wrapper .iconfont-wrap .mbr-iconfont {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #c79364;
  font-size: 36px;
  color: #e5e5e5;
}
.cid-uLhBvjdSy1 .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 24px;
}
.cid-uLhBvjdSy1 .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uLhBvjdSy1 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 24px;
}
.cid-uLhBvjdSy1 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uLhBvjdSy1 .mbr-section-title {
  color: #a26a38;
  text-align: center;
}
.cid-uLhBvjdSy1 .card-title {
  color: #2c2c26;
}
.cid-uLhBvjdSy1 .card-text {
  color: #fafafa;
}
.cid-uLhBvjdSy1 .card-title,
.cid-uLhBvjdSy1 .iconfont-wrap {
  color: #fafafa;
  text-align: center;
}
.cid-uLi1Dqvs1V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uLi1Dqvs1V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLi1Dqvs1V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLi1Dqvs1V .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uLi1Dqvs1V .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uLi1Dqvs1V .content-wrapper {
  margin: 0 -8px;
}
.cid-uLi1Dqvs1V .content-wrapper .card {
  padding: 0 8px;
}
.cid-uLi1Dqvs1V .image-wrapper {
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uLi1Dqvs1V .image-wrapper {
    margin-bottom: 12px;
  }
}
.cid-uLi1Dqvs1V .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uLi1Dqvs1V .image-wrapper img {
    height: 300px;
  }
}
.cid-uLi1Dqvs1V .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 992px) {
  .cid-uLi1Dqvs1V .items-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.cid-uLi1Dqvs1V .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background-color: #0e0c0c;
  padding: 64px;
}
@media (max-width: 1440px) {
  .cid-uLi1Dqvs1V .items-wrapper .item .item-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uLi1Dqvs1V .items-wrapper .item .item-wrapper {
    padding: 24px;
  }
}
.cid-uLi1Dqvs1V .items-wrapper .item .item-wrapper .iconfont-wrap {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uLi1Dqvs1V .items-wrapper .item .item-wrapper .iconfont-wrap {
    margin-bottom: 24px;
  }
}
.cid-uLi1Dqvs1V .items-wrapper .item .item-wrapper .iconfont-wrap .mbr-iconfont {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #c79364;
  font-size: 36px;
  color: #e5e5e5;
}
.cid-uLi1Dqvs1V .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 24px;
}
.cid-uLi1Dqvs1V .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uLi1Dqvs1V .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 24px;
}
.cid-uLi1Dqvs1V .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uLi1Dqvs1V .mbr-section-title {
  color: #a26a38;
  text-align: center;
}
.cid-uLi1Dqvs1V .card-title {
  color: #2c2c26;
}
.cid-uLi1Dqvs1V .card-text {
  color: #fafafa;
}
.cid-uLi1Dqvs1V .card-title,
.cid-uLi1Dqvs1V .iconfont-wrap {
  color: #fafafa;
  text-align: center;
}
.cid-uNatT81dCx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNatT81dCx .section-head {
  margin-bottom: 2rem;
}
.cid-uNatT81dCx .mbr-section-title {
  text-align: right;
  margin-bottom: 1.5rem;
}
.cid-uNatT81dCx .mbr-section-subtitle {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-uNatT81dCx .row {
    text-align: center;
  }
}
.cid-uNatT81dCx .wave-container {
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: -1px;
  overflow: hidden;
}
.cid-uNatT81dCx .wave-container .wave {
  width: 5500px;
  position: relative;
  left: -3300px;
}
.cid-uNatT81dCx .wave-container .wave svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: wavy 35s infinite linear;
  backface-visibility: hidden;
}
.cid-uNatT81dCx .wave-container .wave svg path {
  fill: #ffffff;
}
@keyframes wavy {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
    animation-timing-function: linear;
  }
  100% {
    opacity: 1;
    transform: translateX(3230px) translateY(0px) rotate(0deg) scale(1, 1);
  }
}
.cid-umiNgwyd9r {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-umiNgwyd9r .row {
  flex-direction: row-reverse;
}
.cid-umiNgwyd9r img {
  display: inline;
}
.cid-umiNgwyd9r .si {
  width: 100%;
}
.cid-umiNgwyd9r .si img {
  width: auto;
}
.cid-umiNgwyd9r .text {
  color: #ffffff;
}
.cid-umiNgwyd9r .text,
.cid-umiNgwyd9r .si {
  color: #000000;
  text-align: center;
}
.cid-umiNgwyd9r .copyright {
  font-family: "EB Garamond";
  color: #000000;
}
.cid-umiNgwyd9r .list {
  font-family: "Josefin Sans";
  letter-spacing: .2em;
  list-style: none;
  padding-left: 0;
  color: #a26a38;
}
@media (max-width: 991px) {
  .cid-umiNgwyd9r .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umiNgwyd9r .list {
    margin-bottom: 0rem;
  }
}
.cid-umiNgwyd9r .list li {
  margin-bottom: .5rem;
}
.cid-umiNgwyd9r .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 758px) {
  .cid-umiNgwyd9r .logo {
    margin-top: 2rem;
  }
}
.cid-umiNgwyd9r .mbr-section-subtitle {
  color: #000000;
}
.cid-umiJtJo3gO .navbar {
  background: #fafafa;
  transition: none;
  min-height: 77px;
  padding: 0.5rem 0;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.cid-umiJtJo3gO .navbar-dropdown.bg-color.transparent.opened {
  background: #fafafa;
}
.cid-umiJtJo3gO a {
  font-style: normal;
}
.cid-umiJtJo3gO .navbar-buttons {
  flex-wrap: wrap;
}
.cid-umiJtJo3gO .show {
  overflow: visible;
}
.cid-umiJtJo3gO .dropdown-menu {
  max-height: 400px;
  overflow: auto;
}
.cid-umiJtJo3gO .dropdown-item:active {
  background-color: transparent;
}
.cid-umiJtJo3gO .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-umiJtJo3gO .nav-item a {
  display: -webkit-flex;
  align-items: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.25rem !important;
  -webkit-align-items: center;
}
.cid-umiJtJo3gO .nav-item:focus,
.cid-umiJtJo3gO .nav-link:focus {
  outline: none;
}
.cid-umiJtJo3gO .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-umiJtJo3gO .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-umiJtJo3gO .menu-logo {
  margin-right: auto;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-umiJtJo3gO .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  padding-right: 1rem;
  max-width: 100%;
  width: 100%;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse {
  justify-content: space-between !important;
}
.cid-umiJtJo3gO .dropdown .dropdown-menu {
  background: #fafafa;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-umiJtJo3gO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-umiJtJo3gO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umiJtJo3gO .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-umiJtJo3gO .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umiJtJo3gO .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: none;
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-umiJtJo3gO .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
  width: auto;
}
.cid-umiJtJo3gO .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-umiJtJo3gO button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-umiJtJo3gO button.navbar-toggler:focus {
  outline: none;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umiJtJo3gO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umiJtJo3gO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umiJtJo3gO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umiJtJo3gO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umiJtJo3gO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
@media (min-width: 992px) {
  .cid-umiJtJo3gO .navbar:not(.collapsed) {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.cid-umiJtJo3gO .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-umiJtJo3gO .collapsed .btn {
  display: -webkit-flex;
}
.cid-umiJtJo3gO .collapsed .outstanding {
  display: -webkit-flex;
  padding: 0.7rem 0 !important;
  margin: 0rem 1.25rem !important;
  -webkit-align-items: center;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show {
  display: block !important;
  overflow: auto;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-umiJtJo3gO .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-umiJtJo3gO .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-umiJtJo3gO .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 91.5625vh;
  }
}
.cid-umiJtJo3gO .collapsed button.navbar-toggler {
  display: block;
}
.cid-umiJtJo3gO .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-umiJtJo3gO .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-umiJtJo3gO .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-umiJtJo3gO .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-umiJtJo3gO .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-umiJtJo3gO .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
@media (max-width: 991px) {
  .cid-umiJtJo3gO.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-umiJtJo3gO img {
    height: 3.8rem !important;
  }
  .cid-umiJtJo3gO .btn {
    display: -webkit-flex;
  }
  .cid-umiJtJo3gO button.navbar-toggler {
    display: block;
  }
  .cid-umiJtJo3gO .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-umiJtJo3gO .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-umiJtJo3gO .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing,
  .cid-umiJtJo3gO .navbar-collapse.show {
    display: block !important;
    overflow: auto;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing .navbar-nav,
  .cid-umiJtJo3gO .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-umiJtJo3gO .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing .navbar-buttons,
  .cid-umiJtJo3gO .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-umiJtJo3gO .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-umiJtJo3gO .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-umiJtJo3gO .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-umiJtJo3gO .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-umiJtJo3gO .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-umiJtJo3gO .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
}
@media (max-width: 767px) {
  .cid-umiJtJo3gO .nav-link {
    justify-content: start !important;
  }
  .cid-umiJtJo3gO .navbar.opened {
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .cid-umiJtJo3gO .navbar-toggleable-sm {
    width: 100% !important;
  }
  .cid-umiJtJo3gO .dropdown-menu {
    box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.1) !important;
    background: #efefef !important;
  }
}
@media (min-width: 767px) {
  .cid-umiJtJo3gO .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-umiJtJo3gO .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-umiJtJo3gO .nav-link:hover,
.cid-umiJtJo3gO .dropdown-item:hover {
  color: #000000 !important;
  opacity: .75;
}
.cid-umiJtJo3gO .nav-link:active,
.cid-umiJtJo3gO .dropdown-item:active {
  color: #ddb693;
}
@media (min-width: 1500px) {
  .cid-umiJtJo3gO .navbar-toggleable-sm .navbar-collapse {
    max-width: 90% !important;
    padding-right: 5rem;
  }
  .cid-umiJtJo3gO .menu-logo .navbar-brand {
    margin-left: 5rem;
  }
}
.cid-umiJtJo3gO .outstanding {
  display: inline-block;
  padding: 0 2rem;
  vertical-align: middle;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-umiJtJo3gO .outstanding {
    padding: 0.7rem 0 !important;
    display: -webkit-flex;
    margin: 0rem 1.25rem !important;
    -webkit-align-items: center;
  }
}
.cid-uOp6bJzGNB {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/whatsapp-image-2023-11-15-at-4.22.17-pm-1-563x702.jpg");
}
.cid-uOp6bJzGNB .first,
.cid-uOp6bJzGNB .second,
.cid-uOp6bJzGNB .third {
  display: inline-block;
}
.cid-uOp6bJzGNB img {
  max-width: 350px;
  height: auto;
}
.cid-uOp6bJzGNB .mbr-section-title {
  color: #1d1d1f;
  padding-bottom: 28px;
  margin-bottom: 0;
  font-weight: 700;
  width: 100%;
  text-align: center;
}
.cid-uOp6bJzGNB .mbr-section-subtitle {
  color: #4c4c4c;
  margin-bottom: 60px;
  font-weight: 500;
  width: 100%;
  text-align: center;
}
.cid-uOp6bJzGNB .row {
  align-items: flex-end;
}
.cid-uOp6bJzGNB .padd {
  padding: 0 15px;
  margin: 0;
}
.cid-uOp8pWW3G2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uOp8pWW3G2 .section-head {
  margin-bottom: 2rem;
}
.cid-uOp8pWW3G2 .mbr-section-title {
  text-align: right;
  margin-bottom: 1.5rem;
}
.cid-uOp8pWW3G2 .mbr-section-subtitle {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-uOp8pWW3G2 .row {
    text-align: center;
  }
}
.cid-uOp8pWW3G2 .wave-container {
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: -1px;
  overflow: hidden;
}
.cid-uOp8pWW3G2 .wave-container .wave {
  width: 5500px;
  position: relative;
  left: -3300px;
}
.cid-uOp8pWW3G2 .wave-container .wave svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: wavy 35s infinite linear;
  backface-visibility: hidden;
}
.cid-uOp8pWW3G2 .wave-container .wave svg path {
  fill: #000000;
}
@keyframes wavy {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
    animation-timing-function: linear;
  }
  100% {
    opacity: 1;
    transform: translateX(3230px) translateY(0px) rotate(0deg) scale(1, 1);
  }
}
.cid-uOp90iXma9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uOp90iXma9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOp90iXma9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uOp90iXma9 .container {
    padding: 0 26px;
  }
}
.cid-uOp90iXma9 .row {
  justify-content: center;
}
.cid-uOp90iXma9 .text-wrapper .mbr-text {
  font-family: "Instrument Serif", sans-serif;
  margin-bottom: 16px;
}
.cid-uOp90iXma9 .text-wrapper .icon-wrapper:hover .mbr-iconfont,
.cid-uOp90iXma9 .text-wrapper .icon-wrapper:focus .mbr-iconfont {
  padding-top: 40px;
}
.cid-uOp90iXma9 .text-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  width: 60px;
  height: 60px;
  font-size: 60px;
  transition: all 0.3s ease-in-out;
  color: #fafafa;
}
.cid-uOp90iXma9 .mbr-text,
.cid-uOp90iXma9 .icon-wrapper {
  color: #fafafa;
  text-align: center;
}
.cid-uOp8dhHFZc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uOp8dhHFZc .mbr-section-subtitle {
  margin-bottom: 1.5rem;
}
.cid-uOp8dhHFZc .linkBtn {
  margin-top: 2.5rem;
}
.cid-uOp8dhHFZc b,
.cid-uOp8dhHFZc strong {
  font-weight: 500;
  color: #a26a38;
}
@media (max-width: 767px) {
  .cid-uOp8dhHFZc .mbr-section-subtitle {
    margin-bottom: 0.75rem;
  }
  .cid-uOp8dhHFZc .linkBtn {
    margin-top: 1.5rem;
    text-align: left;
  }
}
.cid-uOp8dhHFZc .mbr-section-title,
.cid-uOp8dhHFZc .linkBtn {
  color: #fafafa;
  text-align: center;
}
.cid-uOp8dhHFZc H4 {
  color: #dfccee;
}
.cid-uOp7ueUxDF {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uOp7ueUxDF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOp7ueUxDF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOp7ueUxDF .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uOp7ueUxDF .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uOp7ueUxDF .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-uOp7ueUxDF .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uOp7ueUxDF .embla__slide .slide-content {
  width: 100%;
}
.cid-uOp7ueUxDF .embla__slide .slide-content .item-wrapper {
  height: 100%;
}
.cid-uOp7ueUxDF .embla__slide .slide-content .item-wrapper .item-img img {
  height: 510px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uOp7ueUxDF .embla__slide .slide-content .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-uOp7ueUxDF .embla__button--next,
.cid-uOp7ueUxDF .embla__button--prev {
  display: flex;
}
.cid-uOp7ueUxDF .embla__button {
  top: 43%;
  width: 80px;
  height: 80px;
  font-size: 32px;
  background-color: #000000 !important;
  color: #c79364 !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-uOp7ueUxDF .embla__button {
    top: auto;
    bottom: 0;
  }
}
.cid-uOp7ueUxDF .embla__button:hover {
  background-color: #eec29b !important;
  color: #ffffff !important;
}
.cid-uOp7ueUxDF .embla__button.embla__button--prev {
  left: 4rem;
}
@media (max-width: 992px) {
  .cid-uOp7ueUxDF .embla__button.embla__button--prev {
    left: 0;
  }
}
.cid-uOp7ueUxDF .embla__button.embla__button--next {
  right: 4rem;
}
@media (max-width: 992px) {
  .cid-uOp7ueUxDF .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-uOp7ueUxDF .embla {
  position: relative;
  width: 100%;
  padding: 0 210px;
}
@media (max-width: 992px) {
  .cid-uOp7ueUxDF .embla {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uOp7ueUxDF .embla {
    padding-bottom: 6rem;
  }
}
.cid-uOp7ueUxDF .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
  border: 20px solid #fafafa;
}
@media (max-width: 992px) {
  .cid-uOp7ueUxDF .embla__viewport {
    border: 10px solid #fafafa;
  }
}
.cid-uOp7ueUxDF .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uOp7ueUxDF .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uOp7ueUxDF .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uOp7ueUxDF .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uOp7ueUxDF .mbr-section-title {
  color: #000c3f;
  text-align: center;
}
.cid-uOp8tVm4i3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOp8tVm4i3 .section-head {
  margin-bottom: 2rem;
}
.cid-uOp8tVm4i3 .mbr-section-title {
  text-align: right;
  margin-bottom: 1.5rem;
}
.cid-uOp8tVm4i3 .mbr-section-subtitle {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-uOp8tVm4i3 .row {
    text-align: center;
  }
}
.cid-uOp8tVm4i3 .wave-container {
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: -1px;
  overflow: hidden;
}
.cid-uOp8tVm4i3 .wave-container .wave {
  width: 5500px;
  position: relative;
  left: -3300px;
}
.cid-uOp8tVm4i3 .wave-container .wave svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: wavy 35s infinite linear;
  backface-visibility: hidden;
}
.cid-uOp8tVm4i3 .wave-container .wave svg path {
  fill: #ffffff;
}
@keyframes wavy {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
    animation-timing-function: linear;
  }
  100% {
    opacity: 1;
    transform: translateX(3230px) translateY(0px) rotate(0deg) scale(1, 1);
  }
}
.cid-umiNgwyd9r {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-umiNgwyd9r .row {
  flex-direction: row-reverse;
}
.cid-umiNgwyd9r img {
  display: inline;
}
.cid-umiNgwyd9r .si {
  width: 100%;
}
.cid-umiNgwyd9r .si img {
  width: auto;
}
.cid-umiNgwyd9r .text {
  color: #ffffff;
}
.cid-umiNgwyd9r .text,
.cid-umiNgwyd9r .si {
  color: #000000;
  text-align: center;
}
.cid-umiNgwyd9r .copyright {
  font-family: "EB Garamond";
  color: #000000;
}
.cid-umiNgwyd9r .list {
  font-family: "Josefin Sans";
  letter-spacing: .2em;
  list-style: none;
  padding-left: 0;
  color: #a26a38;
}
@media (max-width: 991px) {
  .cid-umiNgwyd9r .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-umiNgwyd9r .list {
    margin-bottom: 0rem;
  }
}
.cid-umiNgwyd9r .list li {
  margin-bottom: .5rem;
}
.cid-umiNgwyd9r .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 758px) {
  .cid-umiNgwyd9r .logo {
    margin-top: 2rem;
  }
}
.cid-umiNgwyd9r .mbr-section-subtitle {
  color: #000000;
}
