body {
  font-family: Nunito;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 8rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.2rem;
  line-height: 1.2;
}
.display-2 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-4 {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-7 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
/* ---- 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: 4rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 1.6rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #a88b6b !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #0b1b3f !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary {
  box-shadow: 0 0 0 100px #a88b6b inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #a88b6b !important;
  border-color: #a88b6b !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #7d6549 !important;
  border-color: #7d6549 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #7d6549 !important;
  border-color: #7d6549 !important;
}
.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 0 0 2px #a88b6b inset !important;
  background: transparent !important;
  border: none !important;
  color: #a88b6b !important;
}
.btn-primary span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-primary {
    width: -webkit-fill-available;
  }
}
.btn-secondary {
  box-shadow: 0 0 0 100px #181818 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 0 0 2px #181818 inset !important;
  background: transparent !important;
  border: none !important;
  color: #181818 !important;
}
.btn-secondary span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-secondary {
    width: -webkit-fill-available;
  }
}
.btn-info {
  box-shadow: 0 0 0 100px #0b1b3f inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-info,
.btn-info:active {
  background-color: #0b1b3f !important;
  border-color: #0b1b3f !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info:hover,
.btn-info:focus {
  box-shadow: 0 0 0 2px #0b1b3f inset !important;
  background: transparent !important;
  border: none !important;
  color: #0b1b3f !important;
}
.btn-info span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-info {
    width: -webkit-fill-available;
  }
}
.btn-success {
  box-shadow: 0 0 0 100px #f7ed4a inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !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-success:hover,
.btn-success:focus {
  box-shadow: 0 0 0 2px #f7ed4a inset !important;
  background: transparent !important;
  border: none !important;
  color: #f7ed4a !important;
}
.btn-success span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-success {
    width: -webkit-fill-available;
  }
}
.btn-warning {
  box-shadow: 0 0 0 100px #879a9f inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning:hover,
.btn-warning:focus {
  box-shadow: 0 0 0 2px #879a9f inset !important;
  background: transparent !important;
  border: none !important;
  color: #879a9f !important;
}
.btn-warning span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-warning {
    width: -webkit-fill-available;
  }
}
.btn-danger {
  box-shadow: 0 0 0 100px #b1a374 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !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-danger:hover,
.btn-danger:focus {
  box-shadow: 0 0 0 2px #b1a374 inset !important;
  background: transparent !important;
  border: none !important;
  color: #b1a374 !important;
}
.btn-danger span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-danger {
    width: -webkit-fill-available;
  }
}
.btn-white {
  box-shadow: 0 0 0 100px #ffffff inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
  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-white:hover,
.btn-white:focus {
  box-shadow: 0 0 0 2px #ffffff inset !important;
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
}
.btn-white span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-white {
    width: -webkit-fill-available;
  }
}
.btn-black {
  box-shadow: 0 0 0 100px #333333 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !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-black:hover,
.btn-black:focus {
  box-shadow: 0 0 0 2px #333333 inset !important;
  background: transparent !important;
  border: none !important;
  color: #333333 !important;
}
.btn-black span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-black {
    width: -webkit-fill-available;
  }
}
.btn-primary-outline {
  box-shadow: 0 0 0 2px #a88b6b inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #6d5840;
  color: #6d5840;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #a88b6b;
  border-color: #a88b6b;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #a88b6b !important;
  border-color: #a88b6b !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus {
  box-shadow: 0 0 0 100px #a88b6b inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-primary-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-primary-outline span:after {
  content: '';
  position: absolute;
  background: #a88b6b;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-primary-outline {
    width: -webkit-fill-available;
  }
}
.btn-secondary-outline {
  box-shadow: 0 0 0 2px #181818 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #181818;
  border-color: #181818;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #181818 !important;
  border-color: #181818 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  box-shadow: 0 0 0 100px #181818 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-secondary-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-secondary-outline span:after {
  content: '';
  position: absolute;
  background: #181818;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-secondary-outline {
    width: -webkit-fill-available;
  }
}
.btn-info-outline {
  box-shadow: 0 0 0 2px #0b1b3f inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #0b1b3f;
  border-color: #0b1b3f;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #0b1b3f !important;
  border-color: #0b1b3f !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus {
  box-shadow: 0 0 0 100px #0b1b3f inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-info-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-info-outline span:after {
  content: '';
  position: absolute;
  background: #0b1b3f;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-info-outline {
    width: -webkit-fill-available;
  }
}
.btn-success-outline {
  box-shadow: 0 0 0 2px #f7ed4a inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !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-success-outline:hover,
.btn-success-outline:focus {
  box-shadow: 0 0 0 100px #f7ed4a inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-success-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-success-outline span:after {
  content: '';
  position: absolute;
  background: #f7ed4a;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-success-outline {
    width: -webkit-fill-available;
  }
}
.btn-warning-outline {
  box-shadow: 0 0 0 2px #879a9f inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus {
  box-shadow: 0 0 0 100px #879a9f inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-warning-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-warning-outline span:after {
  content: '';
  position: absolute;
  background: #879a9f;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-warning-outline {
    width: -webkit-fill-available;
  }
}
.btn-danger-outline {
  box-shadow: 0 0 0 2px #b1a374 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !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-danger-outline:hover,
.btn-danger-outline:focus {
  box-shadow: 0 0 0 100px #b1a374 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-danger-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-danger-outline span:after {
  content: '';
  position: absolute;
  background: #b1a374;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-danger-outline {
    width: -webkit-fill-available;
  }
}
.btn-black-outline {
  box-shadow: 0 0 0 2px #333333 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !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-black-outline:hover,
.btn-black-outline:focus {
  box-shadow: 0 0 0 100px #333333 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-black-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-black-outline span:after {
  content: '';
  position: absolute;
  background: #333333;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-black-outline {
    width: -webkit-fill-available;
  }
}
.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: #a88b6b !important;
}
.text-secondary {
  color: #181818 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #0b1b3f !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #181818 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #a88b6b !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #181818 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #000000 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !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: #0b1b3f;
}
.alert-warning {
  background-color: #879a9f;
}
.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;
}
.mbr-gallery-filter li.active .btn {
  background-color: #a88b6b;
  border-color: #a88b6b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #a88b6b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d7cabb;
}
.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: #4f7ce0;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.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: 'Nunito', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #a88b6b;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #a88b6b;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  -webkit-transition: 0.4s;
  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: #a88b6b;
  border-bottom-color: #a88b6b;
}
.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: #a88b6b !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: #181818 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section) {
  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%;
  -webkit-transform: translateX(-50%) translateY(-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='%23a88b6b' %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-uPJup7x2YJ .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;
  transition: all 0.25s ease-in-out;
}
.cid-uPJup7x2YJ .nav-item:focus,
.cid-uPJup7x2YJ .nav-link:focus {
  outline: none;
}
.cid-uPJup7x2YJ .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-uPJup7x2YJ .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700 !important;
  padding: 0 !important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem !important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPJup7x2YJ .dropdown .dropdown-menu .dropdown-item:hover,
.cid-uPJup7x2YJ .dropdown .dropdown-menu .dropdown-item:active,
.cid-uPJup7x2YJ .dropdown .dropdown-menu .dropdown-item:focus {
  color: #a88b6b !important;
}
.cid-uPJup7x2YJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPJup7x2YJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPJup7x2YJ .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;
  transition: all 0.25s ease-in-out;
}
.cid-uPJup7x2YJ .navbar-caption:hover {
  color: inherit !important;
}
.cid-uPJup7x2YJ .container {
  max-width: 1380px;
}
.cid-uPJup7x2YJ .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-uPJup7x2YJ .nav-link {
  font-weight: 700 !important;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uPJup7x2YJ .nav-link:hover,
.cid-uPJup7x2YJ .nav-link:active,
.cid-uPJup7x2YJ .nav-link:focus {
  border-bottom: 3px solid #a88b6b;
  color: #a88b6b !important;
}
.cid-uPJup7x2YJ .navbar {
  min-height: 77px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-uPJup7x2YJ .navbar.opened {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-uPJup7x2YJ .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-uPJup7x2YJ .navbar .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPJup7x2YJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPJup7x2YJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPJup7x2YJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uPJup7x2YJ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uPJup7x2YJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPJup7x2YJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPJup7x2YJ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uPJup7x2YJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPJup7x2YJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPJup7x2YJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPJup7x2YJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPJup7x2YJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPJup7x2YJ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uPJup7x2YJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPJup7x2YJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPJup7x2YJ .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uPJup7x2YJ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPJup7x2YJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPJup7x2YJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPJup7x2YJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uPJup7x2YJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPJup7x2YJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPJup7x2YJ .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uPJup7x2YJ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uPJup7x2YJ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uPJup7x2YJ .icons-menu span {
  color: #a88b6b !important;
}
.cid-uPJup7x2YJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPJup7x2YJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  -webkit-transition: none;
  transition: none;
  margin: 0 !important;
}
.cid-uPJup7x2YJ .navbar-brand {
  flex-shrink: 0;
  -webkit-box-align: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uPJup7x2YJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPJup7x2YJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPJup7x2YJ .dropdown-item.active,
.cid-uPJup7x2YJ .dropdown-item:active {
  background-color: transparent;
}
.cid-uPJup7x2YJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPJup7x2YJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPJup7x2YJ .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPJup7x2YJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPJup7x2YJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPJup7x2YJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPJup7x2YJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPJup7x2YJ .navbar-buttons {
  text-align: center;
}
.cid-uPJup7x2YJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPJup7x2YJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a88b6b;
}
.cid-uPJup7x2YJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uPJup7x2YJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uPJup7x2YJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uPJup7x2YJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uPJup7x2YJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uPJup7x2YJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uPJup7x2YJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uPJup7x2YJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uPJup7x2YJ .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uPJup7x2YJ a.nav-link {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uPJup7x2YJ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPJup7x2YJ .icons-menu {
  flex-wrap: wrap;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-uPJup7x2YJ .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPJup7x2YJ .navbar {
    height: 77px;
  }
  .cid-uPJup7x2YJ .navbar.opened {
    height: auto;
  }
  .cid-uPJup7x2YJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPJgdX3JmS {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPJgdX3JmS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJgdX3JmS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2uh0Qy5cP {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-u2uh0Qy5cP .image-block {
  width: 100% !important;
}
.cid-u2uh0Qy5cP .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u2uh0Qy5cP {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-u2uh0Qy5cP .container {
    padding: 0 1rem;
  }
  .cid-u2uh0Qy5cP .image-block {
    width: 100% !important;
  }
}
.cid-u2uh0Qy5cP .container-fluid {
  padding: 0;
}
.cid-uQnsO3Zaxf {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uQnsO3Zaxf .mbr-text {
  color: #767676;
}
.cid-uQnsO3Zaxf .mbr-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uQnsO3Zaxf .md-pb {
    margin-bottom: 2rem;
  }
}
.cid-uQnsO3Zaxf .mbr-title {
  color: #a88b6b;
}
.cid-u2ui7ALDj6 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/construction-1-2000x1125.jpg");
}
.cid-u2ui7ALDj6 p {
  color: #767676;
}
.cid-u2ui7ALDj6 .row-element,
.cid-u2ui7ALDj6 .image-element {
  padding: 0;
}
.cid-u2ui7ALDj6 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u2ui7ALDj6 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-u2ui7ALDj6 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-u2ui7ALDj6 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a88b6b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-u2ui7ALDj6 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-u2ui7ALDj6 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-u2ui7ALDj6 .text-content {
    padding: 2rem 1rem;
  }
  .cid-u2ui7ALDj6 .underline .line {
    height: 2px;
  }
  .cid-u2ui7ALDj6 .mbr-title,
  .cid-u2ui7ALDj6 .underline,
  .cid-u2ui7ALDj6 .mbr-text,
  .cid-u2ui7ALDj6 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-u2ui7ALDj6 .mbr-text,
.cid-u2ui7ALDj6 .mbr-section-btn {
  text-align: left;
  color: #181818;
}
.cid-u2ui7ALDj6 .mbr-title,
.cid-u2ui7ALDj6 .underline {
  color: #a88b6b;
}
.cid-uPJjEPbq07 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPJjEPbq07 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJjEPbq07 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJjEPbq07 ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uPJjEPbq07 li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uPJjEPbq07 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #a88b6b;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uPJlO27vVz {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/construction-1-2000x1125.jpg");
}
.cid-uPJlO27vVz .left__side,
.cid-uPJlO27vVz .right__side {
  display: flex;
  align-items: center;
}
.cid-uPJlO27vVz .logo {
  max-width: 174px;
}
.cid-uPJlO27vVz .logo img {
  width: 100%;
  object-fit: cover;
}
.cid-uPJlO27vVz .mbr-section-title {
  margin-left: 30px;
}
.cid-uPJlO27vVz .image__block {
  margin-top: 135px;
}
.cid-uPJlO27vVz .image__block .image {
  margin: 0 18px 30px;
}
.cid-uPJlO27vVz .image__block .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uPJlO27vVz .img-wrap1 img {
  max-width: 466px;
  max-height: 432px;
}
.cid-uPJlO27vVz .img-wrap2 img {
  max-width: 387px;
  max-height: 433px;
}
.cid-uPJlO27vVz .img-wrap3 img {
  max-width: 615px;
  max-height: 433px;
}
.cid-uPJlO27vVz .mbr-section-btn {
  width: 100%;
  margin-top: 50px;
}
@media (max-width: 1150px) {
  .cid-uPJlO27vVz .img-wrap1 img {
    max-width: 426px;
  }
  .cid-uPJlO27vVz .img-wrap2 img {
    max-width: 325px;
  }
}
@media (max-width: 1024px) {
  .cid-uPJlO27vVz .left__side {
    margin-bottom: 39px;
    justify-content: center;
  }
  .cid-uPJlO27vVz .logo {
    width: 105px;
    margin-right: 28px;
  }
  .cid-uPJlO27vVz .logo img {
    width: 105px;
    height: auto;
  }
  .cid-uPJlO27vVz .mbr-section-title {
    margin-left: 0;
  }
  .cid-uPJlO27vVz .figure:before {
    width: 56px;
    height: 56px;
    top: -40px;
    right: -10px;
  }
  .cid-uPJlO27vVz .image__block {
    flex-wrap: nowrap;
    margin-top: 65px;
  }
  .cid-uPJlO27vVz .img-wrap1 img {
    max-width: 262px;
    max-height: 241px;
  }
  .cid-uPJlO27vVz .img-wrap2 img {
    max-width: 215px;
    max-height: 241px;
  }
  .cid-uPJlO27vVz .img-wrap3 img {
    max-width: 345px;
    max-height: 241px;
  }
}
@media (max-width: 575px) {
  .cid-uPJlO27vVz .logo {
    width: 70px;
    margin-right: 18px;
  }
  .cid-uPJlO27vVz .logo img {
    width: 70px;
  }
  .cid-uPJlO27vVz .image__block {
    flex-wrap: wrap;
  }
  .cid-uPJlO27vVz .img-wrap1 img {
    max-width: 315px;
  }
  .cid-uPJlO27vVz .img-wrap2 img {
    max-width: 315px;
  }
  .cid-uPJlO27vVz .img-wrap3 img {
    max-width: 315px;
  }
}
.cid-uQnsa0yzgn {
  background: #ffffff;
}
.cid-uQnsa0yzgn .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-uQnsa0yzgn .mbr-figure {
  margin: 0 auto;
}
.cid-uQnsa0yzgn figcaption {
  position: relative;
}
.cid-uQnsa0yzgn figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uQnsa0yzgn .image-block {
    width: 100% !important;
  }
}
.cid-uQnsa0yzgn .mbr-figure-caption div {
  color: #232323;
}
.cid-uPJmTsgIzf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #383838;
}
.cid-uPJmTsgIzf .listico {
  padding-right: 1rem;
  font-size: 2rem;
}
.cid-uPJmTsgIzf .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-uPJmTsgIzf .mbr-text {
  color: #444;
}
.cid-uPJmTsgIzf h5 {
  margin-bottom: 0;
}
.cid-uPJmTsgIzf .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-uPJmTsgIzf .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uPJmTsgIzf .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uPJmTsgIzf .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPJmTsgIzf .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uPJmTsgIzf .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-uPJmTsgIzf .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uPJmTsgIzf .social-list a:hover {
  opacity: .4;
}
.cid-uPJmTsgIzf .media-container-row > div {
  padding: 0px;
}
.cid-uPJmTsgIzf .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-uPJmTsgIzf .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-uPJmTsgIzf .group-title SPAN {
  color: #ffffff;
}
.cid-uPJmTsgIzf .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-uPJmTsgIzf .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uPJmTsgIzf .social-list,
  .cid-uPJmTsgIzf .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uPJmTsgIzf h3 {
    margin-bottom: 10px;
  }
  .cid-uPJmTsgIzf .navbar-brand {
    text-align: center;
  }
}
.cid-uPJmTsgIzf .links SPAN {
  color: #9e9e9e;
}
.cid-uPJup7x2YJ .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;
  transition: all 0.25s ease-in-out;
}
.cid-uPJup7x2YJ .nav-item:focus,
.cid-uPJup7x2YJ .nav-link:focus {
  outline: none;
}
.cid-uPJup7x2YJ .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-uPJup7x2YJ .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700 !important;
  padding: 0 !important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem !important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uPJup7x2YJ .dropdown .dropdown-menu .dropdown-item:hover,
.cid-uPJup7x2YJ .dropdown .dropdown-menu .dropdown-item:active,
.cid-uPJup7x2YJ .dropdown .dropdown-menu .dropdown-item:focus {
  color: #a88b6b !important;
}
.cid-uPJup7x2YJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPJup7x2YJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uPJup7x2YJ .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;
  transition: all 0.25s ease-in-out;
}
.cid-uPJup7x2YJ .navbar-caption:hover {
  color: inherit !important;
}
.cid-uPJup7x2YJ .container {
  max-width: 1380px;
}
.cid-uPJup7x2YJ .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-uPJup7x2YJ .nav-link {
  font-weight: 700 !important;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uPJup7x2YJ .nav-link:hover,
.cid-uPJup7x2YJ .nav-link:active,
.cid-uPJup7x2YJ .nav-link:focus {
  border-bottom: 3px solid #a88b6b;
  color: #a88b6b !important;
}
.cid-uPJup7x2YJ .navbar {
  min-height: 77px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-uPJup7x2YJ .navbar.opened {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-uPJup7x2YJ .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-uPJup7x2YJ .navbar .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uPJup7x2YJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPJup7x2YJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPJup7x2YJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uPJup7x2YJ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uPJup7x2YJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPJup7x2YJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPJup7x2YJ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uPJup7x2YJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPJup7x2YJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPJup7x2YJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPJup7x2YJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPJup7x2YJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPJup7x2YJ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uPJup7x2YJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPJup7x2YJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPJup7x2YJ .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uPJup7x2YJ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uPJup7x2YJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPJup7x2YJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPJup7x2YJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uPJup7x2YJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPJup7x2YJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPJup7x2YJ .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uPJup7x2YJ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uPJup7x2YJ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uPJup7x2YJ .icons-menu span {
  color: #a88b6b !important;
}
.cid-uPJup7x2YJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPJup7x2YJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  -webkit-transition: none;
  transition: none;
  margin: 0 !important;
}
.cid-uPJup7x2YJ .navbar-brand {
  flex-shrink: 0;
  -webkit-box-align: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uPJup7x2YJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uPJup7x2YJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPJup7x2YJ .dropdown-item.active,
.cid-uPJup7x2YJ .dropdown-item:active {
  background-color: transparent;
}
.cid-uPJup7x2YJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPJup7x2YJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPJup7x2YJ .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPJup7x2YJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uPJup7x2YJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPJup7x2YJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPJup7x2YJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPJup7x2YJ .navbar-buttons {
  text-align: center;
}
.cid-uPJup7x2YJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPJup7x2YJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a88b6b;
}
.cid-uPJup7x2YJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uPJup7x2YJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uPJup7x2YJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-uPJup7x2YJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uPJup7x2YJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uPJup7x2YJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uPJup7x2YJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-uPJup7x2YJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-uPJup7x2YJ .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uPJup7x2YJ a.nav-link {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uPJup7x2YJ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPJup7x2YJ .icons-menu {
  flex-wrap: wrap;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-uPJup7x2YJ .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPJup7x2YJ .navbar {
    height: 77px;
  }
  .cid-uPJup7x2YJ .navbar.opened {
    height: auto;
  }
  .cid-uPJup7x2YJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPJpoMpGq8 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPJpoMpGq8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJpoMpGq8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJpoN3AB4 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uPJpoN3AB4 .image-block {
  width: 100% !important;
}
.cid-uPJpoN3AB4 .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uPJpoN3AB4 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-uPJpoN3AB4 .container {
    padding: 0 1rem;
  }
  .cid-uPJpoN3AB4 .image-block {
    width: 100% !important;
  }
}
.cid-uPJpoN3AB4 .container-fluid {
  padding: 0;
}
.cid-uPJpDZSehI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-uPJpDZSehI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPJpDZSehI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPJpDZSehI .mbr-text,
.cid-uPJpDZSehI .mbr-section-btn {
  color: #232323;
}
.cid-uPJpDZSehI .card-title,
.cid-uPJpDZSehI .card-box {
  color: #ffffff;
}
.cid-uPJpDZSehI .mbr-text,
.cid-uPJpDZSehI .link-wrap {
  color: #ffffff;
}
.cid-uPJpoNiseQ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/construction-1-2000x1125.jpg");
}
.cid-uPJpoNiseQ p {
  color: #767676;
}
.cid-uPJpoNiseQ .row-element,
.cid-uPJpoNiseQ .image-element {
  padding: 0;
}
.cid-uPJpoNiseQ .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPJpoNiseQ .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uPJpoNiseQ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uPJpoNiseQ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a88b6b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uPJpoNiseQ .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-uPJpoNiseQ .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uPJpoNiseQ .text-content {
    padding: 2rem 1rem;
  }
  .cid-uPJpoNiseQ .underline .line {
    height: 2px;
  }
  .cid-uPJpoNiseQ .mbr-title,
  .cid-uPJpoNiseQ .underline,
  .cid-uPJpoNiseQ .mbr-text,
  .cid-uPJpoNiseQ .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uPJpoNiseQ .mbr-text,
.cid-uPJpoNiseQ .mbr-section-btn {
  text-align: left;
  color: #181818;
}
.cid-uPJpoNiseQ .mbr-title,
.cid-uPJpoNiseQ .underline {
  color: #a88b6b;
}
.cid-uQntcztBlM {
  background: #ffffff;
}
.cid-uQntcztBlM .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-uQntcztBlM .mbr-figure {
  margin: 0 auto;
}
.cid-uQntcztBlM figcaption {
  position: relative;
}
.cid-uQntcztBlM figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uQntcztBlM .image-block {
    width: 100% !important;
  }
}
.cid-uQntcztBlM .mbr-figure-caption div {
  color: #232323;
}
.cid-uT1cYtxuGb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #383838;
}
.cid-uT1cYtxuGb .listico {
  padding-right: 1rem;
  font-size: 2rem;
}
.cid-uT1cYtxuGb .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-uT1cYtxuGb .mbr-text {
  color: #444;
}
.cid-uT1cYtxuGb h5 {
  margin-bottom: 0;
}
.cid-uT1cYtxuGb .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-uT1cYtxuGb .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uT1cYtxuGb .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uT1cYtxuGb .socicon {
  font-size: 1.3rem;
  background: #ffffff;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uT1cYtxuGb .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uT1cYtxuGb .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-uT1cYtxuGb .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uT1cYtxuGb .social-list a:hover {
  opacity: .4;
}
.cid-uT1cYtxuGb .media-container-row > div {
  padding: 0px;
}
.cid-uT1cYtxuGb .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-uT1cYtxuGb .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-uT1cYtxuGb .group-title SPAN {
  color: #ffffff;
}
.cid-uT1cYtxuGb .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-uT1cYtxuGb .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uT1cYtxuGb .social-list,
  .cid-uT1cYtxuGb .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uT1cYtxuGb h3 {
    margin-bottom: 10px;
  }
  .cid-uT1cYtxuGb .navbar-brand {
    text-align: center;
  }
}
.cid-uT1cYtxuGb .links SPAN {
  color: #9e9e9e;
}
