body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'Gilda Display', serif;
  font-size: 4.5rem;
}
.display-1 > .mbr-iconfont {
  font-size: 7.2rem;
}
.display-2 {
  font-family: 'Gilda Display', serif;
  font-size: 3.5rem;
}
.display-2 > .mbr-iconfont {
  font-size: 5.6rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'Gilda Display', serif;
  font-size: 1.9rem;
}
.display-5 > .mbr-iconfont {
  font-size: 3.04rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.52rem;
    font-size: calc( 1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-sm {
  padding: 5px 10px;
  border-radius: 0px;
}
.btn-md {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-lg {
  padding: 10px 15px;
  border-radius: 0px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #c19b76 !important;
}
.bg-info {
  background-color: #709faf !important;
}
.bg-warning {
  background-color: #b7b6b6 !important;
}
.bg-danger {
  background-color: #e26c5a !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #709faf !important;
  border-color: #709faf !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #4c7887 !important;
  border-color: #4c7887 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4c7887 !important;
  border-color: #4c7887 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #c19b76 !important;
  border-color: #c19b76 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #a17549 !important;
  border-color: #a17549 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #a17549 !important;
  border-color: #a17549 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #b7b6b6 !important;
  border-color: #b7b6b6 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #918f8f !important;
  border-color: #918f8f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #918f8f !important;
  border-color: #918f8f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #e26c5a !important;
  border-color: #e26c5a !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #cc3a24 !important;
  border-color: #cc3a24 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #cc3a24 !important;
  border-color: #cc3a24 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #808080;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #cccccc !important;
  color: #cccccc !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #426977 !important;
  color: #426977 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #709faf !important;
  border-color: #709faf !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #709faf !important;
  border-color: #709faf !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #906841 !important;
  color: #906841 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #c19b76 !important;
  border-color: #c19b76 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #c19b76 !important;
  border-color: #c19b76 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #848383 !important;
  color: #848383 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #b7b6b6 !important;
  border-color: #b7b6b6 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #b7b6b6 !important;
  border-color: #b7b6b6 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #b63420 !important;
  color: #b63420 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #e26c5a !important;
  border-color: #e26c5a !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #e26c5a !important;
  border-color: #e26c5a !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #333333 !important;
}
.text-success {
  color: #c19b76 !important;
}
.text-info {
  color: #709faf !important;
}
.text-warning {
  color: #b7b6b6 !important;
}
.text-danger {
  color: #e26c5a !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #906841 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #426977 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #848383 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #b63420 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #709faf;
}
.alert-warning {
  background-color: #b7b6b6;
}
.alert-danger {
  background-color: #e26c5a;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e9dbce;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c2d6dd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #f6f6f6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.76rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #ffffff;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #ffffff;
}
.up-z-index {
  z-index: 1000 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffffff !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: #333333 !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%;
}
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='%23ffffff' %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-rzMgHGam4n .nav-item:focus,
.cid-rzMgHGam4n .nav-link:focus {
  outline: none;
}
.cid-rzMgHGam4n a.nav-link:focus {
  color: #ffffff !important;
}
.cid-rzMgHGam4n .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #333333;
}
.cid-rzMgHGam4n .navbar.opened {
  transition: all .3s;
  background: #333333 !important;
}
.cid-rzMgHGam4n .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-rzMgHGam4n .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-rzMgHGam4n .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rzMgHGam4n .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-rzMgHGam4n .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-rzMgHGam4n .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-rzMgHGam4n .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rzMgHGam4n .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rzMgHGam4n .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-rzMgHGam4n .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rzMgHGam4n .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rzMgHGam4n .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rzMgHGam4n .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-rzMgHGam4n .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rzMgHGam4n .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rzMgHGam4n .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-rzMgHGam4n .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rzMgHGam4n .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rzMgHGam4n .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rzMgHGam4n .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rzMgHGam4n .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rzMgHGam4n .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rzMgHGam4n .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-rzMgHGam4n .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-rzMgHGam4n .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rzMgHGam4n .navbar.navbar-short {
  background: #333333 !important;
  min-height: 60px;
}
.cid-rzMgHGam4n .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rzMgHGam4n .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rzMgHGam4n .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rzMgHGam4n .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-rzMgHGam4n .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-rzMgHGam4n .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rzMgHGam4n .dropdown-item.active,
.cid-rzMgHGam4n .dropdown-item:active {
  background-color: transparent;
}
.cid-rzMgHGam4n .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rzMgHGam4n .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rzMgHGam4n .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rzMgHGam4n .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-rzMgHGam4n .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-rzMgHGam4n .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rzMgHGam4n ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rzMgHGam4n .navbar-buttons {
  text-align: center;
}
.cid-rzMgHGam4n button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rzMgHGam4n button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rzMgHGam4n button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rzMgHGam4n button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rzMgHGam4n button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rzMgHGam4n button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rzMgHGam4n nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzMgHGam4n nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rzMgHGam4n nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rzMgHGam4n nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzMgHGam4n .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rzMgHGam4n a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-rzMgHGam4n .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rzMgHGam4n .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rzMgHGam4n .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-rzMgHGam4n .nav-link:hover,
.cid-rzMgHGam4n .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-rzMgHGam4n .dropdown-item:hover {
  color: #878787 !important;
}
.cid-rzMgHGam4n .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-rzMgHGam4n .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-rzMgHGam4n .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-rzMgHGam4n .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-rzMgHGam4n .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-rzMgHGam4n .dropdown-menu {
    top: 100%;
  }
  .cid-rzMgHGam4n .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-rzMgHGam4n .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-rzMgHGam4n .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-rzMgHGam4n .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uAr2hvgQw7 {
  background-image: url("../../../assets/images/305849741-421636593371409-4377232902021848978-n-1440x1440.webp");
}
@media (min-width: 992px) {
  .cid-uAr2hvgQw7 .display-1 {
    letter-spacing: -6px;
  }
}
.cid-uAr2hvgQw7 p {
  margin: 0;
}
.cid-uAr2hvgQw7 .display-1 {
  line-height: 1;
}
.cid-uAr2hvgQw7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAr2hvgQw7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAr2hvgQw7 .mbr-text,
.cid-uAr2hvgQw7 .img-align {
  color: #ffffff;
}
.cid-uAr9NM9vBc {
  background-color: #ffffff;
}
.cid-uAr9NM9vBc .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-uAr9NM9vBc .underline .line {
  width: 2rem;
  height: 1px;
  background: #84582e;
  display: inline-block;
}
.cid-uAr9NM9vBc .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uAr9NM9vBc .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 1200px) {
  .cid-uAr9NM9vBc .image-element {
    padding-left: 0;
  }
}
.cid-uAr9NM9vBc .text-element {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 2rem;
}
.cid-uAr9NM9vBc .mbr-text {
  color: #878787;
  line-height: 27px;
}
.cid-uAr9NM9vBc .brown {
  color: #c19b76;
}
.cid-uAr9NM9vBc .paragraphs-wrapper {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uAr9NM9vBc .paragraphs-wrapper .first-paragraph,
.cid-uAr9NM9vBc .paragraphs-wrapper .second-paragraph {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-uAr9NM9vBc .image-element {
    padding-top: 1rem;
  }
  .cid-uAr9NM9vBc .paragraphs-wrapper {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uAr9NM9vBc .paragraphs-wrapper .first-paragraph,
  .cid-uAr9NM9vBc .paragraphs-wrapper .second-paragraph {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .cid-uAr9NM9vBc .first-paragraph,
  .cid-uAr9NM9vBc .second-paragraph {
    width: 50%;
  }
  .cid-uAr9NM9vBc .first-paragraph {
    padding-right: 0.5rem;
  }
  .cid-uAr9NM9vBc .second-paragraph {
    padding-left: 0.5rem;
  }
  .cid-uAr9NM9vBc .text-element {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-uAr9NM9vBc .mbr-section-title,
  .cid-uAr9NM9vBc .mbr-section-btn {
    text-align: left;
  }
}
.cid-uAr9NM9vBc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAr9NM9vBc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAr9NM9vBc .mbr-section-title {
  color: #333333;
}
.cid-uAr9NM9vBc .mbr-text,
.cid-uAr9NM9vBc .mbr-section-btn {
  color: #000000;
}
.cid-uAvB4CGzfi {
  padding-top: 5rem;
  padding-bottom: 10rem;
  background-color: #fcfcfc;
}
.cid-uAvB4CGzfi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAvB4CGzfi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAvB4CGzfi .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uAvB4CGzfi .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uAvB4CGzfi .container {
    padding: 0 30px;
  }
}
.cid-uAvB4CGzfi .row {
  justify-content: center;
}
.cid-uAvB4CGzfi .mbr-section-title {
  margin-bottom: 50px;
  color: #212529;
  text-align: center;
}
.cid-uAvB4CGzfi .item {
  margin-bottom: 50px;
}
.cid-uAvB4CGzfi .item a:hover .item-wrapper .item-img img,
.cid-uAvB4CGzfi .item a:focus .item-wrapper .item-img img {
  transform: scale(1);
}
.cid-uAvB4CGzfi .item a .item-wrapper .item-img {
  overflow: hidden;
  margin-bottom: 20px;
}
.cid-uAvB4CGzfi .item a .item-wrapper .item-img img {
  height: 370px;
  object-fit: cover;
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}
.cid-uAvB4CGzfi .item a .item-wrapper .item-content .mbr-card-title {
  margin-bottom: 0;
}
.cid-uAvB4CGzfi .item a .item-wrapper .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uAvB4CGzfi .border-wrap {
  background-color: #212529;
  height: 1px;
}
.cid-uAvB4CGzfi .mbr-card-title {
  color: #333333;
  text-align: center;
}
.cid-uAvB4CGzfi .mbr-desc {
  color: #212529;
}
.cid-uAvB4CGzfi .main-title {
  color: #333333;
}
.cid-uB4vsuqqN0 {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-uB4vsuqqN0 .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-uB4vsuqqN0 .card-img {
  padding-bottom: 2rem;
}
.cid-uB4vsuqqN0 .mbr-text {
  color: #767676;
}
.cid-uB4vsuqqN0 span {
  font-size: 14px;
  color: #ffffff;
}
.cid-uB4vsuqqN0 .mbr-section-btn {
  margin-left: 0;
}
.cid-uB4vsuqqN0 .date {
  text-align: right;
}
.cid-uB4vsuqqN0 .date span {
  display: inline-block;
  background-color: #333333;
  padding: 0.2rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-uB4vsuqqN0 .card-title {
    text-align: center;
  }
  .cid-uB4vsuqqN0 p.mbr-text,
  .cid-uB4vsuqqN0 p.date {
    text-align: center;
  }
}
.cid-uB4vsuqqN0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uB4vsuqqN0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uB4vsuqqN0 .mbr-text,
.cid-uB4vsuqqN0 .mbr-section-btn {
  text-align: left;
}
.cid-uAw4PNUUg2 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-uAw4PNUUg2 .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uAw4PNUUg2 .container {
  max-width: 1400px;
}
.cid-uAw4PNUUg2 li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-uAw4PNUUg2 .col-lg-3 {
    max-width: 20%;
  }
}
.cid-uAw4PNUUg2 .time {
  line-height: 2;
}
.cid-uAw4PNUUg2 .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-uAw4PNUUg2 .text-wrap {
  width: 100%;
}
.cid-uAw4PNUUg2 .item-wrap {
  display: inline-block;
}
.cid-uAw4PNUUg2 .item-wrap span,
.cid-uAw4PNUUg2 .item-wrap p {
  transition: all 0.3s;
}
.cid-uAw4PNUUg2 .item-wrap:hover span,
.cid-uAw4PNUUg2 .item-wrap:hover p {
  color: #a2784f !important;
}
.cid-uAw4PNUUg2 .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-uAw4PNUUg2 .socicon-wrap .mbr-iconfont {
  font-size: 1.1rem;
  color: #ffffff !important;
  padding: 10px;
  margin-right: 0.1rem;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-uAw4PNUUg2 .socicon-wrap .mbr-iconfont:hover {
  color: #a2784f !important;
}
.cid-uAw4PNUUg2 .align-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-uAw4PNUUg2 .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uAw4PNUUg2 .socicon-wrap {
    margin: auto;
  }
}
.cid-uAw4PNUUg2 .title {
  color: #ffffff;
}
.cid-uAw4PNUUg2 .mbr-text {
  color: #999999;
}
.cid-uAw4PNUUg2 .icon-title {
  margin: 0;
  padding-bottom: 3px;
}
.cid-uAw4PNUUg2 .icon-title,
.cid-uAw4PNUUg2 .align-wrap {
  color: #999999;
  width: 100%;
}
.cid-uAw4PNUUg2 .mbr-text,
.cid-uAw4PNUUg2 .mbr-section-btn {
  color: #ffffff;
}
.cid-uAw5J7Wgs4 .nav-item:focus,
.cid-uAw5J7Wgs4 .nav-link:focus {
  outline: none;
}
.cid-uAw5J7Wgs4 a.nav-link:focus {
  color: #ffffff !important;
}
.cid-uAw5J7Wgs4 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #333333;
}
.cid-uAw5J7Wgs4 .navbar.opened {
  transition: all .3s;
  background: #333333 !important;
}
.cid-uAw5J7Wgs4 .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-uAw5J7Wgs4 .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uAw5J7Wgs4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAw5J7Wgs4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uAw5J7Wgs4 .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uAw5J7Wgs4 .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uAw5J7Wgs4 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uAw5J7Wgs4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAw5J7Wgs4 .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uAw5J7Wgs4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAw5J7Wgs4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uAw5J7Wgs4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAw5J7Wgs4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-uAw5J7Wgs4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uAw5J7Wgs4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAw5J7Wgs4 .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uAw5J7Wgs4 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uAw5J7Wgs4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAw5J7Wgs4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAw5J7Wgs4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uAw5J7Wgs4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uAw5J7Wgs4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAw5J7Wgs4 .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-uAw5J7Wgs4 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uAw5J7Wgs4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uAw5J7Wgs4 .navbar.navbar-short {
  background: #333333 !important;
  min-height: 60px;
}
.cid-uAw5J7Wgs4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uAw5J7Wgs4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uAw5J7Wgs4 .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAw5J7Wgs4 .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-uAw5J7Wgs4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uAw5J7Wgs4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAw5J7Wgs4 .dropdown-item.active,
.cid-uAw5J7Wgs4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uAw5J7Wgs4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAw5J7Wgs4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAw5J7Wgs4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAw5J7Wgs4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uAw5J7Wgs4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uAw5J7Wgs4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAw5J7Wgs4 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uAw5J7Wgs4 .navbar-buttons {
  text-align: center;
}
.cid-uAw5J7Wgs4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAw5J7Wgs4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uAw5J7Wgs4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uAw5J7Wgs4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uAw5J7Wgs4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uAw5J7Wgs4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uAw5J7Wgs4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAw5J7Wgs4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uAw5J7Wgs4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uAw5J7Wgs4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAw5J7Wgs4 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uAw5J7Wgs4 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uAw5J7Wgs4 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uAw5J7Wgs4 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uAw5J7Wgs4 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uAw5J7Wgs4 .nav-link:hover,
.cid-uAw5J7Wgs4 .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-uAw5J7Wgs4 .dropdown-item:hover {
  color: #878787 !important;
}
.cid-uAw5J7Wgs4 .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-uAw5J7Wgs4 .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-uAw5J7Wgs4 .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uAw5J7Wgs4 .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-uAw5J7Wgs4 .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uAw5J7Wgs4 .dropdown-menu {
    top: 100%;
  }
  .cid-uAw5J7Wgs4 .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uAw5J7Wgs4 .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uAw5J7Wgs4 .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uAw5J7Wgs4 .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uAw5J9dSzn {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/fondo-web-grupo-fleitas-moreno-las-palmas-inmobiliaria-2000x1334.webp");
}
@media (min-width: 992px) {
  .cid-uAw5J9dSzn .display-1 {
    letter-spacing: -6px;
  }
}
.cid-uAw5J9dSzn p {
  margin: 0;
}
.cid-uAw5J9dSzn .display-1 {
  line-height: 1;
}
.cid-uAw5J9dSzn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAw5J9dSzn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAw5J9dSzn .mbr-text,
.cid-uAw5J9dSzn .img-align {
  color: #c19b76;
}
.cid-uAw5J9dSzn H1 {
  color: #212529;
}
.cid-uAw5J9Ccvt {
  background-color: #ffffff;
}
.cid-uAw5J9Ccvt .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-uAw5J9Ccvt .underline .line {
  width: 2rem;
  height: 1px;
  background: #84582e;
  display: inline-block;
}
.cid-uAw5J9Ccvt .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uAw5J9Ccvt .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 1200px) {
  .cid-uAw5J9Ccvt .image-element {
    padding-left: 0;
  }
}
.cid-uAw5J9Ccvt .text-element {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 2rem;
}
.cid-uAw5J9Ccvt .mbr-text {
  color: #878787;
  line-height: 27px;
}
.cid-uAw5J9Ccvt .brown {
  color: #c19b76;
}
.cid-uAw5J9Ccvt .paragraphs-wrapper {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uAw5J9Ccvt .paragraphs-wrapper .first-paragraph,
.cid-uAw5J9Ccvt .paragraphs-wrapper .second-paragraph {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-uAw5J9Ccvt .image-element {
    padding-top: 1rem;
  }
  .cid-uAw5J9Ccvt .paragraphs-wrapper {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uAw5J9Ccvt .paragraphs-wrapper .first-paragraph,
  .cid-uAw5J9Ccvt .paragraphs-wrapper .second-paragraph {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .cid-uAw5J9Ccvt .first-paragraph,
  .cid-uAw5J9Ccvt .second-paragraph {
    width: 50%;
  }
  .cid-uAw5J9Ccvt .first-paragraph {
    padding-right: 0.5rem;
  }
  .cid-uAw5J9Ccvt .second-paragraph {
    padding-left: 0.5rem;
  }
  .cid-uAw5J9Ccvt .text-element {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-uAw5J9Ccvt .mbr-section-title,
  .cid-uAw5J9Ccvt .mbr-section-btn {
    text-align: left;
  }
}
.cid-uAw5J9Ccvt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAw5J9Ccvt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAw5J9Ccvt .mbr-section-title {
  color: #333333;
}
.cid-uAw5J9Ccvt .mbr-text,
.cid-uAw5J9Ccvt .mbr-section-btn {
  color: #212529;
}
.cid-uAw5Ja9vEb {
  padding-top: 5rem;
  padding-bottom: 10rem;
  background-color: #fcfcfc;
}
.cid-uAw5Ja9vEb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAw5Ja9vEb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAw5Ja9vEb .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uAw5Ja9vEb .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uAw5Ja9vEb .container {
    padding: 0 30px;
  }
}
.cid-uAw5Ja9vEb .row {
  justify-content: center;
}
.cid-uAw5Ja9vEb .mbr-section-title {
  margin-bottom: 50px;
  color: #212529;
  text-align: center;
}
.cid-uAw5Ja9vEb .item {
  margin-bottom: 50px;
}
.cid-uAw5Ja9vEb .item a:hover .item-wrapper .item-img img,
.cid-uAw5Ja9vEb .item a:focus .item-wrapper .item-img img {
  transform: scale(1);
}
.cid-uAw5Ja9vEb .item a .item-wrapper .item-img {
  overflow: hidden;
  margin-bottom: 20px;
}
.cid-uAw5Ja9vEb .item a .item-wrapper .item-img img {
  height: 370px;
  object-fit: cover;
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}
.cid-uAw5Ja9vEb .item a .item-wrapper .item-content .mbr-card-title {
  margin-bottom: 0;
}
.cid-uAw5Ja9vEb .item a .item-wrapper .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uAw5Ja9vEb .border-wrap {
  background-color: #212529;
  height: 1px;
}
.cid-uAw5Ja9vEb .mbr-card-title {
  color: #212529;
  text-align: center;
}
.cid-uAw5Ja9vEb .mbr-desc {
  color: #212529;
}
.cid-uAw5Ja9vEb .main-title {
  color: #333333;
}
.cid-uAw5Jcfr2g {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-uAw5Jcfr2g .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uAw5Jcfr2g .container {
  max-width: 1400px;
}
.cid-uAw5Jcfr2g li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-uAw5Jcfr2g .col-lg-3 {
    max-width: 20%;
  }
}
.cid-uAw5Jcfr2g .time {
  line-height: 2;
}
.cid-uAw5Jcfr2g .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-uAw5Jcfr2g .text-wrap {
  width: 100%;
}
.cid-uAw5Jcfr2g .item-wrap {
  display: inline-block;
}
.cid-uAw5Jcfr2g .item-wrap span,
.cid-uAw5Jcfr2g .item-wrap p {
  transition: all 0.3s;
}
.cid-uAw5Jcfr2g .item-wrap:hover span,
.cid-uAw5Jcfr2g .item-wrap:hover p {
  color: #a2784f !important;
}
.cid-uAw5Jcfr2g .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-uAw5Jcfr2g .socicon-wrap .mbr-iconfont {
  font-size: 1.1rem;
  color: #ffffff !important;
  padding: 10px;
  margin-right: 0.1rem;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-uAw5Jcfr2g .socicon-wrap .mbr-iconfont:hover {
  color: #a2784f !important;
}
.cid-uAw5Jcfr2g .align-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-uAw5Jcfr2g .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uAw5Jcfr2g .socicon-wrap {
    margin: auto;
  }
}
.cid-uAw5Jcfr2g .title {
  color: #ffffff;
}
.cid-uAw5Jcfr2g .mbr-text {
  color: #999999;
}
.cid-uAw5Jcfr2g .icon-title {
  margin: 0;
  padding-bottom: 3px;
}
.cid-uAw5Jcfr2g .icon-title,
.cid-uAw5Jcfr2g .align-wrap {
  color: #999999;
  width: 100%;
}
.cid-uAw5Jcfr2g .mbr-text,
.cid-uAw5Jcfr2g .mbr-section-btn {
  color: #ffffff;
}
.cid-uAwfOhKQ64 .nav-item:focus,
.cid-uAwfOhKQ64 .nav-link:focus {
  outline: none;
}
.cid-uAwfOhKQ64 a.nav-link:focus {
  color: #ffffff !important;
}
.cid-uAwfOhKQ64 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #333333;
}
.cid-uAwfOhKQ64 .navbar.opened {
  transition: all .3s;
  background: #333333 !important;
}
.cid-uAwfOhKQ64 .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-uAwfOhKQ64 .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uAwfOhKQ64 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAwfOhKQ64 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uAwfOhKQ64 .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uAwfOhKQ64 .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uAwfOhKQ64 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uAwfOhKQ64 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAwfOhKQ64 .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uAwfOhKQ64 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAwfOhKQ64 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uAwfOhKQ64 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAwfOhKQ64 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-uAwfOhKQ64 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uAwfOhKQ64 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAwfOhKQ64 .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uAwfOhKQ64 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uAwfOhKQ64 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAwfOhKQ64 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAwfOhKQ64 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uAwfOhKQ64 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uAwfOhKQ64 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAwfOhKQ64 .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-uAwfOhKQ64 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uAwfOhKQ64 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uAwfOhKQ64 .navbar.navbar-short {
  background: #333333 !important;
  min-height: 60px;
}
.cid-uAwfOhKQ64 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uAwfOhKQ64 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uAwfOhKQ64 .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAwfOhKQ64 .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-uAwfOhKQ64 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uAwfOhKQ64 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAwfOhKQ64 .dropdown-item.active,
.cid-uAwfOhKQ64 .dropdown-item:active {
  background-color: transparent;
}
.cid-uAwfOhKQ64 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAwfOhKQ64 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAwfOhKQ64 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAwfOhKQ64 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uAwfOhKQ64 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uAwfOhKQ64 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAwfOhKQ64 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uAwfOhKQ64 .navbar-buttons {
  text-align: center;
}
.cid-uAwfOhKQ64 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAwfOhKQ64 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uAwfOhKQ64 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uAwfOhKQ64 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uAwfOhKQ64 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uAwfOhKQ64 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uAwfOhKQ64 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAwfOhKQ64 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uAwfOhKQ64 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uAwfOhKQ64 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAwfOhKQ64 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uAwfOhKQ64 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uAwfOhKQ64 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uAwfOhKQ64 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uAwfOhKQ64 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uAwfOhKQ64 .nav-link:hover,
.cid-uAwfOhKQ64 .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-uAwfOhKQ64 .dropdown-item:hover {
  color: #878787 !important;
}
.cid-uAwfOhKQ64 .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-uAwfOhKQ64 .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-uAwfOhKQ64 .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uAwfOhKQ64 .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-uAwfOhKQ64 .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uAwfOhKQ64 .dropdown-menu {
    top: 100%;
  }
  .cid-uAwfOhKQ64 .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uAwfOhKQ64 .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uAwfOhKQ64 .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uAwfOhKQ64 .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uAwfOjjezK {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/2964665-2000x1333.webp");
}
@media (min-width: 992px) {
  .cid-uAwfOjjezK .display-1 {
    letter-spacing: -6px;
  }
}
.cid-uAwfOjjezK p {
  margin: 0;
}
.cid-uAwfOjjezK .display-1 {
  line-height: 1;
}
.cid-uAwfOjjezK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAwfOjjezK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAwfOjjezK .mbr-text,
.cid-uAwfOjjezK .img-align {
  color: #c19b76;
}
.cid-uAwfOjjezK H1 {
  color: #212529;
}
.cid-uAwgUpUxo0 {
  padding-top: 6rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-uAwgUpUxo0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAwgUpUxo0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uAwgUpUxo0 .text-wrapper {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uAwgUpUxo0 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAwgUpUxo0 .image-wrapper {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uAwgUpUxo0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uAwgUpUxo0 .mbr-section-title {
  color: #c19b76;
}
.cid-uAwiCZdUGN {
  padding-top: 90px;
  padding-bottom: 135px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-uAwiCZdUGN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uAwiCZdUGN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uAwiCZdUGN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uAwiCZdUGN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uAwiCZdUGN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #878787;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #878787, #212529);
}
.cid-uAwiCZdUGN .icon-focus,
.cid-uAwiCZdUGN .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-uAwiCZdUGN .icon-focus:before,
.cid-uAwiCZdUGN .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uAwiCZdUGN .icon-video {
  font-size: 1.5rem !important;
}
.cid-uAwiCZdUGN .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-uAwiCZdUGN ul {
  font-size: 0;
}
.cid-uAwiCZdUGN .mbr-gallery-filter ul {
  text-align: left;
}
.cid-uAwiCZdUGN .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-uAwiCZdUGN .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem !important;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #000000 !important;
}
.cid-uAwiCZdUGN .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-uAwiCZdUGN .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-uAwiCZdUGN .mbr-gallery-filter ul li.active .btn:after {
  border-color: #000000;
}
.cid-uAwiCZdUGN .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-uAwiCZdUGN .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-uAwiCZdUGN .mbr-gallery-filter ul li:first-child,
.cid-uAwiCZdUGN .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-uAwiCZdUGN .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-uAwiCZdUGN .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-uAwiCZdUGN .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-uAwiCZdUGN .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-uAwiCZdUGN .mbr-section-title b:last-child,
.cid-uAwiCZdUGN .mbr-section-title strong:last-child {
  color: #c19b76;
}
.cid-uAwiCZdUGN .mbr-gallery-filter {
  padding-left: 0;
  padding-right: 0;
}
.cid-uAwiCZdUGN .mbr-gallery-filter ul li .btn:after {
  transform: none !important;
}
.cid-uAwiCZdUGN .mbr-section-subtitle {
  text-align: center;
  color: #c19b76;
}
.cid-uAwiCZdUGN .mbr-section-title,
.cid-uAwiCZdUGN .mbr-gallery-filter ul {
  text-align: center;
  color: #212529;
}
.cid-uAwiCZdUGN .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-uAwfOkkjtr {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-uAwfOkkjtr .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uAwfOkkjtr .container {
  max-width: 1400px;
}
.cid-uAwfOkkjtr li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-uAwfOkkjtr .col-lg-3 {
    max-width: 20%;
  }
}
.cid-uAwfOkkjtr .time {
  line-height: 2;
}
.cid-uAwfOkkjtr .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-uAwfOkkjtr .text-wrap {
  width: 100%;
}
.cid-uAwfOkkjtr .item-wrap {
  display: inline-block;
}
.cid-uAwfOkkjtr .item-wrap span,
.cid-uAwfOkkjtr .item-wrap p {
  transition: all 0.3s;
}
.cid-uAwfOkkjtr .item-wrap:hover span,
.cid-uAwfOkkjtr .item-wrap:hover p {
  color: #a2784f !important;
}
.cid-uAwfOkkjtr .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-uAwfOkkjtr .socicon-wrap .mbr-iconfont {
  font-size: 1.1rem;
  color: #ffffff !important;
  padding: 10px;
  margin-right: 0.1rem;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-uAwfOkkjtr .socicon-wrap .mbr-iconfont:hover {
  color: #a2784f !important;
}
.cid-uAwfOkkjtr .align-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-uAwfOkkjtr .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uAwfOkkjtr .socicon-wrap {
    margin: auto;
  }
}
.cid-uAwfOkkjtr .title {
  color: #ffffff;
}
.cid-uAwfOkkjtr .mbr-text {
  color: #999999;
}
.cid-uAwfOkkjtr .icon-title {
  margin: 0;
  padding-bottom: 3px;
}
.cid-uAwfOkkjtr .icon-title,
.cid-uAwfOkkjtr .align-wrap {
  color: #999999;
  width: 100%;
}
.cid-uAwfOkkjtr .mbr-text,
.cid-uAwfOkkjtr .mbr-section-btn {
  color: #ffffff;
}
.cid-uAw9SEWyZy .nav-item:focus,
.cid-uAw9SEWyZy .nav-link:focus {
  outline: none;
}
.cid-uAw9SEWyZy a.nav-link:focus {
  color: #ffffff !important;
}
.cid-uAw9SEWyZy .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #333333;
}
.cid-uAw9SEWyZy .navbar.opened {
  transition: all .3s;
  background: #333333 !important;
}
.cid-uAw9SEWyZy .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-uAw9SEWyZy .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uAw9SEWyZy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAw9SEWyZy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uAw9SEWyZy .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uAw9SEWyZy .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uAw9SEWyZy .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uAw9SEWyZy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAw9SEWyZy .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uAw9SEWyZy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAw9SEWyZy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uAw9SEWyZy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAw9SEWyZy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-uAw9SEWyZy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uAw9SEWyZy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAw9SEWyZy .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uAw9SEWyZy .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uAw9SEWyZy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAw9SEWyZy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAw9SEWyZy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uAw9SEWyZy .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uAw9SEWyZy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAw9SEWyZy .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-uAw9SEWyZy .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uAw9SEWyZy .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uAw9SEWyZy .navbar.navbar-short {
  background: #333333 !important;
  min-height: 60px;
}
.cid-uAw9SEWyZy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uAw9SEWyZy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uAw9SEWyZy .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAw9SEWyZy .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-uAw9SEWyZy .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uAw9SEWyZy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAw9SEWyZy .dropdown-item.active,
.cid-uAw9SEWyZy .dropdown-item:active {
  background-color: transparent;
}
.cid-uAw9SEWyZy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAw9SEWyZy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAw9SEWyZy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAw9SEWyZy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uAw9SEWyZy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uAw9SEWyZy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAw9SEWyZy ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uAw9SEWyZy .navbar-buttons {
  text-align: center;
}
.cid-uAw9SEWyZy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAw9SEWyZy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uAw9SEWyZy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uAw9SEWyZy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uAw9SEWyZy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uAw9SEWyZy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uAw9SEWyZy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAw9SEWyZy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uAw9SEWyZy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uAw9SEWyZy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAw9SEWyZy .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uAw9SEWyZy a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uAw9SEWyZy .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uAw9SEWyZy .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uAw9SEWyZy .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uAw9SEWyZy .nav-link:hover,
.cid-uAw9SEWyZy .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-uAw9SEWyZy .dropdown-item:hover {
  color: #878787 !important;
}
.cid-uAw9SEWyZy .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-uAw9SEWyZy .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-uAw9SEWyZy .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uAw9SEWyZy .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-uAw9SEWyZy .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uAw9SEWyZy .dropdown-menu {
    top: 100%;
  }
  .cid-uAw9SEWyZy .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uAw9SEWyZy .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uAw9SEWyZy .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uAw9SEWyZy .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uAw9SG9kYQ {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/fondo-web-grupo-fleitas-moreno-las-palmas-inmobiliaria-2000x1334.webp");
}
@media (min-width: 992px) {
  .cid-uAw9SG9kYQ .display-1 {
    letter-spacing: -6px;
  }
}
.cid-uAw9SG9kYQ p {
  margin: 0;
}
.cid-uAw9SG9kYQ .display-1 {
  line-height: 1;
}
.cid-uAw9SG9kYQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAw9SG9kYQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAw9SG9kYQ .mbr-text,
.cid-uAw9SG9kYQ .img-align {
  color: #c19b76;
}
.cid-uAw9SG9kYQ H1 {
  color: #212529;
}
.cid-uAw9SHcDE0 {
  padding-top: 5rem;
  padding-bottom: 10rem;
  background-color: #fcfcfc;
}
.cid-uAw9SHcDE0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAw9SHcDE0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAw9SHcDE0 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uAw9SHcDE0 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uAw9SHcDE0 .container {
    padding: 0 30px;
  }
}
.cid-uAw9SHcDE0 .row {
  justify-content: center;
}
.cid-uAw9SHcDE0 .mbr-section-title {
  margin-bottom: 50px;
  color: #212529;
  text-align: center;
}
.cid-uAw9SHcDE0 .item {
  margin-bottom: 50px;
}
.cid-uAw9SHcDE0 .item a:hover .item-wrapper .item-img img,
.cid-uAw9SHcDE0 .item a:focus .item-wrapper .item-img img {
  transform: scale(1);
}
.cid-uAw9SHcDE0 .item a .item-wrapper .item-img {
  overflow: hidden;
  margin-bottom: 20px;
}
.cid-uAw9SHcDE0 .item a .item-wrapper .item-img img {
  height: 370px;
  object-fit: cover;
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}
.cid-uAw9SHcDE0 .item a .item-wrapper .item-content .mbr-card-title {
  margin-bottom: 0;
}
.cid-uAw9SHcDE0 .item a .item-wrapper .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uAw9SHcDE0 .border-wrap {
  background-color: #c19b76;
  height: 1px;
}
.cid-uAw9SHcDE0 .mbr-card-title {
  color: #333333;
  text-align: center;
}
.cid-uAw9SHcDE0 .mbr-desc {
  color: #212529;
}
.cid-uAw9SHcDE0 .main-title {
  color: #333333;
}
.cid-uAw9SHIWEA {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-uAw9SHIWEA .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uAw9SHIWEA .container {
  max-width: 1400px;
}
.cid-uAw9SHIWEA li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-uAw9SHIWEA .col-lg-3 {
    max-width: 20%;
  }
}
.cid-uAw9SHIWEA .time {
  line-height: 2;
}
.cid-uAw9SHIWEA .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-uAw9SHIWEA .text-wrap {
  width: 100%;
}
.cid-uAw9SHIWEA .item-wrap {
  display: inline-block;
}
.cid-uAw9SHIWEA .item-wrap span,
.cid-uAw9SHIWEA .item-wrap p {
  transition: all 0.3s;
}
.cid-uAw9SHIWEA .item-wrap:hover span,
.cid-uAw9SHIWEA .item-wrap:hover p {
  color: #a2784f !important;
}
.cid-uAw9SHIWEA .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-uAw9SHIWEA .socicon-wrap .mbr-iconfont {
  font-size: 1.1rem;
  color: #ffffff !important;
  padding: 10px;
  margin-right: 0.1rem;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-uAw9SHIWEA .socicon-wrap .mbr-iconfont:hover {
  color: #a2784f !important;
}
.cid-uAw9SHIWEA .align-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-uAw9SHIWEA .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uAw9SHIWEA .socicon-wrap {
    margin: auto;
  }
}
.cid-uAw9SHIWEA .title {
  color: #ffffff;
}
.cid-uAw9SHIWEA .mbr-text {
  color: #999999;
}
.cid-uAw9SHIWEA .icon-title {
  margin: 0;
  padding-bottom: 3px;
}
.cid-uAw9SHIWEA .icon-title,
.cid-uAw9SHIWEA .align-wrap {
  color: #999999;
  width: 100%;
}
.cid-uAw9SHIWEA .mbr-text,
.cid-uAw9SHIWEA .mbr-section-btn {
  color: #ffffff;
}
.cid-uAwnpGmwQk .nav-item:focus,
.cid-uAwnpGmwQk .nav-link:focus {
  outline: none;
}
.cid-uAwnpGmwQk a.nav-link:focus {
  color: #ffffff !important;
}
.cid-uAwnpGmwQk .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #333333;
}
.cid-uAwnpGmwQk .navbar.opened {
  transition: all .3s;
  background: #333333 !important;
}
.cid-uAwnpGmwQk .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-uAwnpGmwQk .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uAwnpGmwQk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAwnpGmwQk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uAwnpGmwQk .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uAwnpGmwQk .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uAwnpGmwQk .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uAwnpGmwQk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAwnpGmwQk .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uAwnpGmwQk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAwnpGmwQk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uAwnpGmwQk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAwnpGmwQk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-uAwnpGmwQk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uAwnpGmwQk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAwnpGmwQk .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uAwnpGmwQk .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uAwnpGmwQk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAwnpGmwQk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAwnpGmwQk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uAwnpGmwQk .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uAwnpGmwQk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAwnpGmwQk .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-uAwnpGmwQk .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uAwnpGmwQk .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uAwnpGmwQk .navbar.navbar-short {
  background: #333333 !important;
  min-height: 60px;
}
.cid-uAwnpGmwQk .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uAwnpGmwQk .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uAwnpGmwQk .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAwnpGmwQk .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-uAwnpGmwQk .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uAwnpGmwQk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAwnpGmwQk .dropdown-item.active,
.cid-uAwnpGmwQk .dropdown-item:active {
  background-color: transparent;
}
.cid-uAwnpGmwQk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAwnpGmwQk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAwnpGmwQk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAwnpGmwQk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uAwnpGmwQk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uAwnpGmwQk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAwnpGmwQk ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uAwnpGmwQk .navbar-buttons {
  text-align: center;
}
.cid-uAwnpGmwQk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAwnpGmwQk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uAwnpGmwQk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uAwnpGmwQk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uAwnpGmwQk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uAwnpGmwQk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uAwnpGmwQk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAwnpGmwQk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uAwnpGmwQk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uAwnpGmwQk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAwnpGmwQk .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uAwnpGmwQk a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uAwnpGmwQk .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uAwnpGmwQk .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uAwnpGmwQk .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uAwnpGmwQk .nav-link:hover,
.cid-uAwnpGmwQk .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-uAwnpGmwQk .dropdown-item:hover {
  color: #878787 !important;
}
.cid-uAwnpGmwQk .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-uAwnpGmwQk .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-uAwnpGmwQk .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uAwnpGmwQk .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-uAwnpGmwQk .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uAwnpGmwQk .dropdown-menu {
    top: 100%;
  }
  .cid-uAwnpGmwQk .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uAwnpGmwQk .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uAwnpGmwQk .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uAwnpGmwQk .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uAwnpGV1Il {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/2964665-2000x1333.webp");
}
@media (min-width: 992px) {
  .cid-uAwnpGV1Il .display-1 {
    letter-spacing: -6px;
  }
}
.cid-uAwnpGV1Il p {
  margin: 0;
}
.cid-uAwnpGV1Il .display-1 {
  line-height: 1;
}
.cid-uAwnpGV1Il .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAwnpGV1Il .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAwnpGV1Il .mbr-text,
.cid-uAwnpGV1Il .img-align {
  color: #c19b76;
}
.cid-uAwnpGV1Il H1 {
  color: #212529;
}
.cid-uAwnpH8gej {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uAwnpH8gej .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAwnpH8gej .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uAwnpH8gej .text-wrapper {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-uAwnpH8gej .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAwnpH8gej .image-wrapper {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uAwnpH8gej .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uAwnpH8gej .mbr-section-title {
  color: #c19b76;
  text-align: right;
}
.cid-uCBC88Coia {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCBC88Coia .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBC88Coia .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBC88Coia .container-fluid {
  padding: 0 24px;
}
@media (max-width: 768px) {
  .cid-uCBC88Coia .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uCBC88Coia .container {
    padding: 0 16px;
  }
}
.cid-uCBC88Coia .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uCBC88Coia .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uCBC88Coia .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uCBC88Coia .mbr-section-title {
  color: #c19b76;
  text-align: right;
}
.cid-uCBC88Coia .mbr-text {
  color: #000000;
}
.cid-uAwqkInoX9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uAwqkInoX9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAwqkInoX9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAwqkInoX9 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uAwqkInoX9 .mbr-section-title {
  color: #24262b;
}
.cid-uAwqkInoX9 .mbr-section-subtitle {
  color: #c19b76;
}
.cid-uAwqkInoX9 .items-row {
  row-gap: 32px;
}
.cid-uAwqkInoX9 .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uAwqkInoX9 .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uAwqkInoX9 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uAwqkInoX9 .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uAwqkInoX9 .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uAwqkInoX9 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uAwqkInoX9 .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uAwqkInoX9 .mbr-item-subtitle {
  color: #24262b;
}
.cid-uAwqkInoX9 .carousel-control,
.cid-uAwqkInoX9 .close {
  background: #1b1b1b;
}
.cid-uAwqkInoX9 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uAwqkInoX9 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uAwqkInoX9 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uAwqkInoX9 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uAwqkInoX9 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uAwqkInoX9 .close::before {
  content: '\e91a';
}
.cid-uAwqkInoX9 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uAwqkInoX9 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uAwqkInoX9 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uAwqkInoX9 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uAwqkInoX9 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uAwqkInoX9 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uAwqkInoX9 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uAwqkInoX9 .carousel-indicators li.active,
.cid-uAwqkInoX9 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uAwqkInoX9 .carousel-indicators li::after,
.cid-uAwqkInoX9 .carousel-indicators li::before {
  content: none;
}
.cid-uAwqkInoX9 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uAwqkInoX9 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uAwqkInoX9 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uAwqkInoX9 .carousel-indicators {
    display: none;
  }
}
.cid-uAwqkInoX9 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uAwqkInoX9 .carousel-inner > .active {
  display: block;
}
.cid-uAwqkInoX9 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uAwqkInoX9 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uAwqkInoX9 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uAwqkInoX9 .carousel-control,
  .cid-uAwqkInoX9 .carousel-indicators,
  .cid-uAwqkInoX9 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uAwqkInoX9 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uAwqkInoX9 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uAwqkInoX9 .carousel-indicators .active,
.cid-uAwqkInoX9 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uAwqkInoX9 .carousel-indicators .active {
  background: #fff;
}
.cid-uAwqkInoX9 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uAwqkInoX9 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uAwqkInoX9 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uAwqkInoX9 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uAwqkInoX9 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uAwqkInoX9 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uAwqkInoX9 .carousel {
  width: 100%;
}
.cid-uAwqkInoX9 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uAwqkInoX9 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uAwqkInoX9 .modal.fade .modal-dialog,
.cid-uAwqkInoX9 .modal.in .modal-dialog {
  transform: none;
}
.cid-uAwqkInoX9 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uAwqkInoX9 H6 {
  text-align: center;
}
.cid-uAwqBwjBC2 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAwnpHViaz {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-uAwnpHViaz .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uAwnpHViaz .container {
  max-width: 1400px;
}
.cid-uAwnpHViaz li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-uAwnpHViaz .col-lg-3 {
    max-width: 20%;
  }
}
.cid-uAwnpHViaz .time {
  line-height: 2;
}
.cid-uAwnpHViaz .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-uAwnpHViaz .text-wrap {
  width: 100%;
}
.cid-uAwnpHViaz .item-wrap {
  display: inline-block;
}
.cid-uAwnpHViaz .item-wrap span,
.cid-uAwnpHViaz .item-wrap p {
  transition: all 0.3s;
}
.cid-uAwnpHViaz .item-wrap:hover span,
.cid-uAwnpHViaz .item-wrap:hover p {
  color: #a2784f !important;
}
.cid-uAwnpHViaz .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-uAwnpHViaz .socicon-wrap .mbr-iconfont {
  font-size: 1.1rem;
  color: #ffffff !important;
  padding: 10px;
  margin-right: 0.1rem;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-uAwnpHViaz .socicon-wrap .mbr-iconfont:hover {
  color: #a2784f !important;
}
.cid-uAwnpHViaz .align-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-uAwnpHViaz .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uAwnpHViaz .socicon-wrap {
    margin: auto;
  }
}
.cid-uAwnpHViaz .title {
  color: #ffffff;
}
.cid-uAwnpHViaz .mbr-text {
  color: #999999;
}
.cid-uAwnpHViaz .icon-title {
  margin: 0;
  padding-bottom: 3px;
}
.cid-uAwnpHViaz .icon-title,
.cid-uAwnpHViaz .align-wrap {
  color: #999999;
  width: 100%;
}
.cid-uAwnpHViaz .mbr-text,
.cid-uAwnpHViaz .mbr-section-btn {
  color: #ffffff;
}
.cid-uAwsr2AoAg .nav-item:focus,
.cid-uAwsr2AoAg .nav-link:focus {
  outline: none;
}
.cid-uAwsr2AoAg a.nav-link:focus {
  color: #ffffff !important;
}
.cid-uAwsr2AoAg .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #333333;
}
.cid-uAwsr2AoAg .navbar.opened {
  transition: all .3s;
  background: #333333 !important;
}
.cid-uAwsr2AoAg .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-uAwsr2AoAg .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uAwsr2AoAg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAwsr2AoAg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uAwsr2AoAg .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uAwsr2AoAg .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uAwsr2AoAg .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uAwsr2AoAg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAwsr2AoAg .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uAwsr2AoAg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAwsr2AoAg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uAwsr2AoAg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAwsr2AoAg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-uAwsr2AoAg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uAwsr2AoAg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAwsr2AoAg .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uAwsr2AoAg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uAwsr2AoAg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAwsr2AoAg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAwsr2AoAg .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uAwsr2AoAg .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uAwsr2AoAg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAwsr2AoAg .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-uAwsr2AoAg .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uAwsr2AoAg .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uAwsr2AoAg .navbar.navbar-short {
  background: #333333 !important;
  min-height: 60px;
}
.cid-uAwsr2AoAg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uAwsr2AoAg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uAwsr2AoAg .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAwsr2AoAg .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-uAwsr2AoAg .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uAwsr2AoAg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAwsr2AoAg .dropdown-item.active,
.cid-uAwsr2AoAg .dropdown-item:active {
  background-color: transparent;
}
.cid-uAwsr2AoAg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAwsr2AoAg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAwsr2AoAg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAwsr2AoAg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uAwsr2AoAg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uAwsr2AoAg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAwsr2AoAg ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uAwsr2AoAg .navbar-buttons {
  text-align: center;
}
.cid-uAwsr2AoAg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAwsr2AoAg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uAwsr2AoAg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uAwsr2AoAg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uAwsr2AoAg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uAwsr2AoAg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uAwsr2AoAg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAwsr2AoAg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uAwsr2AoAg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uAwsr2AoAg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAwsr2AoAg .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uAwsr2AoAg a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uAwsr2AoAg .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uAwsr2AoAg .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uAwsr2AoAg .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uAwsr2AoAg .nav-link:hover,
.cid-uAwsr2AoAg .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-uAwsr2AoAg .dropdown-item:hover {
  color: #878787 !important;
}
.cid-uAwsr2AoAg .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-uAwsr2AoAg .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-uAwsr2AoAg .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uAwsr2AoAg .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-uAwsr2AoAg .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uAwsr2AoAg .dropdown-menu {
    top: 100%;
  }
  .cid-uAwsr2AoAg .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uAwsr2AoAg .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uAwsr2AoAg .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uAwsr2AoAg .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uAwsRO4Az0 {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-color: #fcfcfc;
}
.cid-uAwsRO4Az0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAwsRO4Az0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAwsRO4Az0 .row {
  justify-content: flex-start;
}
.cid-uAwsRO4Az0 .mbr-section-title {
  color: #161616;
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .cid-uAwsRO4Az0 .mbr-section-title {
    margin-bottom: 56px;
  }
}
@media (max-width: 767px) {
  .cid-uAwsRO4Az0 .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-uAwsRO4Az0 .item-wrap {
  width: 100%;
  margin-bottom: 24px;
}
.cid-uAwsRO4Az0 .mbr-section-subtitle {
  color: #161616;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 16px !important;
}
.cid-uAwsRO4Az0 .mbr-text {
  color: #333333;
  width: 100%;
  margin-bottom: 0;
}
.cid-uAwsRO4Az0 .mbr-section-title,
.cid-uAwsRO4Az0 .mbr-section-btn {
  color: #333333;
}
.cid-uAwsr4MetS {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-uAwsr4MetS .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uAwsr4MetS .container {
  max-width: 1400px;
}
.cid-uAwsr4MetS li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-uAwsr4MetS .col-lg-3 {
    max-width: 20%;
  }
}
.cid-uAwsr4MetS .time {
  line-height: 2;
}
.cid-uAwsr4MetS .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-uAwsr4MetS .text-wrap {
  width: 100%;
}
.cid-uAwsr4MetS .item-wrap {
  display: inline-block;
}
.cid-uAwsr4MetS .item-wrap span,
.cid-uAwsr4MetS .item-wrap p {
  transition: all 0.3s;
}
.cid-uAwsr4MetS .item-wrap:hover span,
.cid-uAwsr4MetS .item-wrap:hover p {
  color: #a2784f !important;
}
.cid-uAwsr4MetS .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-uAwsr4MetS .socicon-wrap .mbr-iconfont {
  font-size: 1.1rem;
  color: #ffffff !important;
  padding: 10px;
  margin-right: 0.1rem;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-uAwsr4MetS .socicon-wrap .mbr-iconfont:hover {
  color: #a2784f !important;
}
.cid-uAwsr4MetS .align-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-uAwsr4MetS .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uAwsr4MetS .socicon-wrap {
    margin: auto;
  }
}
.cid-uAwsr4MetS .title {
  color: #ffffff;
}
.cid-uAwsr4MetS .mbr-text {
  color: #999999;
}
.cid-uAwsr4MetS .icon-title {
  margin: 0;
  padding-bottom: 3px;
}
.cid-uAwsr4MetS .icon-title,
.cid-uAwsr4MetS .align-wrap {
  color: #999999;
  width: 100%;
}
.cid-uAwsr4MetS .mbr-text,
.cid-uAwsr4MetS .mbr-section-btn {
  color: #ffffff;
}
.cid-uAwtbTsrxl .nav-item:focus,
.cid-uAwtbTsrxl .nav-link:focus {
  outline: none;
}
.cid-uAwtbTsrxl a.nav-link:focus {
  color: #ffffff !important;
}
.cid-uAwtbTsrxl .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #333333;
}
.cid-uAwtbTsrxl .navbar.opened {
  transition: all .3s;
  background: #333333 !important;
}
.cid-uAwtbTsrxl .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-uAwtbTsrxl .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uAwtbTsrxl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAwtbTsrxl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uAwtbTsrxl .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uAwtbTsrxl .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uAwtbTsrxl .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uAwtbTsrxl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAwtbTsrxl .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uAwtbTsrxl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAwtbTsrxl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uAwtbTsrxl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAwtbTsrxl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-uAwtbTsrxl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uAwtbTsrxl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAwtbTsrxl .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uAwtbTsrxl .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uAwtbTsrxl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAwtbTsrxl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAwtbTsrxl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uAwtbTsrxl .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uAwtbTsrxl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAwtbTsrxl .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-uAwtbTsrxl .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uAwtbTsrxl .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uAwtbTsrxl .navbar.navbar-short {
  background: #333333 !important;
  min-height: 60px;
}
.cid-uAwtbTsrxl .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uAwtbTsrxl .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uAwtbTsrxl .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAwtbTsrxl .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-uAwtbTsrxl .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uAwtbTsrxl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAwtbTsrxl .dropdown-item.active,
.cid-uAwtbTsrxl .dropdown-item:active {
  background-color: transparent;
}
.cid-uAwtbTsrxl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAwtbTsrxl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAwtbTsrxl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAwtbTsrxl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uAwtbTsrxl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uAwtbTsrxl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAwtbTsrxl ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uAwtbTsrxl .navbar-buttons {
  text-align: center;
}
.cid-uAwtbTsrxl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAwtbTsrxl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uAwtbTsrxl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uAwtbTsrxl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uAwtbTsrxl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uAwtbTsrxl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uAwtbTsrxl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAwtbTsrxl nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uAwtbTsrxl nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uAwtbTsrxl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAwtbTsrxl .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uAwtbTsrxl a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uAwtbTsrxl .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uAwtbTsrxl .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uAwtbTsrxl .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uAwtbTsrxl .nav-link:hover,
.cid-uAwtbTsrxl .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-uAwtbTsrxl .dropdown-item:hover {
  color: #878787 !important;
}
.cid-uAwtbTsrxl .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-uAwtbTsrxl .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-uAwtbTsrxl .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uAwtbTsrxl .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-uAwtbTsrxl .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uAwtbTsrxl .dropdown-menu {
    top: 100%;
  }
  .cid-uAwtbTsrxl .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uAwtbTsrxl .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uAwtbTsrxl .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uAwtbTsrxl .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uAwtbU4XC8 {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-color: #fcfcfc;
}
.cid-uAwtbU4XC8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAwtbU4XC8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAwtbU4XC8 .row {
  justify-content: flex-start;
}
.cid-uAwtbU4XC8 .mbr-section-title {
  color: #161616;
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .cid-uAwtbU4XC8 .mbr-section-title {
    margin-bottom: 56px;
  }
}
@media (max-width: 767px) {
  .cid-uAwtbU4XC8 .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-uAwtbU4XC8 .item-wrap {
  width: 100%;
  margin-bottom: 24px;
}
.cid-uAwtbU4XC8 .mbr-section-subtitle {
  color: #161616;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 16px !important;
}
.cid-uAwtbU4XC8 .mbr-text {
  color: #333333;
  width: 100%;
  margin-bottom: 0;
}
.cid-uAwtbU4XC8 .mbr-section-title,
.cid-uAwtbU4XC8 .mbr-section-btn {
  color: #333333;
}
.cid-uAwtbUFB7s {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-uAwtbUFB7s .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uAwtbUFB7s .container {
  max-width: 1400px;
}
.cid-uAwtbUFB7s li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-uAwtbUFB7s .col-lg-3 {
    max-width: 20%;
  }
}
.cid-uAwtbUFB7s .time {
  line-height: 2;
}
.cid-uAwtbUFB7s .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-uAwtbUFB7s .text-wrap {
  width: 100%;
}
.cid-uAwtbUFB7s .item-wrap {
  display: inline-block;
}
.cid-uAwtbUFB7s .item-wrap span,
.cid-uAwtbUFB7s .item-wrap p {
  transition: all 0.3s;
}
.cid-uAwtbUFB7s .item-wrap:hover span,
.cid-uAwtbUFB7s .item-wrap:hover p {
  color: #a2784f !important;
}
.cid-uAwtbUFB7s .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-uAwtbUFB7s .socicon-wrap .mbr-iconfont {
  font-size: 1.1rem;
  color: #ffffff !important;
  padding: 10px;
  margin-right: 0.1rem;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-uAwtbUFB7s .socicon-wrap .mbr-iconfont:hover {
  color: #a2784f !important;
}
.cid-uAwtbUFB7s .align-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-uAwtbUFB7s .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uAwtbUFB7s .socicon-wrap {
    margin: auto;
  }
}
.cid-uAwtbUFB7s .title {
  color: #ffffff;
}
.cid-uAwtbUFB7s .mbr-text {
  color: #999999;
}
.cid-uAwtbUFB7s .icon-title {
  margin: 0;
  padding-bottom: 3px;
}
.cid-uAwtbUFB7s .icon-title,
.cid-uAwtbUFB7s .align-wrap {
  color: #999999;
  width: 100%;
}
.cid-uAwtbUFB7s .mbr-text,
.cid-uAwtbUFB7s .mbr-section-btn {
  color: #ffffff;
}
.cid-uAwtgHxwhG .nav-item:focus,
.cid-uAwtgHxwhG .nav-link:focus {
  outline: none;
}
.cid-uAwtgHxwhG a.nav-link:focus {
  color: #ffffff !important;
}
.cid-uAwtgHxwhG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #333333;
}
.cid-uAwtgHxwhG .navbar.opened {
  transition: all .3s;
  background: #333333 !important;
}
.cid-uAwtgHxwhG .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-uAwtgHxwhG .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uAwtgHxwhG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAwtgHxwhG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uAwtgHxwhG .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uAwtgHxwhG .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uAwtgHxwhG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uAwtgHxwhG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAwtgHxwhG .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uAwtgHxwhG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAwtgHxwhG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uAwtgHxwhG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAwtgHxwhG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-uAwtgHxwhG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uAwtgHxwhG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAwtgHxwhG .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uAwtgHxwhG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uAwtgHxwhG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAwtgHxwhG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAwtgHxwhG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uAwtgHxwhG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uAwtgHxwhG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAwtgHxwhG .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-uAwtgHxwhG .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uAwtgHxwhG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uAwtgHxwhG .navbar.navbar-short {
  background: #333333 !important;
  min-height: 60px;
}
.cid-uAwtgHxwhG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uAwtgHxwhG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uAwtgHxwhG .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAwtgHxwhG .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-uAwtgHxwhG .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uAwtgHxwhG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAwtgHxwhG .dropdown-item.active,
.cid-uAwtgHxwhG .dropdown-item:active {
  background-color: transparent;
}
.cid-uAwtgHxwhG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAwtgHxwhG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAwtgHxwhG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAwtgHxwhG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uAwtgHxwhG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uAwtgHxwhG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAwtgHxwhG ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uAwtgHxwhG .navbar-buttons {
  text-align: center;
}
.cid-uAwtgHxwhG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAwtgHxwhG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uAwtgHxwhG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uAwtgHxwhG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uAwtgHxwhG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uAwtgHxwhG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uAwtgHxwhG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAwtgHxwhG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uAwtgHxwhG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uAwtgHxwhG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAwtgHxwhG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uAwtgHxwhG a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uAwtgHxwhG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uAwtgHxwhG .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uAwtgHxwhG .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uAwtgHxwhG .nav-link:hover,
.cid-uAwtgHxwhG .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-uAwtgHxwhG .dropdown-item:hover {
  color: #878787 !important;
}
.cid-uAwtgHxwhG .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-uAwtgHxwhG .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-uAwtgHxwhG .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uAwtgHxwhG .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-uAwtgHxwhG .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uAwtgHxwhG .dropdown-menu {
    top: 100%;
  }
  .cid-uAwtgHxwhG .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uAwtgHxwhG .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uAwtgHxwhG .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uAwtgHxwhG .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uAwtgI4d7R {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-color: #fcfcfc;
}
.cid-uAwtgI4d7R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAwtgI4d7R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAwtgI4d7R .row {
  justify-content: flex-start;
}
.cid-uAwtgI4d7R .mbr-section-title {
  color: #161616;
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .cid-uAwtgI4d7R .mbr-section-title {
    margin-bottom: 56px;
  }
}
@media (max-width: 767px) {
  .cid-uAwtgI4d7R .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-uAwtgI4d7R .item-wrap {
  width: 100%;
  margin-bottom: 24px;
}
.cid-uAwtgI4d7R .mbr-section-subtitle {
  color: #161616;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 16px !important;
}
.cid-uAwtgI4d7R .mbr-text {
  color: #333333;
  width: 100%;
  margin-bottom: 0;
}
.cid-uAwtgI4d7R .mbr-section-title,
.cid-uAwtgI4d7R .mbr-section-btn {
  color: #333333;
}
.cid-uAwtgIyJdk {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-uAwtgIyJdk .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uAwtgIyJdk .container {
  max-width: 1400px;
}
.cid-uAwtgIyJdk li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-uAwtgIyJdk .col-lg-3 {
    max-width: 20%;
  }
}
.cid-uAwtgIyJdk .time {
  line-height: 2;
}
.cid-uAwtgIyJdk .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-uAwtgIyJdk .text-wrap {
  width: 100%;
}
.cid-uAwtgIyJdk .item-wrap {
  display: inline-block;
}
.cid-uAwtgIyJdk .item-wrap span,
.cid-uAwtgIyJdk .item-wrap p {
  transition: all 0.3s;
}
.cid-uAwtgIyJdk .item-wrap:hover span,
.cid-uAwtgIyJdk .item-wrap:hover p {
  color: #a2784f !important;
}
.cid-uAwtgIyJdk .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-uAwtgIyJdk .socicon-wrap .mbr-iconfont {
  font-size: 1.1rem;
  color: #ffffff !important;
  padding: 10px;
  margin-right: 0.1rem;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-uAwtgIyJdk .socicon-wrap .mbr-iconfont:hover {
  color: #a2784f !important;
}
.cid-uAwtgIyJdk .align-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-uAwtgIyJdk .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uAwtgIyJdk .socicon-wrap {
    margin: auto;
  }
}
.cid-uAwtgIyJdk .title {
  color: #ffffff;
}
.cid-uAwtgIyJdk .mbr-text {
  color: #999999;
}
.cid-uAwtgIyJdk .icon-title {
  margin: 0;
  padding-bottom: 3px;
}
.cid-uAwtgIyJdk .icon-title,
.cid-uAwtgIyJdk .align-wrap {
  color: #999999;
  width: 100%;
}
.cid-uAwtgIyJdk .mbr-text,
.cid-uAwtgIyJdk .mbr-section-btn {
  color: #ffffff;
}
.cid-uAww8ydOnr .nav-item:focus,
.cid-uAww8ydOnr .nav-link:focus {
  outline: none;
}
.cid-uAww8ydOnr a.nav-link:focus {
  color: #ffffff !important;
}
.cid-uAww8ydOnr .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #333333;
}
.cid-uAww8ydOnr .navbar.opened {
  transition: all .3s;
  background: #333333 !important;
}
.cid-uAww8ydOnr .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-uAww8ydOnr .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uAww8ydOnr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAww8ydOnr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uAww8ydOnr .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uAww8ydOnr .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uAww8ydOnr .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uAww8ydOnr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAww8ydOnr .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uAww8ydOnr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAww8ydOnr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uAww8ydOnr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAww8ydOnr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-uAww8ydOnr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uAww8ydOnr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAww8ydOnr .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uAww8ydOnr .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uAww8ydOnr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAww8ydOnr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAww8ydOnr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uAww8ydOnr .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uAww8ydOnr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAww8ydOnr .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-uAww8ydOnr .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uAww8ydOnr .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uAww8ydOnr .navbar.navbar-short {
  background: #333333 !important;
  min-height: 60px;
}
.cid-uAww8ydOnr .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uAww8ydOnr .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uAww8ydOnr .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAww8ydOnr .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-uAww8ydOnr .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uAww8ydOnr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAww8ydOnr .dropdown-item.active,
.cid-uAww8ydOnr .dropdown-item:active {
  background-color: transparent;
}
.cid-uAww8ydOnr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAww8ydOnr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAww8ydOnr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAww8ydOnr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uAww8ydOnr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uAww8ydOnr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAww8ydOnr ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uAww8ydOnr .navbar-buttons {
  text-align: center;
}
.cid-uAww8ydOnr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAww8ydOnr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uAww8ydOnr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uAww8ydOnr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uAww8ydOnr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uAww8ydOnr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uAww8ydOnr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAww8ydOnr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uAww8ydOnr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uAww8ydOnr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAww8ydOnr .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uAww8ydOnr a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uAww8ydOnr .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uAww8ydOnr .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uAww8ydOnr .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uAww8ydOnr .nav-link:hover,
.cid-uAww8ydOnr .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-uAww8ydOnr .dropdown-item:hover {
  color: #878787 !important;
}
.cid-uAww8ydOnr .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-uAww8ydOnr .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-uAww8ydOnr .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uAww8ydOnr .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-uAww8ydOnr .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uAww8ydOnr .dropdown-menu {
    top: 100%;
  }
  .cid-uAww8ydOnr .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uAww8ydOnr .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uAww8ydOnr .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uAww8ydOnr .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uAwHUTcCh4 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/grupo-fleitas-moreno-las-palmas-inmobiliaria-2000x1166.webp");
}
.cid-uAwHUTcCh4 .underline .line {
  width: 2rem;
  height: 1px;
  background: #c19b76;
  display: inline-block;
}
.cid-uAwHUTcCh4 .main-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uAwHUTcCh4 .form-group {
  margin-bottom: 1rem;
}
.cid-uAwHUTcCh4 .form-control {
  border: none !important;
  border-radius: 0;
  padding: 0.5rem 1rem;
  background: #f5f5f5;
  color: #000000;
  width: 100%;
}
.cid-uAwHUTcCh4 textarea.form-control {
  min-height: 96px;
}
.cid-uAwHUTcCh4 .input-group-btn {
  width: 100%;
}
.cid-uAwHUTcCh4 .input-group-btn .btn {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-uAwHUTcCh4 .form-control-label {
  color: #333333;
  font-size: 1rem;
  font-weight: 100 !important;
}
.cid-uAwHUTcCh4 .google-map {
  width: 100%;
  height: 25rem;
}
.cid-uAwHUTcCh4 .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-uAwHUTcCh4 .info-row ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.cid-uAwHUTcCh4 .info-row ol li {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-bottom: 1px solid #333333;
  padding: 10px;
}
.cid-uAwHUTcCh4 .info-value {
  color: #b7b6b6;
}
@media (max-width: 991px), (max-width: 767px) {
  .cid-uAwHUTcCh4 .form-wrapper {
    padding-bottom: 2rem;
  }
  .cid-uAwHUTcCh4 .main-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uAwHUTcCh4 .form-wrapper {
    padding-bottom: 0;
    padding-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uAwHUTcCh4 .form-subtitle {
    text-align: center;
  }
}
.cid-uAwHUTcCh4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAwHUTcCh4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAwHUTcCh4 .form-title {
  color: #c19b76;
  text-align: center;
}
.cid-uAwHUTcCh4 .form-text {
  text-align: center;
}
.cid-uAwHUTcCh4 LABEL {
  color: #000000;
}
.cid-uAwHUTcCh4 .main-subtitle,
.cid-uAwHUTcCh4 .underline {
  color: #c19b76;
}
.cid-uAwHUTcCh4 .main-title {
  color: #333333;
}
.cid-uAww8zyAaD {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-uAww8zyAaD .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uAww8zyAaD .container {
  max-width: 1400px;
}
.cid-uAww8zyAaD li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-uAww8zyAaD .col-lg-3 {
    max-width: 20%;
  }
}
.cid-uAww8zyAaD .time {
  line-height: 2;
}
.cid-uAww8zyAaD .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-uAww8zyAaD .text-wrap {
  width: 100%;
}
.cid-uAww8zyAaD .item-wrap {
  display: inline-block;
}
.cid-uAww8zyAaD .item-wrap span,
.cid-uAww8zyAaD .item-wrap p {
  transition: all 0.3s;
}
.cid-uAww8zyAaD .item-wrap:hover span,
.cid-uAww8zyAaD .item-wrap:hover p {
  color: #a2784f !important;
}
.cid-uAww8zyAaD .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-uAww8zyAaD .socicon-wrap .mbr-iconfont {
  font-size: 1.1rem;
  color: #ffffff !important;
  padding: 10px;
  margin-right: 0.1rem;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-uAww8zyAaD .socicon-wrap .mbr-iconfont:hover {
  color: #a2784f !important;
}
.cid-uAww8zyAaD .align-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-uAww8zyAaD .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uAww8zyAaD .socicon-wrap {
    margin: auto;
  }
}
.cid-uAww8zyAaD .title {
  color: #ffffff;
}
.cid-uAww8zyAaD .mbr-text {
  color: #999999;
}
.cid-uAww8zyAaD .icon-title {
  margin: 0;
  padding-bottom: 3px;
}
.cid-uAww8zyAaD .icon-title,
.cid-uAww8zyAaD .align-wrap {
  color: #999999;
  width: 100%;
}
.cid-uAww8zyAaD .mbr-text,
.cid-uAww8zyAaD .mbr-section-btn {
  color: #ffffff;
}
.cid-uB4Cx87cRK .nav-item:focus,
.cid-uB4Cx87cRK .nav-link:focus {
  outline: none;
}
.cid-uB4Cx87cRK a.nav-link:focus {
  color: #ffffff !important;
}
.cid-uB4Cx87cRK .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #333333;
}
.cid-uB4Cx87cRK .navbar.opened {
  transition: all .3s;
  background: #333333 !important;
}
.cid-uB4Cx87cRK .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-uB4Cx87cRK .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uB4Cx87cRK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uB4Cx87cRK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uB4Cx87cRK .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uB4Cx87cRK .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uB4Cx87cRK .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uB4Cx87cRK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uB4Cx87cRK .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uB4Cx87cRK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uB4Cx87cRK .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uB4Cx87cRK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uB4Cx87cRK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-uB4Cx87cRK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uB4Cx87cRK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uB4Cx87cRK .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uB4Cx87cRK .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uB4Cx87cRK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uB4Cx87cRK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uB4Cx87cRK .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uB4Cx87cRK .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uB4Cx87cRK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uB4Cx87cRK .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-uB4Cx87cRK .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uB4Cx87cRK .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uB4Cx87cRK .navbar.navbar-short {
  background: #333333 !important;
  min-height: 60px;
}
.cid-uB4Cx87cRK .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uB4Cx87cRK .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uB4Cx87cRK .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uB4Cx87cRK .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-uB4Cx87cRK .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uB4Cx87cRK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uB4Cx87cRK .dropdown-item.active,
.cid-uB4Cx87cRK .dropdown-item:active {
  background-color: transparent;
}
.cid-uB4Cx87cRK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uB4Cx87cRK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uB4Cx87cRK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uB4Cx87cRK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uB4Cx87cRK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uB4Cx87cRK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uB4Cx87cRK ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uB4Cx87cRK .navbar-buttons {
  text-align: center;
}
.cid-uB4Cx87cRK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uB4Cx87cRK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uB4Cx87cRK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uB4Cx87cRK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uB4Cx87cRK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uB4Cx87cRK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uB4Cx87cRK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uB4Cx87cRK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uB4Cx87cRK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uB4Cx87cRK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uB4Cx87cRK .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uB4Cx87cRK a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uB4Cx87cRK .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uB4Cx87cRK .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uB4Cx87cRK .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uB4Cx87cRK .nav-link:hover,
.cid-uB4Cx87cRK .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-uB4Cx87cRK .dropdown-item:hover {
  color: #878787 !important;
}
.cid-uB4Cx87cRK .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-uB4Cx87cRK .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-uB4Cx87cRK .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uB4Cx87cRK .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-uB4Cx87cRK .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uB4Cx87cRK .dropdown-menu {
    top: 100%;
  }
  .cid-uB4Cx87cRK .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uB4Cx87cRK .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uB4Cx87cRK .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uB4Cx87cRK .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uB4DhuvVL2 {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uB4DhuvVL2 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uB4DhuvVL2 .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uB4DhuvVL2 .title {
    width: 100% !important;
  }
}
.cid-uB4DhuvVL2 .mbr-section-subtitle,
.cid-uB4DhuvVL2 .underline {
  color: #c19b76;
}
.cid-uB4DhuvVL2 .mbr-section-title {
  color: #333333;
}
.cid-uB4CNf9xJo {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uB4CNf9xJo img {
  width: 100%;
  filter: grayscale(1);
}
.cid-uB4CNf9xJo .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}
.cid-uB4CNf9xJo .block-timeline {
  display: flex;
}
.cid-uB4CNf9xJo .image-wrap {
  padding: 0rem;
  padding-right: 2rem;
}
.cid-uB4CNf9xJo .mbr-timeline-title {
  color: #333333;
  margin-bottom: 0.9rem;
}
.cid-uB4CNf9xJo .inner-date {
  padding: 1rem 1.5rem;
  background-color: #c19b76;
}
.cid-uB4CNf9xJo .date-block {
  margin-right: 0.6rem;
}
.cid-uB4CNf9xJo .mbr-date-block {
  margin-bottom: 0rem;
}
.cid-uB4CNf9xJo .mbr-timeline-text {
  color: #333333;
  margin-bottom: 1.7rem;
}
.cid-uB4CNf9xJo .mbr-timeline-date {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0rem;
}
.cid-uB4CNf9xJo .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-uB4CNf9xJo .timeline-text-content {
  display: flex;
  background: #cccccc;
  transition: all 0.4s;
}
.cid-uB4CNf9xJo .month-block {
  font-weight: 700;
  color: #ffffff;
}
.cid-uB4CNf9xJo .timeline-element {
  margin-bottom: 30px;
  justify-content: center;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-uB4CNf9xJo .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}
.cid-uB4CNf9xJo .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-uB4CNf9xJo .reverse .timeline-text-content {
  margin-right: 0;
}
.cid-uB4CNf9xJo .bottom-date {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-uB4CNf9xJo .mbr-timeline-location {
  margin-bottom: 0rem;
  font-weight: 700;
}
.cid-uB4CNf9xJo .location {
  display: flex;
  align-items: center;
}
.cid-uB4CNf9xJo .mbr-iconfont {
  font-size: 16px;
  color: #c1f7d5;
}
.cid-uB4CNf9xJo .iconsBackground {
  margin-right: 0.8rem;
}
.cid-uB4CNf9xJo .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 767px) {
  .cid-uB4CNf9xJo .date-block {
    display: none;
  }
  .cid-uB4CNf9xJo .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-uB4CNf9xJo .image-wrap {
    padding-right: 0rem;
  }
  .cid-uB4CNf9xJo .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
  .cid-uB4CNf9xJo .block-timeline {
    padding: 0;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uB4CNf9xJo .timeline-text-content {
    flex-direction: column;
    padding: 1rem;
  }
  .cid-uB4CNf9xJo .image-wrap {
    padding-right: 0rem;
  }
  .cid-uB4CNf9xJo .text-block {
    padding: 2rem 0rem 0rem 0rem;
  }
}
@media (min-width: 992px) {
  .cid-uB4CNf9xJo .timeline-text-content {
    padding: 1.9rem;
  }
}
@media (min-width: 767px) {
  .cid-uB4CNf9xJo .block-timeline {
    padding: 0;
  }
}
.cid-uB4CNf9xJo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uB4CNf9xJo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uB4CNf9xJo H5 {
  color: #ffffff;
}
.cid-uB4HJmvdey {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uB4Cx9bOw8 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-uB4Cx9bOw8 .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uB4Cx9bOw8 .container {
  max-width: 1400px;
}
.cid-uB4Cx9bOw8 li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-uB4Cx9bOw8 .col-lg-3 {
    max-width: 20%;
  }
}
.cid-uB4Cx9bOw8 .time {
  line-height: 2;
}
.cid-uB4Cx9bOw8 .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-uB4Cx9bOw8 .text-wrap {
  width: 100%;
}
.cid-uB4Cx9bOw8 .item-wrap {
  display: inline-block;
}
.cid-uB4Cx9bOw8 .item-wrap span,
.cid-uB4Cx9bOw8 .item-wrap p {
  transition: all 0.3s;
}
.cid-uB4Cx9bOw8 .item-wrap:hover span,
.cid-uB4Cx9bOw8 .item-wrap:hover p {
  color: #a2784f !important;
}
.cid-uB4Cx9bOw8 .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-uB4Cx9bOw8 .socicon-wrap .mbr-iconfont {
  font-size: 1.1rem;
  color: #ffffff !important;
  padding: 10px;
  margin-right: 0.1rem;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-uB4Cx9bOw8 .socicon-wrap .mbr-iconfont:hover {
  color: #a2784f !important;
}
.cid-uB4Cx9bOw8 .align-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-uB4Cx9bOw8 .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uB4Cx9bOw8 .socicon-wrap {
    margin: auto;
  }
}
.cid-uB4Cx9bOw8 .title {
  color: #ffffff;
}
.cid-uB4Cx9bOw8 .mbr-text {
  color: #999999;
}
.cid-uB4Cx9bOw8 .icon-title {
  margin: 0;
  padding-bottom: 3px;
}
.cid-uB4Cx9bOw8 .icon-title,
.cid-uB4Cx9bOw8 .align-wrap {
  color: #999999;
  width: 100%;
}
.cid-uB4Cx9bOw8 .mbr-text,
.cid-uB4Cx9bOw8 .mbr-section-btn {
  color: #ffffff;
}
.cid-uB4INDgife .nav-item:focus,
.cid-uB4INDgife .nav-link:focus {
  outline: none;
}
.cid-uB4INDgife a.nav-link:focus {
  color: #ffffff !important;
}
.cid-uB4INDgife .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #333333;
}
.cid-uB4INDgife .navbar.opened {
  transition: all .3s;
  background: #333333 !important;
}
.cid-uB4INDgife .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-uB4INDgife .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uB4INDgife .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uB4INDgife .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-uB4INDgife .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uB4INDgife .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uB4INDgife .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uB4INDgife .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uB4INDgife .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uB4INDgife .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uB4INDgife .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uB4INDgife .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uB4INDgife .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-uB4INDgife .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uB4INDgife .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uB4INDgife .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uB4INDgife .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uB4INDgife .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uB4INDgife .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uB4INDgife .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uB4INDgife .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uB4INDgife .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uB4INDgife .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-uB4INDgife .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uB4INDgife .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uB4INDgife .navbar.navbar-short {
  background: #333333 !important;
  min-height: 60px;
}
.cid-uB4INDgife .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uB4INDgife .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uB4INDgife .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uB4INDgife .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-uB4INDgife .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uB4INDgife .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uB4INDgife .dropdown-item.active,
.cid-uB4INDgife .dropdown-item:active {
  background-color: transparent;
}
.cid-uB4INDgife .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uB4INDgife .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uB4INDgife .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uB4INDgife .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uB4INDgife .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uB4INDgife .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uB4INDgife ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uB4INDgife .navbar-buttons {
  text-align: center;
}
.cid-uB4INDgife button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uB4INDgife button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uB4INDgife button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uB4INDgife button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uB4INDgife button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uB4INDgife button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uB4INDgife nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uB4INDgife nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uB4INDgife nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uB4INDgife nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uB4INDgife .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uB4INDgife a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uB4INDgife .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uB4INDgife .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uB4INDgife .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-uB4INDgife .nav-link:hover,
.cid-uB4INDgife .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-uB4INDgife .dropdown-item:hover {
  color: #878787 !important;
}
.cid-uB4INDgife .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-uB4INDgife .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-uB4INDgife .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uB4INDgife .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-uB4INDgife .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uB4INDgife .dropdown-menu {
    top: 100%;
  }
  .cid-uB4INDgife .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-uB4INDgife .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-uB4INDgife .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-uB4INDgife .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uB4J09Pb6g {
  padding-top: 10rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uB4J09Pb6g .mbr-section-title {
  margin-bottom: 18px;
  color: #202020;
}
.cid-uB4J09Pb6g .head_title {
  margin: 25px 0 58px;
  text-align: center;
}
.cid-uB4J09Pb6g .card_box {
  margin-bottom: 65px;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uB4J09Pb6g .card_info {
  margin-bottom: 12px;
}
.cid-uB4J09Pb6g .card_date {
  color: #555555;
}
.cid-uB4J09Pb6g .card_title {
  line-height: 1.1em;
  margin-bottom: 18px;
  color: #202020;
}
.cid-uB4J09Pb6g .card_text {
  margin-top: 4px;
}
.cid-uB4J09Pb6g .item-img {
  margin-bottom: 30px;
}
.cid-uB4J09Pb6g .item-img img {
  width: 100%;
  object-fit: cover;
  display: block;
  max-height: 450px;
}
.cid-uB4J09Pb6g .linkBtn a {
  position: relative;
  display: inline-block;
  padding: 1px 7px;
  vertical-align: middle;
  overflow: hidden;
  line-height: 2em;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .2em;
}
.cid-uB4J09Pb6g .linkBtn a:after,
.cid-uB4J09Pb6g .linkBtn a:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background-color: currentColor;
  transition: transform 0.4s cubic-bezier(0.31, 0.29, 0.05, 0.96);
}
.cid-uB4J09Pb6g .linkBtn a:before {
  left: 0;
}
.cid-uB4J09Pb6g .linkBtn a:after {
  left: -100%;
  transition-delay: .3s;
}
.cid-uB4J09Pb6g .linkBtn a:hover:before,
.cid-uB4J09Pb6g .linkBtn a:hover:after {
  transform: translateX(100%);
}
.cid-uB4INFImUv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uB4INFY27n {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-uB4INFY27n .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uB4INFY27n .container {
  max-width: 1400px;
}
.cid-uB4INFY27n li {
  margin: 0;
  list-style: none;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .cid-uB4INFY27n .col-lg-3 {
    max-width: 20%;
  }
}
.cid-uB4INFY27n .time {
  line-height: 2;
}
.cid-uB4INFY27n .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-uB4INFY27n .text-wrap {
  width: 100%;
}
.cid-uB4INFY27n .item-wrap {
  display: inline-block;
}
.cid-uB4INFY27n .item-wrap span,
.cid-uB4INFY27n .item-wrap p {
  transition: all 0.3s;
}
.cid-uB4INFY27n .item-wrap:hover span,
.cid-uB4INFY27n .item-wrap:hover p {
  color: #a2784f !important;
}
.cid-uB4INFY27n .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-uB4INFY27n .socicon-wrap .mbr-iconfont {
  font-size: 1.1rem;
  color: #ffffff !important;
  padding: 10px;
  margin-right: 0.1rem;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-uB4INFY27n .socicon-wrap .mbr-iconfont:hover {
  color: #a2784f !important;
}
.cid-uB4INFY27n .align-wrap {
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-uB4INFY27n .col-md-6 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uB4INFY27n .socicon-wrap {
    margin: auto;
  }
}
.cid-uB4INFY27n .title {
  color: #ffffff;
}
.cid-uB4INFY27n .mbr-text {
  color: #999999;
}
.cid-uB4INFY27n .icon-title {
  margin: 0;
  padding-bottom: 3px;
}
.cid-uB4INFY27n .icon-title,
.cid-uB4INFY27n .align-wrap {
  color: #999999;
  width: 100%;
}
.cid-uB4INFY27n .mbr-text,
.cid-uB4INFY27n .mbr-section-btn {
  color: #ffffff;
}
