body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.2rem;
}
.display-1 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.9rem;
  line-height: 1.3;
}
.display-2 > .mbr-iconfont {
  font-size: 3.04rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 1.76rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.44rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 1.32rem;
  }
}
@media (max-width: 767px) {
  .display-1 {
    font-size: 0.55rem !important;
  }
}
@media (max-width: 992px) {
  .display-4:not(.nav-link) {
    font-size: 0.6rem;
  }
}
@media (max-width: 992px) {
  .display-5 {
    font-size: 0.88rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    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))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #ff2d55 !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #808080 !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff2d55 !important;
  border-color: #ff2d55 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #e0002b !important;
  border-color: #e0002b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #e0002b !important;
  border-color: #e0002b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #808080 !important;
  border-color: #808080 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #5a5a5a !important;
  border-color: #5a5a5a !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #5a5a5a !important;
  border-color: #5a5a5a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #c60026;
  color: #c60026;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #ff2d55;
  border-color: #ff2d55;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff2d55 !important;
  border-color: #ff2d55 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #4d4d4d;
  color: #4d4d4d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #808080;
  border-color: #808080;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #808080 !important;
  border-color: #808080 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !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: #ff2d55 !important;
}
.text-secondary {
  color: #149dcc !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #808080 !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #ff93a8 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #57c8ef !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #fbf7ac !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #b2aba4 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #b3b3b3 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #d6ceb5 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #808080;
}
.alert-danger {
  background-color: #b1a374;
}
.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: #ff2d55;
  border-color: #ff2d55;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff2d55;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff9fa;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #c0c0c0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.44rem;
}
blockquote {
  border-color: #ff2d55;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff2d55;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff2d55;
  border-bottom-color: #ff2d55;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #ff2d55 !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: #149dcc !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ff2d55' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
@media (min-width: 992px) {
  .cid-rJ1PKX7roK .display-1 {
    letter-spacing: -6px;
  }
}
.cid-rJ1PKX7roK p {
  margin: 0;
}
.cid-rJ1PKX7roK .container-fluid {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-rJ1PKX7roK .display-1 {
  line-height: 1;
}
.cid-seAenzrOvk {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #d2cbbb;
}
.cid-seAenzrOvk h3 {
  position: relative;
}
.cid-seAenzrOvk h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-seAenzrOvk H1 {
  color: #876a4d;
}
.cid-seAenzrOvk H3 {
  color: #635a51;
}
.cid-sAEFwaB7IN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sAEFwaB7IN .card-box {
  z-index: 10;
  position: relative;
}
.cid-sAEFwaB7IN .card {
  padding: 0 !important;
}
.cid-sAEFwaB7IN p {
  width: fit-content;
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 0;
}
.cid-sAEFwaB7IN p:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .3;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-sAEFwaB7IN p:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-sAEFwaB7IN .container-fluid {
  padding: 0;
}
.cid-sAEFwaB7IN .card-wrapper {
  background-position: center;
  height: 100%;
  padding: 13rem 3rem;
  background-size: cover;
  transition: all 0.3s;
}
.cid-sAEFwaB7IN .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.2;
}
.cid-sAEFwaB7IN .card-wrapper:hover {
  transform: scale(1.05);
  z-index: 11;
}
.cid-sAEFwaB7IN .card-wrapper:hover:before {
  opacity: 0.4;
}
.cid-sAEFwaB7IN .card1 {
  background-image: url("../../../assets/images/ds-art-1920x1280.jpg");
  z-index: 4;
}
.cid-sAEFwaB7IN .card2 {
  background-image: url("../../../assets/images/ds-furniture-1920x1280.jpg");
  z-index: 3;
}
.cid-sAEFwaB7IN .card3 {
  background-image: url("../../../assets/images/ds-interior-1920x1280.jpg");
  z-index: 2;
}
.cid-sAEFwaB7IN .card4 {
  background-image: url("../../../assets/images/background3.jpg");
  z-index: 1;
}
.cid-sAEFwaB7IN h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-sAEFwaB7IN .btn {
  margin: 0 !important;
  padding: 1rem 2rem;
}
@media (max-width: 1400px) {
  .cid-sAEFwaB7IN .card-wrapper {
    padding: 13rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sAEFwaB7IN .card-wrapper {
    padding: 13rem 2rem;
  }
  .cid-sAEFwaB7IN .card-box {
    text-align: center;
  }
}
.cid-sAEFwaB7IN .mbr-text {
  color: #cccccc;
}
.cid-rJ1PLmO8Eo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-rJ1PLmO8Eo .mbr-text {
    text-align: center;
  }
}
.cid-rJ1PLmO8Eo .container-fluid {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-rJ1PLmO8Eo .media-content {
    max-width: 700px;
    padding: 5rem 2rem;
    margin: auto;
    margin-right: 0;
  }
}
.cid-rJ1PLmO8Eo .media-content {
  padding: 5rem 2rem;
}
.cid-rJ1PLmO8Eo img {
  height: 100%;
  object-fit: cover;
}
.cid-rJ1PLmO8Eo .mbr-figure {
  height: 100%;
}
.cid-rJ1PLmO8Eo .col-lg-5,
.cid-rJ1PLmO8Eo .col-lg-7 {
  padding: 0;
}
.cid-rJ1PLmO8Eo .row {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rJ1PLmO8Eo .media-content {
    padding: 3rem 1rem;
  }
}
.cid-sAVPcBr15i {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cid-sAVPcBr15i .mbr-text {
    text-align: center;
  }
}
.cid-sAVPcBr15i li {
  list-style: none;
  padding-bottom: 1.5rem;
  text-decoration: underline;
}
.cid-sAVPcBr15i ul {
  padding: 0;
  margin: 0;
}
.cid-sAVPcBr15i H3 {
  text-align: center;
}
.cid-sAVPcBr15i .item1 a:hover {
  color: #ff7f9f !important;
}
.cid-sAVXIsqe36 {
  padding-top: 180px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sAVXIsqe36 h3 {
  position: relative;
}
.cid-sAVXIsqe36 h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sAVXRmcXAF {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-seA43Iqe3n {
  padding-top: 180px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/12-2000x1340.jpg");
}
.cid-seA43Iqe3n h3 {
  position: relative;
}
.cid-seA43Iqe3n h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-seA43Iqe3n svg {
  position: absolute;
  bottom: -30px;
  left: 0;
  transform: scaleY(-1);
}
.cid-seA43Iqe3n g rect {
  fill: #ffffff;
}
.cid-seA43Iqe3n H1 {
  color: #cccccc;
}
.cid-seB651rXjO {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-seB651rXjO .mbr-text {
  color: #767676;
}
.cid-seB651rXjO .card-subtitle {
  margin: 0;
}
.cid-seB651rXjO img {
  object-fit: cover;
  height: 100%;
}
.cid-seB651rXjO h4 {
  margin: 0;
}
.cid-seB651rXjO .card-img {
  height: 300px;
}
.cid-seB651rXjO .row {
  justify-content: center;
}
.cid-seB651rXjO .card {
  margin-bottom: 2rem;
}
.cid-seB651rXjO .mbr-text,
.cid-seB651rXjO .link {
  color: #999999;
}
.cid-seB651rXjO h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-seB651rXjO h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sg60BsPhas {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sg60BsPhas .mbr-text {
  color: #767676;
}
.cid-sg60BsPhas .card-subtitle {
  margin: 0;
}
.cid-sg60BsPhas img {
  object-fit: cover;
  height: 100%;
}
.cid-sg60BsPhas h4 {
  margin: 0;
}
.cid-sg60BsPhas .card-img {
  height: 300px;
}
.cid-sg60BsPhas .row {
  justify-content: center;
}
.cid-sg60BsPhas .card {
  margin-bottom: 2rem;
}
.cid-sg60BsPhas .mbr-text,
.cid-sg60BsPhas .link {
  color: #999999;
}
.cid-sg60BsPhas h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-sg60BsPhas h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sAWD5kV54G {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sAWD5kV54G .mbr-text {
  color: #767676;
}
.cid-sAWD5kV54G .card-subtitle {
  margin: 0;
}
.cid-sAWD5kV54G img {
  object-fit: cover;
  height: 100%;
}
.cid-sAWD5kV54G h4 {
  margin: 0;
}
.cid-sAWD5kV54G .card-img {
  height: 300px;
}
.cid-sAWD5kV54G .row {
  justify-content: center;
}
.cid-sAWD5kV54G .card {
  margin-bottom: 2rem;
}
.cid-sAWD5kV54G .mbr-text,
.cid-sAWD5kV54G .link {
  color: #999999;
}
.cid-sAWD5kV54G h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-sAWD5kV54G h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sAVUK4GqMR {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/interior-1920x1080.jpg");
}
@media (min-width: 992px) {
  .cid-sAVUK4GqMR .display-1 {
    letter-spacing: -6px;
  }
}
.cid-sAVUK4GqMR p {
  margin: 0;
}
.cid-sAVUK4GqMR .container-fluid {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-sAVUK4GqMR .display-1 {
  line-height: 1;
}
.cid-rJ1POcvqOH {
  padding-top: 180px;
  padding-bottom: 90px;
  background-color: #d2cbbb;
}
.cid-rJ1POcvqOH .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.5;
}
.cid-rJ1POcvqOH .container {
  max-width: 1400px;
  padding: 0 3rem;
}
.cid-rJ1POcvqOH textarea {
  min-height: 150px;
}
.cid-rJ1POcvqOH .row2 {
  justify-content: space-between;
  border: 2px solid #000000;
  padding: 3rem;
}
.cid-rJ1POcvqOH h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-rJ1POcvqOH h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-rJ1POcvqOH form .btn {
  border-radius: 30px;
  margin: 0.18rem;
}
.cid-rJ1POcvqOH .form-control,
.cid-rJ1POcvqOH .field-input {
  padding: 1rem;
  background-color: transparent;
  border: 2px solid #000000;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-rJ1POcvqOH .form-control::-webkit-input-placeholder,
.cid-rJ1POcvqOH .field-input::-webkit-input-placeholder,
.cid-rJ1POcvqOH .form-control::-webkit-input-placeholder,
.cid-rJ1POcvqOH .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-rJ1POcvqOH .form-control:-moz-placeholder,
.cid-rJ1POcvqOH .field-input:-moz-placeholder,
.cid-rJ1POcvqOH .form-control:-moz-placeholder,
.cid-rJ1POcvqOH .field-input:-moz-placeholder {
  color: #000000;
}
.cid-rJ1POcvqOH .form-control:hover,
.cid-rJ1POcvqOH .field-input:hover,
.cid-rJ1POcvqOH .form-control:focus,
.cid-rJ1POcvqOH .field-input:focus {
  background-color: transparent;
  border-color: #000000;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-rJ1POcvqOH .form-control:hover::-webkit-input-placeholder,
.cid-rJ1POcvqOH .field-input:hover::-webkit-input-placeholder,
.cid-rJ1POcvqOH .form-control:focus::-webkit-input-placeholder,
.cid-rJ1POcvqOH .field-input:focus::-webkit-input-placeholder,
.cid-rJ1POcvqOH .form-control:hover::-webkit-input-placeholder,
.cid-rJ1POcvqOH .field-input:hover::-webkit-input-placeholder,
.cid-rJ1POcvqOH .form-control:focus::-webkit-input-placeholder,
.cid-rJ1POcvqOH .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-rJ1POcvqOH .form-control:hover:-moz-placeholder,
.cid-rJ1POcvqOH .field-input:hover:-moz-placeholder,
.cid-rJ1POcvqOH .form-control:focus:-moz-placeholder,
.cid-rJ1POcvqOH .field-input:focus:-moz-placeholder,
.cid-rJ1POcvqOH .form-control:hover:-moz-placeholder,
.cid-rJ1POcvqOH .field-input:hover:-moz-placeholder,
.cid-rJ1POcvqOH .form-control:focus:-moz-placeholder,
.cid-rJ1POcvqOH .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-rJ1POcvqOH .jq-number__spin:hover,
.cid-rJ1POcvqOH .jq-number__spin:focus {
  background-color: transparent;
  border-color: #000000;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-rJ1POcvqOH .jq-number__spin {
  background-color: transparent;
  border-color: #000000;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-rJ1POcvqOH input::-webkit-clear-button {
  display: none;
}
.cid-rJ1POcvqOH input::-webkit-inner-spin-button {
  display: none;
}
.cid-rJ1POcvqOH input::-webkit-outer-spin-button {
  display: none;
}
.cid-rJ1POcvqOH input::-webkit-calendar-picker-indicator {
  display: none;
}
@media (max-width: 767px) {
  .cid-rJ1POcvqOH .container {
    padding: 0 2rem;
  }
  .cid-rJ1POcvqOH .row2 {
    padding: 1rem 0;
  }
}
.cid-rJ1POcvqOH H2 {
  color: #000000;
}
.cid-rJ1POcvqOH .mbr-text,
.cid-rJ1POcvqOH .mbr-section-btn {
  color: #000000;
}
.cid-rJ1POcvqOH H1 {
  color: #876a4d;
}
.cid-sg6gTBk61I {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sg6gTBk61I .card-box {
  z-index: 10;
  position: relative;
}
.cid-sg6gTBk61I .card {
  padding: 0!important;
}
.cid-sg6gTBk61I p {
  width: fit-content;
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 0;
}
.cid-sg6gTBk61I p:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .3;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-sg6gTBk61I p:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-sg6gTBk61I .container-fluid {
  padding: 0;
}
.cid-sg6gTBk61I .card-wrapper {
  background-position: center;
  height: 100%;
  padding: 13rem 3rem;
  background-size: cover;
  transition: all 0.3s;
}
.cid-sg6gTBk61I .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.2;
}
.cid-sg6gTBk61I .card-wrapper:hover {
  transform: scale(1.05);
  z-index: 11;
}
.cid-sg6gTBk61I .card-wrapper:hover:before {
  opacity: 0.4;
}
.cid-sg6gTBk61I .card1 {
  background-image: url("../../../assets/images/takano-mokkou-koujoukengaku0000-700x468.jpg");
  z-index: 4;
}
.cid-sg6gTBk61I .card2 {
  background-image: url("../../../assets/images/19-2000x1333.jpg");
  z-index: 3;
}
.cid-sg6gTBk61I .card3 {
  background-image: url("../../../assets/images/11-1-2000x1333.jpg");
  z-index: 2;
}
.cid-sg6gTBk61I .card4 {
  background-image: url("../../../assets/images/o1cn01jbhchf1itcptp8kha-1646324413-790x527.jpeg");
  z-index: 1;
}
.cid-sg6gTBk61I h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-sg6gTBk61I .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
@media (max-width: 1400px) {
  .cid-sg6gTBk61I .card-wrapper {
    padding: 13rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sg6gTBk61I .card-wrapper {
    padding: 13rem 2rem;
  }
  .cid-sg6gTBk61I .card-box {
    text-align: center;
  }
}
.cid-sg6gTBk61I .mbr-text {
  color: #cccccc;
}
.cid-rJ1POHc9fX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #383431;
}
.cid-rJ1PQdNkRN .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJ1PQdNkRN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-rJ1PQdNkRN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-rJ1PQdNkRN .nav-link {
  position: relative;
}
.cid-rJ1PQdNkRN .nav-link:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .2;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-rJ1PQdNkRN .nav-link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-rJ1PQdNkRN .container {
  display: flex;
  margin: auto;
}
.cid-rJ1PQdNkRN .navbar.navbar-short .nav-link,
.cid-rJ1PQdNkRN .navbar.navbar-short .navbar-caption,
.cid-rJ1PQdNkRN .navbar.navbar-short .mbr-iconfont,
.cid-rJ1PQdNkRN .navbar.navbar-short .btn {
  color: #cccccc !important;
  border-color: #cccccc;
}
.cid-rJ1PQdNkRN .navbar.navbar-short .hamburger span {
  background: #cccccc !important;
}
.cid-rJ1PQdNkRN .navbar-caption {
  padding-right: 3rem;
}
.cid-rJ1PQdNkRN .dropdown-menu,
.cid-rJ1PQdNkRN .navbar.opened {
  background: #000000 !important;
}
.cid-rJ1PQdNkRN .nav-item:focus,
.cid-rJ1PQdNkRN .nav-link:focus {
  outline: none;
}
.cid-rJ1PQdNkRN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJ1PQdNkRN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rJ1PQdNkRN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rJ1PQdNkRN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJ1PQdNkRN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rJ1PQdNkRN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rJ1PQdNkRN .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #383431;
}
.cid-rJ1PQdNkRN .navbar.opened {
  transition: all .3s;
}
.cid-rJ1PQdNkRN .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rJ1PQdNkRN .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-rJ1PQdNkRN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rJ1PQdNkRN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rJ1PQdNkRN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-rJ1PQdNkRN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rJ1PQdNkRN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rJ1PQdNkRN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rJ1PQdNkRN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rJ1PQdNkRN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rJ1PQdNkRN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rJ1PQdNkRN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rJ1PQdNkRN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rJ1PQdNkRN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rJ1PQdNkRN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rJ1PQdNkRN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rJ1PQdNkRN .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rJ1PQdNkRN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rJ1PQdNkRN .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rJ1PQdNkRN .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-rJ1PQdNkRN .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rJ1PQdNkRN .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rJ1PQdNkRN .navbar.navbar-short {
  background: #383431 !important;
  min-height: 60px;
}
.cid-rJ1PQdNkRN .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rJ1PQdNkRN .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rJ1PQdNkRN .navbar-brand {
  -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-rJ1PQdNkRN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rJ1PQdNkRN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rJ1PQdNkRN .dropdown-item.active,
.cid-rJ1PQdNkRN .dropdown-item:active {
  background-color: transparent;
}
.cid-rJ1PQdNkRN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rJ1PQdNkRN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rJ1PQdNkRN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rJ1PQdNkRN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #383431;
}
.cid-rJ1PQdNkRN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rJ1PQdNkRN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rJ1PQdNkRN ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJ1PQdNkRN .navbar-buttons {
  text-align: center;
}
.cid-rJ1PQdNkRN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rJ1PQdNkRN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rJ1PQdNkRN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rJ1PQdNkRN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rJ1PQdNkRN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rJ1PQdNkRN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rJ1PQdNkRN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rJ1PQdNkRN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rJ1PQdNkRN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rJ1PQdNkRN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rJ1PQdNkRN .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rJ1PQdNkRN a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rJ1PQdNkRN .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rJ1PQdNkRN .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-rJ1PQdNkRN .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rJ1PQdNkRN .navbar {
    height: 77px;
  }
  .cid-rJ1PQdNkRN .navbar.opened {
    height: auto;
  }
  .cid-rJ1PQdNkRN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (min-width: 992px) {
  .cid-sAVEYUjWAU .display-1 {
    letter-spacing: -6px;
  }
}
.cid-sAVEYUjWAU p {
  margin: 0;
}
.cid-sAVEYUjWAU .container-fluid {
  margin-bottom: 0;
  margin-top: auto;
}
.cid-sAVEYUjWAU .display-1 {
  line-height: 1;
}
.cid-sAVEYUC58r {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #d2cbbb;
}
.cid-sAVEYUC58r h3 {
  position: relative;
}
.cid-sAVEYUC58r h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sAVEYUC58r H1 {
  color: #876a4d;
}
.cid-sAVEYUC58r H3 {
  color: #635a51;
}
.cid-sAVEYUM9rd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sAVEYUM9rd .card-box {
  z-index: 10;
  position: relative;
}
.cid-sAVEYUM9rd .card {
  padding: 0 !important;
}
.cid-sAVEYUM9rd p {
  width: fit-content;
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 0;
}
.cid-sAVEYUM9rd p:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .3;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-sAVEYUM9rd p:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-sAVEYUM9rd .container-fluid {
  padding: 0;
}
.cid-sAVEYUM9rd .card-wrapper {
  background-position: center;
  height: 100%;
  padding: 13rem 3rem;
  background-size: cover;
  transition: all 0.3s;
}
.cid-sAVEYUM9rd .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.2;
}
.cid-sAVEYUM9rd .card-wrapper:hover {
  transform: scale(1.05);
  z-index: 11;
}
.cid-sAVEYUM9rd .card-wrapper:hover:before {
  opacity: 0.4;
}
.cid-sAVEYUM9rd .card1 {
  background-image: url("../../../assets/images/ds-art-1920x1280.jpg");
  z-index: 4;
}
.cid-sAVEYUM9rd .card2 {
  background-image: url("../../../assets/images/ds-furniture-1920x1280.jpg");
  z-index: 3;
}
.cid-sAVEYUM9rd .card3 {
  background-image: url("../../../assets/images/ds-interior-1920x1280.jpg");
  z-index: 2;
}
.cid-sAVEYUM9rd .card4 {
  background-image: url("../../../assets/images/background3.jpg");
  z-index: 1;
}
.cid-sAVEYUM9rd h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-sAVEYUM9rd .btn {
  margin: 0 !important;
  padding: 1rem 2rem;
}
@media (max-width: 1400px) {
  .cid-sAVEYUM9rd .card-wrapper {
    padding: 13rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sAVEYUM9rd .card-wrapper {
    padding: 13rem 2rem;
  }
  .cid-sAVEYUM9rd .card-box {
    text-align: center;
  }
}
.cid-sAVEYUM9rd .mbr-text {
  color: #cccccc;
}
.cid-sAVEYV1pA2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sAVEYV1pA2 .mbr-text {
    text-align: center;
  }
}
.cid-sAVEYV1pA2 .container-fluid {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-sAVEYV1pA2 .media-content {
    max-width: 700px;
    padding: 5rem 2rem;
    margin: auto;
    margin-right: 0;
  }
}
.cid-sAVEYV1pA2 .media-content {
  padding: 5rem 2rem;
}
.cid-sAVEYV1pA2 img {
  height: 100%;
  object-fit: cover;
}
.cid-sAVEYV1pA2 .mbr-figure {
  height: 100%;
}
.cid-sAVEYV1pA2 .col-lg-5,
.cid-sAVEYV1pA2 .col-lg-7 {
  padding: 0;
}
.cid-sAVEYV1pA2 .row {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sAVEYV1pA2 .media-content {
    padding: 3rem 1rem;
  }
}
.cid-sAVEYVfF6s {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #eae6dd;
}
.cid-sAVEYVfF6s .nav-tabs .nav-item.open .nav-link:focus,
.cid-sAVEYVfF6s .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-sAVEYVfF6s .icon-wrap .mbr-iconfont {
  font-size: 1rem;
  padding-right: 0.5rem;
  display: block;
  cursor: pointer;
  transition: all 0.6s;
  color: currentColor;
}
.cid-sAVEYVfF6s .icon-big {
  font-size: 2rem;
  padding-top: 2rem;
  display: inline-block;
  transition: all 0.3s;
}
.cid-sAVEYVfF6s .icon-big:hover {
  color: #ff2d55 !important;
}
.cid-sAVEYVfF6s .content-col {
  margin: auto 0;
}
.cid-sAVEYVfF6s img {
  width: 90%;
  margin: auto;
}
.cid-sAVEYVfF6s h6 {
  margin: 0;
}
.cid-sAVEYVfF6s h4 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-sAVEYVfF6s h4:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sAVEYVfF6s .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border: none;
  justify-content: space-around;
}
.cid-sAVEYVfF6s .icon-wrap,
.cid-sAVEYVfF6s .date-wrap {
  display: flex;
  align-items: center;
}
.cid-sAVEYVfF6s .tabs-col {
  overflow: hidden;
}
.cid-sAVEYVfF6s .tab-content {
  border-top: 1px solid lightgray;
  padding: 0rem;
  padding-top: 5rem;
}
.cid-sAVEYVfF6s .nav-tabs .nav-link {
  color: #6e4500;
  font-style: normal;
  padding: 1rem 1.5rem;
  background: transparent;
  font-weight: 400;
  border: none;
  border-radius: 0;
  position: relative;
}
.cid-sAVEYVfF6s .nav-tabs .nav-link:before {
  position: absolute;
  content: '';
  bottom: -5px;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 100%;
  border: 1px solid #6e4500;
  background: white;
  transition: all 0.3s;
  z-index: 9;
}
.cid-sAVEYVfF6s .nav-tabs .nav-link:after {
  position: absolute;
  content: '';
  bottom: 0px;
  right: 50%;
  width: 9999px;
  height: 1px;
  transition: all 0.3s;
  background: transparent;
}
.cid-sAVEYVfF6s .nav-tabs .nav-link:hover {
  cursor: pointer;
}
.cid-sAVEYVfF6s .nav-tabs .nav-link.active {
  font-weight: 400;
  font-style: normal;
}
.cid-sAVEYVfF6s .nav-tabs .nav-link.active:before {
  background: #6e4500;
}
.cid-sAVEYVfF6s .nav-tabs .nav-link.active:after {
  background: #6e4500;
}
@media (max-width: 992px) {
  .cid-sAVEYVfF6s img {
    margin-bottom: 2rem;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sAVEYVfF6s .nav-tabs {
    flex-direction: row;
  }
  .cid-sAVEYVfF6s .mbr-text,
  .cid-sAVEYVfF6s .nav-link {
    text-align: center;
  }
  .cid-sAVEYVfF6s .nav-tabs .nav-link {
    margin-bottom: 1rem;
    border: 0;
  }
  .cid-sAVEYVfF6s .nav-tabs .nav-link:after {
    content: none;
  }
  .cid-sAVEYVfF6s .nav-item {
    min-width: 100px;
  }
  .cid-sAVEYVfF6s .tab-content {
    border-top: 0px;
    padding-top: 2rem;
  }
}
.cid-sAVEYVfF6s H1 {
  color: #876a4d;
}
.cid-sAVEYVfF6s .mbr-section-subtitle,
.cid-sAVEYVfF6s .title-align {
  color: #2e2e2e;
}
.cid-sAVEYVfF6s H2 {
  color: #4f4943;
}
.cid-sAVEYVfF6s H3 {
  color: #876a4d;
}
.cid-sAVEYVfF6s .location,
.cid-sAVEYVfF6s .icon-wrap {
  color: #383431;
}
.cid-sAVEYVFN9Y {
  padding-top: 180px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/yfu-1920x853.jpeg");
}
.cid-sAVEYVFN9Y h3 {
  position: relative;
}
.cid-sAVEYVFN9Y h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sAVEYVFN9Y svg {
  position: absolute;
  bottom: -30px;
  left: 0;
  transform: scaleY(-1);
}
.cid-sAVEYVFN9Y g rect {
  fill: #ffffff;
}
.cid-sAVEYVFN9Y H1 {
  color: #876a4d;
}
.cid-sAVEYVSmBv {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sAVEYVSmBv .mbr-text {
  color: #767676;
}
.cid-sAVEYVSmBv .card-subtitle {
  margin: 0;
}
.cid-sAVEYVSmBv img {
  object-fit: cover;
  height: 100%;
}
.cid-sAVEYVSmBv h4 {
  margin: 0;
}
.cid-sAVEYVSmBv .card-img {
  height: 300px;
}
.cid-sAVEYVSmBv .row {
  justify-content: center;
}
.cid-sAVEYVSmBv .card {
  margin-bottom: 2rem;
}
.cid-sAVEYVSmBv .mbr-text,
.cid-sAVEYVSmBv .link {
  color: #999999;
}
.cid-sAVEYVSmBv h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-sAVEYVSmBv h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sAVEYW8RdF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sAVEYW8RdF .mbr-text {
  color: #767676;
}
.cid-sAVEYW8RdF .card-subtitle {
  margin: 0;
}
.cid-sAVEYW8RdF img {
  object-fit: cover;
  height: 100%;
}
.cid-sAVEYW8RdF h4 {
  margin: 0;
}
.cid-sAVEYW8RdF .card-img {
  height: 300px;
}
.cid-sAVEYW8RdF .row {
  justify-content: center;
}
.cid-sAVEYW8RdF .card {
  margin-bottom: 2rem;
}
.cid-sAVEYW8RdF .mbr-text,
.cid-sAVEYW8RdF .link {
  color: #999999;
}
.cid-sAVEYW8RdF h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-sAVEYW8RdF h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sAVEYWnmO6 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sAVEYWnmO6 .mbr-text {
  color: #767676;
}
.cid-sAVEYWnmO6 .card-subtitle {
  margin: 0;
}
.cid-sAVEYWnmO6 img {
  object-fit: cover;
  height: 100%;
}
.cid-sAVEYWnmO6 h4 {
  margin: 0;
}
.cid-sAVEYWnmO6 .card-img {
  height: 300px;
}
.cid-sAVEYWnmO6 .row {
  justify-content: center;
}
.cid-sAVEYWnmO6 .card {
  margin-bottom: 2rem;
}
.cid-sAVEYWnmO6 .mbr-text,
.cid-sAVEYWnmO6 .link {
  color: #999999;
}
.cid-sAVEYWnmO6 h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-sAVEYWnmO6 h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sAVEYWCbW9 {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #d2cbbb;
}
.cid-sAVEYWCbW9 h3 {
  position: relative;
}
.cid-sAVEYWCbW9 h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sAVEYWCbW9 H1 {
  color: #876a4d;
}
.cid-sAVEYWO2xl {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #eae6dd;
}
@media (max-width: 767px) {
  .cid-sAVEYWO2xl .mbr-text {
    text-align: center;
  }
}
.cid-sAVEYWO2xl img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}
.cid-sAVEYWO2xl p {
  padding: 1rem;
}
.cid-sAVEYWO2xl .col2 {
  padding-top: 4rem;
}
@media (max-width: 992px) {
  .cid-sAVEYWO2xl .col2 {
    padding-top: 1rem;
  }
  .cid-sAVEYWO2xl p {
    padding: 1rem 0rem;
  }
  .cid-sAVEYWO2xl img {
    height: 500px;
  }
}
.cid-sAVEYWO2xl .mbr-text,
.cid-sAVEYWO2xl .mbr-section-btn {
  color: #232323;
}
.cid-sAVEYX0HGu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sAVEYX0HGu .card-box {
  z-index: 10;
  position: relative;
}
.cid-sAVEYX0HGu .card {
  padding: 0!important;
}
.cid-sAVEYX0HGu p {
  width: fit-content;
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 0;
}
.cid-sAVEYX0HGu p:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .3;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-sAVEYX0HGu p:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-sAVEYX0HGu .container-fluid {
  padding: 0;
}
.cid-sAVEYX0HGu .card-wrapper {
  background-position: center;
  height: 100%;
  padding: 13rem 3rem;
  background-size: cover;
  transition: all 0.3s;
}
.cid-sAVEYX0HGu .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.2;
}
.cid-sAVEYX0HGu .card-wrapper:hover {
  transform: scale(1.05);
  z-index: 11;
}
.cid-sAVEYX0HGu .card-wrapper:hover:before {
  opacity: 0.4;
}
.cid-sAVEYX0HGu .card1 {
  background-image: url("../../../assets/images/tb2hguezv5tbunjsspmxxadrvxa-50036-750x500.jpeg");
  z-index: 4;
}
.cid-sAVEYX0HGu .card2 {
  background-image: url("../../../assets/images/o1cn01cuii2y1itcqvbxaan-1646324413-790x546.jpeg");
  z-index: 3;
}
.cid-sAVEYX0HGu .card3 {
  background-image: url("../../../assets/images/o1cn015xinm41c84njuyae7-50035-790x790.jpeg");
  z-index: 2;
}
.cid-sAVEYX0HGu .card4 {
  background-image: url("../../../assets/images/o1cn01npfveq1itcs9vvtos-1646324413-790x527.jpeg");
  z-index: 1;
}
.cid-sAVEYX0HGu h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-sAVEYX0HGu .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
@media (max-width: 1400px) {
  .cid-sAVEYX0HGu .card-wrapper {
    padding: 13rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sAVEYX0HGu .card-wrapper {
    padding: 13rem 2rem;
  }
  .cid-sAVEYX0HGu .card-box {
    text-align: center;
  }
}
.cid-sAVEYX0HGu .mbr-text {
  color: #cccccc;
}
.cid-sAVEYXfoL5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sAVEYXfoL5 .card-box {
  z-index: 10;
  position: relative;
}
.cid-sAVEYXfoL5 .card {
  padding: 0!important;
}
.cid-sAVEYXfoL5 p {
  width: fit-content;
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 0;
}
.cid-sAVEYXfoL5 p:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .3;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-sAVEYXfoL5 p:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-sAVEYXfoL5 .container-fluid {
  padding: 0;
}
.cid-sAVEYXfoL5 .card-wrapper {
  background-position: center;
  height: 100%;
  padding: 13rem 3rem;
  background-size: cover;
  transition: all 0.3s;
}
.cid-sAVEYXfoL5 .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.2;
}
.cid-sAVEYXfoL5 .card-wrapper:hover {
  transform: scale(1.05);
  z-index: 11;
}
.cid-sAVEYXfoL5 .card-wrapper:hover:before {
  opacity: 0.4;
}
.cid-sAVEYXfoL5 .card1 {
  background-image: url("../../../assets/images/tb20nbra3jn8kjjszfkxxaboxxa-50035-750x491.jpeg");
  z-index: 4;
}
.cid-sAVEYXfoL5 .card2 {
  background-image: url("../../../assets/images/o1cn01xxoesb1itcsfnptgo-1646324413-790x1185.jpeg");
  z-index: 3;
}
.cid-sAVEYXfoL5 .card3 {
  background-image: url("../../../assets/images/o1cn01yesqav1itcr9usb1w-1646324413-790x1185.jpeg");
  z-index: 2;
}
.cid-sAVEYXfoL5 .card4 {
  background-image: url("../../../assets/images/o1cn01gcwjrp1itcmzlwhrs-1646324413-790x790.jpeg");
  z-index: 1;
}
.cid-sAVEYXfoL5 h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-sAVEYXfoL5 .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
@media (max-width: 1400px) {
  .cid-sAVEYXfoL5 .card-wrapper {
    padding: 13rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sAVEYXfoL5 .card-wrapper {
    padding: 13rem 2rem;
  }
  .cid-sAVEYXfoL5 .card-box {
    text-align: center;
  }
}
.cid-sAVEYXfoL5 .mbr-text {
  color: #cccccc;
}
.cid-sAVEYXux7Q {
  padding-top: 180px;
  padding-bottom: 90px;
  background-color: #d2cbbb;
}
.cid-sAVEYXux7Q .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.5;
}
.cid-sAVEYXux7Q .container {
  max-width: 1400px;
  padding: 0 3rem;
}
.cid-sAVEYXux7Q textarea {
  min-height: 150px;
}
.cid-sAVEYXux7Q .row2 {
  justify-content: space-between;
  border: 2px solid #000000;
  padding: 3rem;
}
.cid-sAVEYXux7Q h3 {
  width: fit-content;
  display: inline-block;
  position: relative;
}
.cid-sAVEYXux7Q h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-sAVEYXux7Q form .btn {
  border-radius: 30px;
  margin: 0.18rem;
}
.cid-sAVEYXux7Q .form-control,
.cid-sAVEYXux7Q .field-input {
  padding: 1rem;
  background-color: transparent;
  border: 2px solid #000000;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sAVEYXux7Q .form-control::-webkit-input-placeholder,
.cid-sAVEYXux7Q .field-input::-webkit-input-placeholder,
.cid-sAVEYXux7Q .form-control::-webkit-input-placeholder,
.cid-sAVEYXux7Q .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-sAVEYXux7Q .form-control:-moz-placeholder,
.cid-sAVEYXux7Q .field-input:-moz-placeholder,
.cid-sAVEYXux7Q .form-control:-moz-placeholder,
.cid-sAVEYXux7Q .field-input:-moz-placeholder {
  color: #000000;
}
.cid-sAVEYXux7Q .form-control:hover,
.cid-sAVEYXux7Q .field-input:hover,
.cid-sAVEYXux7Q .form-control:focus,
.cid-sAVEYXux7Q .field-input:focus {
  background-color: transparent;
  border-color: #000000;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-sAVEYXux7Q .form-control:hover::-webkit-input-placeholder,
.cid-sAVEYXux7Q .field-input:hover::-webkit-input-placeholder,
.cid-sAVEYXux7Q .form-control:focus::-webkit-input-placeholder,
.cid-sAVEYXux7Q .field-input:focus::-webkit-input-placeholder,
.cid-sAVEYXux7Q .form-control:hover::-webkit-input-placeholder,
.cid-sAVEYXux7Q .field-input:hover::-webkit-input-placeholder,
.cid-sAVEYXux7Q .form-control:focus::-webkit-input-placeholder,
.cid-sAVEYXux7Q .field-input:focus::-webkit-input-placeholder {
  color: #000000;
}
.cid-sAVEYXux7Q .form-control:hover:-moz-placeholder,
.cid-sAVEYXux7Q .field-input:hover:-moz-placeholder,
.cid-sAVEYXux7Q .form-control:focus:-moz-placeholder,
.cid-sAVEYXux7Q .field-input:focus:-moz-placeholder,
.cid-sAVEYXux7Q .form-control:hover:-moz-placeholder,
.cid-sAVEYXux7Q .field-input:hover:-moz-placeholder,
.cid-sAVEYXux7Q .form-control:focus:-moz-placeholder,
.cid-sAVEYXux7Q .field-input:focus:-moz-placeholder {
  color: #000000;
}
.cid-sAVEYXux7Q .jq-number__spin:hover,
.cid-sAVEYXux7Q .jq-number__spin:focus {
  background-color: transparent;
  border-color: #000000;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sAVEYXux7Q .jq-number__spin {
  background-color: transparent;
  border-color: #000000;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sAVEYXux7Q input::-webkit-clear-button {
  display: none;
}
.cid-sAVEYXux7Q input::-webkit-inner-spin-button {
  display: none;
}
.cid-sAVEYXux7Q input::-webkit-outer-spin-button {
  display: none;
}
.cid-sAVEYXux7Q input::-webkit-calendar-picker-indicator {
  display: none;
}
@media (max-width: 767px) {
  .cid-sAVEYXux7Q .container {
    padding: 0 2rem;
  }
  .cid-sAVEYXux7Q .row2 {
    padding: 1rem 0;
  }
}
.cid-sAVEYXux7Q H2 {
  color: #000000;
}
.cid-sAVEYXux7Q .mbr-text,
.cid-sAVEYXux7Q .mbr-section-btn {
  color: #000000;
}
.cid-sAVEYXux7Q H1 {
  color: #876a4d;
}
.cid-sAVEYXJfuB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sAVEYXJfuB .card-box {
  z-index: 10;
  position: relative;
}
.cid-sAVEYXJfuB .card {
  padding: 0!important;
}
.cid-sAVEYXJfuB p {
  width: fit-content;
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 0;
}
.cid-sAVEYXJfuB p:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .3;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-sAVEYXJfuB p:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-sAVEYXJfuB .container-fluid {
  padding: 0;
}
.cid-sAVEYXJfuB .card-wrapper {
  background-position: center;
  height: 100%;
  padding: 13rem 3rem;
  background-size: cover;
  transition: all 0.3s;
}
.cid-sAVEYXJfuB .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.2;
}
.cid-sAVEYXJfuB .card-wrapper:hover {
  transform: scale(1.05);
  z-index: 11;
}
.cid-sAVEYXJfuB .card-wrapper:hover:before {
  opacity: 0.4;
}
.cid-sAVEYXJfuB .card1 {
  background-image: url("../../../assets/images/97f34811-13f7-483c-976f-eb16d57adc2a-2000x1333.jpg");
  z-index: 4;
}
.cid-sAVEYXJfuB .card2 {
  background-image: url("../../../assets/images/6872c2f7-6761-4b88-af3b-243fb419e5ad-2000x1333.jpg");
  z-index: 3;
}
.cid-sAVEYXJfuB .card3 {
  background-image: url("../../../assets/images/5882cd45-715d-4cdc-a15d-e55deb914428-2000x1333.jpg");
  z-index: 2;
}
.cid-sAVEYXJfuB .card4 {
  background-image: url("../../../assets/images/o1cn01jbhchf1itcptp8kha-1646324413-790x527.jpeg");
  z-index: 1;
}
.cid-sAVEYXJfuB h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-sAVEYXJfuB .btn {
  margin: 0!important;
  padding: 1rem 2rem;
}
@media (max-width: 1400px) {
  .cid-sAVEYXJfuB .card-wrapper {
    padding: 13rem 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sAVEYXJfuB .card-wrapper {
    padding: 13rem 2rem;
  }
  .cid-sAVEYXJfuB .card-box {
    text-align: center;
  }
}
.cid-sAVEYXJfuB .mbr-text {
  color: #cccccc;
}
.cid-sAVEYXYbBC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #383431;
}
.cid-sAVEYY9vjB .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sAVEYY9vjB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sAVEYY9vjB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sAVEYY9vjB .nav-link {
  position: relative;
}
.cid-sAVEYY9vjB .nav-link:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: .2;
  height: 50%;
  width: 100%;
  background-color: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s ease-out;
}
.cid-sAVEYY9vjB .nav-link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.cid-sAVEYY9vjB .container {
  display: flex;
  margin: auto;
}
.cid-sAVEYY9vjB .navbar.navbar-short .nav-link,
.cid-sAVEYY9vjB .navbar.navbar-short .navbar-caption,
.cid-sAVEYY9vjB .navbar.navbar-short .mbr-iconfont,
.cid-sAVEYY9vjB .navbar.navbar-short .btn {
  color: #cccccc !important;
  border-color: #cccccc;
}
.cid-sAVEYY9vjB .navbar.navbar-short .hamburger span {
  background: #cccccc !important;
}
.cid-sAVEYY9vjB .navbar-caption {
  padding-right: 3rem;
}
.cid-sAVEYY9vjB .dropdown-menu,
.cid-sAVEYY9vjB .navbar.opened {
  background: #000000 !important;
}
.cid-sAVEYY9vjB .nav-item:focus,
.cid-sAVEYY9vjB .nav-link:focus {
  outline: none;
}
.cid-sAVEYY9vjB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sAVEYY9vjB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sAVEYY9vjB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sAVEYY9vjB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sAVEYY9vjB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sAVEYY9vjB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sAVEYY9vjB .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #383431;
}
.cid-sAVEYY9vjB .navbar.opened {
  transition: all .3s;
}
.cid-sAVEYY9vjB .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sAVEYY9vjB .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sAVEYY9vjB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sAVEYY9vjB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sAVEYY9vjB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sAVEYY9vjB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAVEYY9vjB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAVEYY9vjB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sAVEYY9vjB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sAVEYY9vjB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sAVEYY9vjB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sAVEYY9vjB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sAVEYY9vjB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAVEYY9vjB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAVEYY9vjB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAVEYY9vjB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sAVEYY9vjB .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAVEYY9vjB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sAVEYY9vjB .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sAVEYY9vjB .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sAVEYY9vjB .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sAVEYY9vjB .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sAVEYY9vjB .navbar.navbar-short {
  background: #383431 !important;
  min-height: 60px;
}
.cid-sAVEYY9vjB .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAVEYY9vjB .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sAVEYY9vjB .navbar-brand {
  -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-sAVEYY9vjB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAVEYY9vjB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAVEYY9vjB .dropdown-item.active,
.cid-sAVEYY9vjB .dropdown-item:active {
  background-color: transparent;
}
.cid-sAVEYY9vjB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAVEYY9vjB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sAVEYY9vjB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sAVEYY9vjB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #383431;
}
.cid-sAVEYY9vjB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAVEYY9vjB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAVEYY9vjB ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sAVEYY9vjB .navbar-buttons {
  text-align: center;
}
.cid-sAVEYY9vjB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sAVEYY9vjB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAVEYY9vjB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAVEYY9vjB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAVEYY9vjB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAVEYY9vjB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAVEYY9vjB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAVEYY9vjB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sAVEYY9vjB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sAVEYY9vjB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAVEYY9vjB .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sAVEYY9vjB a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sAVEYY9vjB .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAVEYY9vjB .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sAVEYY9vjB .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sAVEYY9vjB .navbar {
    height: 77px;
  }
  .cid-sAVEYY9vjB .navbar.opened {
    height: auto;
  }
  .cid-sAVEYY9vjB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
