.btn {
  border-width: 2px;
}
.video-wrapper {
  overflow: hidden;
}
body {
  font-family: Geologica;
}
.display-1 {
  font-family: 'Geologica', sans-serif;
  font-size: 6.5rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 8.125rem;
}
.display-2 {
  font-family: 'Geologica', sans-serif;
  font-size: 5.8rem;
  line-height: 1;
}
.display-2 > .mbr-iconfont {
  font-size: 7.25rem;
}
.display-4 {
  font-family: 'Geologica', sans-serif;
  font-size: 1.5rem;
  line-height: 1.3;
}
.display-4 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-5 {
  font-family: 'Geologica', sans-serif;
  font-size: 2.65rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 3.3125rem;
}
.display-7 {
  font-family: 'Geologica', sans-serif;
  font-size: 1.8rem;
  line-height: 1.3;
}
.display-7 > .mbr-iconfont {
  font-size: 2.25rem;
}
/* ---- 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: 5.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.55rem;
    font-size: calc( 2.925rem + (6.5 - 2.925) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.925rem + (6.5 - 2.925) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 4.64rem;
    font-size: calc( 2.6799999999999997rem + (5.8 - 2.6799999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.6799999999999997rem + (5.8 - 2.6799999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.12rem;
    font-size: calc( 1.5775rem + (2.65 - 1.5775) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.5775rem + (2.65 - 1.5775) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 2rem;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #f24d4a !important;
}
.bg-success {
  background-color: #597db6 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #ffa770 !important;
}
.bg-danger {
  background-color: #e2241f !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f24d4a !important;
  border-color: #f24d4a !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: inherit;
  background-color: #f57c7a !important;
  border-color: #f57c7a !important;
  box-shadow: none;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #f57c7a !important;
  border-color: #f57c7a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #75db60 !important;
  border-color: #75db60 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: inherit;
  background-color: #99e48a !important;
  border-color: #99e48a !important;
  box-shadow: none;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #99e48a !important;
  border-color: #99e48a !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success,
.btn-success:active {
  background-color: #597db6 !important;
  border-color: #597db6 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: inherit;
  background-color: #7c99c6 !important;
  border-color: #7c99c6 !important;
  box-shadow: none;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #7c99c6 !important;
  border-color: #7c99c6 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffa770 !important;
  border-color: #ffa770 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: inherit;
  background-color: #ffc6a3 !important;
  border-color: #ffc6a3 !important;
  box-shadow: none;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ffc6a3 !important;
  border-color: #ffc6a3 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #e2241f !important;
  border-color: #e2241f !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: inherit;
  background-color: #e8504c !important;
  border-color: #e8504c !important;
  box-shadow: none;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #e8504c !important;
  border-color: #e8504c !important;
}
.btn-white,
.btn-white:active {
  background-color: #eff0ec !important;
  border-color: #eff0ec !important;
  color: #757b62 !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #757b62 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: inherit;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
  box-shadow: none;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #f24d4a;
  color: #f24d4a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d6130f !important;
  background-color: transparent !important;
  border-color: #d6130f !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f24d4a !important;
  border-color: #f24d4a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #75db60;
  color: #75db60;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #43ba2a !important;
  background-color: transparent !important;
  border-color: #43ba2a !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #75db60 !important;
  border-color: #75db60 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #597db6;
  color: #597db6;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #385480 !important;
  background-color: transparent !important;
  border-color: #385480 !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #597db6 !important;
  border-color: #597db6 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffa770;
  color: #ffa770;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ff7219 !important;
  background-color: transparent !important;
  border-color: #ff7219 !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ffa770 !important;
  border-color: #ffa770 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #e2241f;
  color: #e2241f;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #971714 !important;
  background-color: transparent !important;
  border-color: #971714 !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #e2241f !important;
  border-color: #e2241f !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: #cfcfcf !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #f24d4a !important;
}
.text-secondary {
  color: #75db60 !important;
}
.text-success {
  color: #597db6 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #ffa770 !important;
}
.text-danger {
  color: #e2241f !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #c8120e !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #3eae27 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #344d75 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ff680a !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #891512 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #f24d4a;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #ffa770;
}
.alert-danger {
  background-color: #e2241f;
}
.mbr-section-btn .btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f24d4a;
  border-color: #f24d4a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #f24d4a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #b2c2dd;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #f9d5d4;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Geologica', sans-serif;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 400;
  border-radius: 100px !important;
}
.form-control > .mbr-iconfont {
  font-size: 2.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #f24d4a !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Geologica', sans-serif;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 2.25rem;
}
blockquote {
  border-color: #f24d4a;
}
/* Forms */
.mbr-form .input-group-btn .btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn .btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f24d4a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f24d4a;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #232323;
  border-bottom-color: #232323;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #f24d4a;
  border-bottom-color: #f24d4a;
}
.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: #f24d4a !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #75db60 !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='%23f24d4a' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  padding: 32px 88px;
  border-radius: 60px !important;
  font-weight: 400 !important;
}
@media (max-width: 992px) {
  .mbr-section-btn .btn,
  .mbr-section-btn-main .btn {
    padding: 22px 40px;
  }
}
.mbr-section-btn .btn-primary,
.mbr-section-btn-main .btn-primary,
.mbr-section-btn .btn-secondary,
.mbr-section-btn-main .btn-secondary,
.mbr-section-btn .btn-success,
.mbr-section-btn-main .btn-success,
.mbr-section-btn .btn-info,
.mbr-section-btn-main .btn-info,
.mbr-section-btn .btn-warning,
.mbr-section-btn-main .btn-warning,
.mbr-section-btn .btn-danger,
.mbr-section-btn-main .btn-danger,
.mbr-section-btn .btn-black,
.mbr-section-btn-main .btn-black,
.mbr-section-btn .btn-white,
.mbr-section-btn-main .btn-white {
  border: none !important;
}
.mbr-section-btn .btn-primary:hover,
.mbr-section-btn-main .btn-primary:hover,
.mbr-section-btn .btn-secondary:hover,
.mbr-section-btn-main .btn-secondary:hover,
.mbr-section-btn .btn-success:hover,
.mbr-section-btn-main .btn-success:hover,
.mbr-section-btn .btn-info:hover,
.mbr-section-btn-main .btn-info:hover,
.mbr-section-btn .btn-warning:hover,
.mbr-section-btn-main .btn-warning:hover,
.mbr-section-btn .btn-danger:hover,
.mbr-section-btn-main .btn-danger:hover,
.mbr-section-btn .btn-black:hover,
.mbr-section-btn-main .btn-black:hover,
.mbr-section-btn .btn-white:hover,
.mbr-section-btn-main .btn-white:hover,
.mbr-section-btn .btn-primary:focus,
.mbr-section-btn-main .btn-primary:focus,
.mbr-section-btn .btn-secondary:focus,
.mbr-section-btn-main .btn-secondary:focus,
.mbr-section-btn .btn-success:focus,
.mbr-section-btn-main .btn-success:focus,
.mbr-section-btn .btn-info:focus,
.mbr-section-btn-main .btn-info:focus,
.mbr-section-btn .btn-warning:focus,
.mbr-section-btn-main .btn-warning:focus,
.mbr-section-btn .btn-danger:focus,
.mbr-section-btn-main .btn-danger:focus,
.mbr-section-btn .btn-black:focus,
.mbr-section-btn-main .btn-black:focus,
.mbr-section-btn .btn-white:focus,
.mbr-section-btn-main .btn-white:focus {
  opacity: .7;
}
.card-wrap,
.card-wrapper,
.video-wrapper,
.mbr-figure iframe,
.google-map iframe,
.slide-content,
.plan,
.card,
.item-wrapper,
.card-box {
  border-radius: 30px !important;
}
img {
  border-radius: 26px !important;
}
.cid-udqzC2GEPD {
  background-color: transparent;
}
.cid-udqzC2GEPD .navbar-dropdown {
  background-color: #f24d4a !important;
  padding: 0;
}
.cid-udqzC2GEPD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f24d4a !important;
  background: #f24d4a;
}
.cid-udqzC2GEPD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udqzC2GEPD .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-udqzC2GEPD .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-udqzC2GEPD .menu_box .navbar.opened,
  .cid-udqzC2GEPD .menu_box .navbar-collapse {
    background-color: #f24d4a !important;
    transition: all 0s ease 0s;
  }
}
.cid-udqzC2GEPD .navbar-dropdown {
  position: relative !important;
}
.cid-udqzC2GEPD .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-udqzC2GEPD .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 0;
  }
}
@media (max-width: 991px) {
  .cid-udqzC2GEPD .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-udqzC2GEPD .mbr-section-btn-main .btn {
  padding: 22px 40px;
  margin: 8px;
  min-width: 120px;
  white-space: nowrap;
}
.cid-udqzC2GEPD .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-udqzC2GEPD .btn:hover {
  box-shadow: none;
}
@media (min-width: 1200px) {
  .cid-udqzC2GEPD .nav-item {
    margin: 4px 16px;
  }
}
@media (max-width: 991px) {
  .cid-udqzC2GEPD .nav-item {
    margin: 0 !important;
  }
}
.cid-udqzC2GEPD .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: 4rem !important;
  border: 1px solid transparent;
  position: relative;
  opacity: 1;
}
.cid-udqzC2GEPD .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-udqzC2GEPD .nav-item .nav-link:hover,
.cid-udqzC2GEPD .nav-item .nav-link:focus {
  color: #ffffff !important;
}
.cid-udqzC2GEPD .nav-item .nav-link:hover::before,
.cid-udqzC2GEPD .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-udqzC2GEPD .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-udqzC2GEPD .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-udqzC2GEPD .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-udqzC2GEPD .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-udqzC2GEPD .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-udqzC2GEPD .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-udqzC2GEPD .offcanvas_box {
    display: none;
  }
}
.cid-udqzC2GEPD .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-udqzC2GEPD .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-udqzC2GEPD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-udqzC2GEPD .container {
  display: flex;
  margin: auto;
}
.cid-udqzC2GEPD .iconfont-wrapper {
  color: #f24d4a;
  background-color: #ffffff;
  font-size: 16px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-udqzC2GEPD .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-udqzC2GEPD .iconfont-wrapper:hover {
  opacity: .7;
}
@media (min-width: 992px) {
  .cid-udqzC2GEPD .navbar-nav {
    margin: 0;
  }
}
.cid-udqzC2GEPD .dropdown-menu,
.cid-udqzC2GEPD .navbar.opened {
  background-color: false !important;
}
.cid-udqzC2GEPD .nav-item:focus,
.cid-udqzC2GEPD .nav-link:focus {
  outline: none;
}
.cid-udqzC2GEPD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-udqzC2GEPD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udqzC2GEPD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-udqzC2GEPD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udqzC2GEPD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udqzC2GEPD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udqzC2GEPD .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-udqzC2GEPD .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-udqzC2GEPD .navbar.opened {
  transition: all 0.3s;
}
.cid-udqzC2GEPD .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-udqzC2GEPD .navbar .navbar-logo img {
  max-width: 70px;
  min-height: 70px;
  object-fit: contain;
  border-radius: 100% !important;
}
.cid-udqzC2GEPD .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-udqzC2GEPD .navbar.collapsed {
  justify-content: center;
}
.cid-udqzC2GEPD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udqzC2GEPD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-udqzC2GEPD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udqzC2GEPD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udqzC2GEPD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udqzC2GEPD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-udqzC2GEPD .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-udqzC2GEPD .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-udqzC2GEPD .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-udqzC2GEPD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udqzC2GEPD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udqzC2GEPD .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-udqzC2GEPD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udqzC2GEPD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-udqzC2GEPD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-udqzC2GEPD .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-udqzC2GEPD .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-udqzC2GEPD .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-udqzC2GEPD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-udqzC2GEPD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-udqzC2GEPD .navbar .icons-menu {
    padding: 0;
  }
}
.cid-udqzC2GEPD .navbar.navbar-short {
  min-height: 60px;
}
.cid-udqzC2GEPD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-udqzC2GEPD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-udqzC2GEPD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-udqzC2GEPD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-udqzC2GEPD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udqzC2GEPD .dropdown-item.active,
.cid-udqzC2GEPD .dropdown-item:active {
  background-color: transparent;
}
.cid-udqzC2GEPD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 4px 0 !important;
}
.cid-udqzC2GEPD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udqzC2GEPD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udqzC2GEPD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udqzC2GEPD ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-udqzC2GEPD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-udqzC2GEPD button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f24d4a;
  background: #ffffff;
}
.cid-udqzC2GEPD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #f24d4a;
}
.cid-udqzC2GEPD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udqzC2GEPD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udqzC2GEPD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udqzC2GEPD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udqzC2GEPD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udqzC2GEPD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udqzC2GEPD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udqzC2GEPD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udqzC2GEPD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-udqzC2GEPD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udqzC2GEPD .navbar {
    height: 70px;
  }
  .cid-udqzC2GEPD .navbar.opened {
    height: auto;
  }
  .cid-udqzC2GEPD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-udqzC2GEPD .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
.cid-udqzC2GEPD .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-udqzC2GEPD .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-udqzC2GEPD .text_widget {
  margin-bottom: 32px;
}
.cid-udqzC2GEPD .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-udqzC2GEPD .text_widget a:hover,
.cid-udqzC2GEPD .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-udqzC2GEPD .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 40px;
  }
}
.cid-udqzC2GEPD .navbar-caption {
  color: #ffffff;
}
.cid-udqzC2GEPD .mbr-section-subtitle,
.cid-udqzC2GEPD .text_widget,
.cid-udqzC2GEPD .mbr-section-btn {
  text-align: center;
}
.cid-udqzC2GEPD a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-udqzCbdcS6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background2.jpg");
}
.cid-udqzCbdcS6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqzCbdcS6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqzCbdcS6 .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-udqzCbdcS6 .content-wrapper .tags-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-udqzCbdcS6 .content-wrapper .tags-wrapper {
    margin-bottom: 20px;
  }
}
.cid-udqzCbdcS6 .content-wrapper .tags-wrapper .tags-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-udqzCbdcS6 .content-wrapper .tags-wrapper .tags-wrap .mbr-tag {
  position: relative;
  z-index: 1;
  margin: 0 16px 20px;
  display: inline-flex;
  justify-content: center;
  padding: 24px 88px;
  border-radius: 60px !important;
  border: 1px solid #ffffff;
  transform: rotate(8deg);
}
@media (max-width: 992px) {
  .cid-udqzCbdcS6 .content-wrapper .tags-wrapper .tags-wrap .mbr-tag {
    padding: 20px 40px;
    transform: none;
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .cid-udqzCbdcS6 .content-wrapper .tags-wrapper .tags-wrap .mbr-tag {
    width: 100%;
  }
}
.cid-udqzCbdcS6 .content-wrapper .tags-wrapper .tags-wrap .mbr-tag:nth-child(2n) {
  transform: rotate(-8deg);
}
@media (max-width: 992px) {
  .cid-udqzCbdcS6 .content-wrapper .tags-wrapper .tags-wrap .mbr-tag:nth-child(2n) {
    transform: none;
  }
}
.cid-udqzCbdcS6 .content-wrapper .tags-wrapper .tags-wrap .mbr-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  opacity: .3;
  background-color: #ffffff;
  pointer-events: none;
}
.cid-udqzCbdcS6 .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-udqzCbdcS6 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-udqzCbdcS6 .image-wrapper {
  margin-top: 40px;
  display: flex;
}
@media (max-width: 992px) {
  .cid-udqzCbdcS6 .image-wrapper {
    justify-content: center;
  }
}
.cid-udqzCbdcS6 .image-wrapper img {
  width: 540px;
  height: 540px;
  border-radius: 100% !important;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-udqzCbdcS6 .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 1200px) {
  .cid-udqzCbdcS6 .image-wrapper img {
    width: 320px;
    height: 320px;
  }
}
@media (max-width: 768px) {
  .cid-udqzCbdcS6 .image-wrapper img {
    width: 260px;
    height: 260px;
    margin: 0 auto;
  }
}
.cid-udqzCbdcS6 .image-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-udqzCbdcS6 .image-wrap {
    justify-content: center;
  }
}
.cid-udqzCbdcS6 .image-wrap img {
  width: 640px;
  height: 640px;
  border-radius: 100% !important;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-udqzCbdcS6 .image-wrap img {
    width: 540px;
    height: 540px;
  }
}
@media (max-width: 1200px) {
  .cid-udqzCbdcS6 .image-wrap img {
    width: 440px;
    height: 440px;
  }
}
@media (max-width: 768px) {
  .cid-udqzCbdcS6 .image-wrap img {
    width: 260px;
    height: 260px;
  }
}
.cid-udqzCbdcS6 .mbr-section-title {
  color: #ffffff;
}
.cid-udqzCbdcS6 .mbr-tag {
  color: #ffffff;
  text-align: center;
}
.cid-udqzCbdcS6 .mbr-text,
.cid-udqzCbdcS6 .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-udqzCbdcS6 .mbr-section-title,
.cid-udqzCbdcS6 .mbr-section-btn,
.cid-udqzCbdcS6 .tags-wrapper {
  text-align: center;
}
#custom-html-p img {
  width: 100%;
  height: 100%;
  border-radius: 0 !important;
}
.cid-udqAZDRMMX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background1.jpg");
}
.cid-udqAZDRMMX .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqAZDRMMX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqAZDRMMX .items-wrapper {
  margin: 0 -5px;
  justify-content: center;
}
.cid-udqAZDRMMX .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-udqAZDRMMX .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-udqAZDRMMX .item {
  padding: 0 5px;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .cid-udqAZDRMMX .item {
    margin-bottom: 16px;
  }
  .cid-udqAZDRMMX .item:last-child {
    margin-bottom: 0;
  }
}
.cid-udqAZDRMMX .item .item-wrapper {
  height: 100%;
  background-color: #f24d4a;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-udqAZDRMMX .item .item-wrapper {
    padding: 24px;
  }
}
.cid-udqAZDRMMX .item .item-wrapper .card-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-udqAZDRMMX .item .item-wrapper .card-box .card-title {
  width: 100%;
  margin-bottom: 40px;
}
.cid-udqAZDRMMX .item .item-wrapper .card-box .image-wrapper {
  margin-bottom: 30px;
}
.cid-udqAZDRMMX .item .item-wrapper .card-box .image-wrapper img {
  object-fit: contain;
  height: 650px;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-udqAZDRMMX .item .item-wrapper .card-box .image-wrapper img {
    height: 450px;
  }
}
.cid-udqAZDRMMX .mbr-section-title {
  color: #f24d4a;
  text-align: center;
}
.cid-udqAZDRMMX .card-title {
  color: #ffffff;
  text-align: center;
}
.cid-udqAZDRMMX .card-title,
.cid-udqAZDRMMX .mbr-section-btn {
  text-align: center;
}
.cid-udqB2PL94l {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background1.jpg");
}
.cid-udqB2PL94l .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqB2PL94l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqB2PL94l .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-udqB2PL94l .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-udqB2PL94l .content-wrapper .video-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.cid-udqB2PL94l .content-wrapper .video-wrap .decor {
  position: absolute;
  top: -1rem;
  border: 1px solid #ffffff;
  width: 52%;
  height: 100%;
  border-radius: 30px;
  transform: rotate(4deg);
}
@media (max-width: 1440px) {
  .cid-udqB2PL94l .content-wrapper .video-wrap .decor {
    width: 67%;
  }
}
@media (max-width: 992px) {
  .cid-udqB2PL94l .content-wrapper .video-wrap .decor {
    display: none;
  }
}
.cid-udqB2PL94l .content-wrapper .video-wrap .decor::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: .3;
  background-color: #ffffff;
  border-radius: 30px;
}
.cid-udqB2PL94l .box {
  margin: 0 auto;
  width: 50%;
}
@media (max-width: 1440px) {
  .cid-udqB2PL94l .box {
    width: 65%;
  }
}
@media (max-width: 992px) {
  .cid-udqB2PL94l .box {
    width: 100%;
  }
}
.cid-udqB2PL94l .box .mbr-media {
  position: relative;
  overflow: hidden;
  height: 650px;
}
@media (max-width: 992px) {
  .cid-udqB2PL94l .box .mbr-media {
    height: 350px;
  }
}
.cid-udqB2PL94l .box .mbr-media img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 3rem;
}
@media (max-width: 992px) {
  .cid-udqB2PL94l .box .mbr-media img {
    border-radius: 2rem;
  }
}
.cid-udqB2PL94l .box .mbr-media .mbr-iconfont {
  font-size: 32px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  margin-left: 5px;
  z-index: 1;
}
.cid-udqB2PL94l .mbr-media {
  position: relative;
}
.cid-udqB2PL94l .mbr-media img {
  object-fit: cover;
}
.cid-udqB2PL94l a:hover {
  background-image: none !important;
}
.cid-udqB2PL94l .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 80px;
  width: 80px;
  border-radius: 100%;
  background-color: #f24d4a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  cursor: pointer;
}
.cid-udqB2PL94l .icon-wrap:hover,
.cid-udqB2PL94l .icon-wrap:focus {
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-udqB2PL94l .icon-wrap {
    height: 60px;
    width: 60px;
  }
}
.cid-udqB2PL94l .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
}
.cid-udqB2PL94l .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-udqB2PL94l .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-udqB2PL94l .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-udqB2PL94l .close {
  position: fixed;
  opacity: 0.5;
  font-size: 1.5rem;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-udqB2PL94l .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-udqB2PL94l .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-udqB2fUO3I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background1.jpg");
}
.cid-udqB2fUO3I .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqB2fUO3I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqB2fUO3I .items-wrapper {
  margin: 0 -5px;
}
.cid-udqB2fUO3I .items-wrapper .card {
  padding: 0 5px;
}
@media (max-width: 992px) {
  .cid-udqB2fUO3I .items-wrapper .card {
    margin-bottom: 16px;
  }
  .cid-udqB2fUO3I .items-wrapper .card:last-child {
    margin-bottom: 0;
  }
}
.cid-udqB2fUO3I .image-wrapper {
  height: 100%;
}
.cid-udqB2fUO3I .image-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-udqB2fUO3I .image-wrapper img {
    height: 350px;
  }
}
.cid-udqB2fUO3I .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 42px;
  border-radius: 30px;
  background-color: #f24d4a;
}
@media (max-width: 992px) {
  .cid-udqB2fUO3I .content-wrapper {
    padding: 24px;
    height: auto;
  }
}
.cid-udqB2fUO3I .content-wrapper .mbr-section-title {
  width: 100%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-udqB2fUO3I .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-udqB2fUO3I .content-wrapper .mbr-text {
  width: 100%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-udqB2fUO3I .content-wrapper .mbr-text {
    margin-bottom: 30px;
  }
}
.cid-udqB2fUO3I .mbr-section-title {
  color: #ffffff;
}
.cid-udqB2fUO3I .mbr-text {
  color: #ffffff;
}
.cid-udqB2fUO3I .mbr-section-title,
.cid-udqB2fUO3I .mbr-section-btn {
  text-align: center;
}
.cid-udqB4qgEwT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background1.jpg");
}
.cid-udqB4qgEwT .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqB4qgEwT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqB4qgEwT .content-wrap {
  justify-content: center;
}
.cid-udqB4qgEwT .card {
  justify-content: center;
}
.cid-udqB4qgEwT .title-wrapper .mbr-section-title {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-udqB4qgEwT .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
    text-align: center;
  }
}
.cid-udqB4qgEwT .nav-wrapper {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-udqB4qgEwT .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-udqB4qgEwT .nav-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-udqB4qgEwT .nav-wrapper .list .item-wrap {
  padding: 8px 16px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-udqB4qgEwT .nav-wrapper .list .item-wrap:hover,
.cid-udqB4qgEwT .nav-wrapper .list .item-wrap:focus {
  opacity: .4;
}
.cid-udqB4qgEwT .contacts-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 72px;
}
@media (max-width: 1440px) {
  .cid-udqB4qgEwT .contacts-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-udqB4qgEwT .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-udqB4qgEwT .contacts-wrapper .social-wrapper {
  margin-right: 16px;
}
@media (max-width: 1440px) {
  .cid-udqB4qgEwT .contacts-wrapper .social-wrapper {
    margin-right: 0;
    margin-bottom: 16px;
    text-align: right;
  }
}
@media (max-width: 992px) {
  .cid-udqB4qgEwT .contacts-wrapper .social-wrapper {
    text-align: center;
  }
}
.cid-udqB4qgEwT .contacts-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-udqB4qgEwT .contacts-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-udqB4qgEwT .contacts-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-udqB4qgEwT .contacts-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  opacity: .7;
}
.cid-udqB4qgEwT .contacts-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  color: #ffd9c8;
  background-color: #f24d4a;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 4px 4px;
}
.cid-udqB4qgEwT .contacts-wrapper .phone-wrapper .mbr-phone {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1440px) {
  .cid-udqB4qgEwT .contacts-wrapper .phone-wrapper .mbr-phone {
    text-align: right;
  }
}
@media (max-width: 992px) {
  .cid-udqB4qgEwT .contacts-wrapper .phone-wrapper .mbr-phone {
    text-align: center;
  }
}
.cid-udqB4qgEwT .contacts-wrapper .phone-wrapper .mbr-phone:hover,
.cid-udqB4qgEwT .contacts-wrapper .phone-wrapper .mbr-phone:hover {
  opacity: .4;
}
.cid-udqB4qgEwT .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-udqB4qgEwT .mbr-section-title {
  color: #f24d4a;
}
.cid-udqB4qgEwT .list,
.cid-udqB4qgEwT .nav-wrapper {
  color: #f24d4a;
  text-align: center;
}
.cid-udqB4qgEwT .mbr-phone {
  color: #f24d4a;
}
.cid-udqB4qgEwT .mbr-copy {
  color: #f24d4a;
  text-align: center;
}
.cid-udqzC2GEPD {
  background-color: transparent;
}
.cid-udqzC2GEPD .navbar-dropdown {
  background-color: #f24d4a !important;
  padding: 0;
}
.cid-udqzC2GEPD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f24d4a !important;
  background: #f24d4a;
}
.cid-udqzC2GEPD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udqzC2GEPD .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-udqzC2GEPD .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-udqzC2GEPD .menu_box .navbar.opened,
  .cid-udqzC2GEPD .menu_box .navbar-collapse {
    background-color: #f24d4a !important;
    transition: all 0s ease 0s;
  }
}
.cid-udqzC2GEPD .navbar-dropdown {
  position: relative !important;
}
.cid-udqzC2GEPD .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
  margin-left: 24px;
}
@media (max-width: 991px) {
  .cid-udqzC2GEPD .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 0;
  }
}
@media (max-width: 991px) {
  .cid-udqzC2GEPD .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-udqzC2GEPD .mbr-section-btn-main .btn {
  padding: 22px 40px;
  margin: 8px;
  min-width: 120px;
  white-space: nowrap;
}
.cid-udqzC2GEPD .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-udqzC2GEPD .btn:hover {
  box-shadow: none;
}
@media (min-width: 1200px) {
  .cid-udqzC2GEPD .nav-item {
    margin: 4px 16px;
  }
}
@media (max-width: 991px) {
  .cid-udqzC2GEPD .nav-item {
    margin: 0 !important;
  }
}
.cid-udqzC2GEPD .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: 4rem !important;
  border: 1px solid transparent;
  position: relative;
  opacity: 1;
}
.cid-udqzC2GEPD .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-udqzC2GEPD .nav-item .nav-link:hover,
.cid-udqzC2GEPD .nav-item .nav-link:focus {
  color: #ffffff !important;
}
.cid-udqzC2GEPD .nav-item .nav-link:hover::before,
.cid-udqzC2GEPD .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-udqzC2GEPD .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-udqzC2GEPD .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-udqzC2GEPD .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-udqzC2GEPD .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-udqzC2GEPD .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-udqzC2GEPD .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-udqzC2GEPD .offcanvas_box {
    display: none;
  }
}
.cid-udqzC2GEPD .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-udqzC2GEPD .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-udqzC2GEPD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-udqzC2GEPD .container {
  display: flex;
  margin: auto;
}
.cid-udqzC2GEPD .iconfont-wrapper {
  color: #f24d4a;
  background-color: #ffffff;
  font-size: 16px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-udqzC2GEPD .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-udqzC2GEPD .iconfont-wrapper:hover {
  opacity: .7;
}
@media (min-width: 992px) {
  .cid-udqzC2GEPD .navbar-nav {
    margin: 0;
  }
}
.cid-udqzC2GEPD .dropdown-menu,
.cid-udqzC2GEPD .navbar.opened {
  background-color: false !important;
}
.cid-udqzC2GEPD .nav-item:focus,
.cid-udqzC2GEPD .nav-link:focus {
  outline: none;
}
.cid-udqzC2GEPD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-udqzC2GEPD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udqzC2GEPD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-udqzC2GEPD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udqzC2GEPD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udqzC2GEPD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udqzC2GEPD .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-udqzC2GEPD .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-udqzC2GEPD .navbar.opened {
  transition: all 0.3s;
}
.cid-udqzC2GEPD .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-udqzC2GEPD .navbar .navbar-logo img {
  max-width: 70px;
  min-height: 70px;
  object-fit: contain;
  border-radius: 100% !important;
}
.cid-udqzC2GEPD .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-udqzC2GEPD .navbar.collapsed {
  justify-content: center;
}
.cid-udqzC2GEPD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udqzC2GEPD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-udqzC2GEPD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udqzC2GEPD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udqzC2GEPD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udqzC2GEPD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-udqzC2GEPD .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-udqzC2GEPD .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-udqzC2GEPD .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-udqzC2GEPD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udqzC2GEPD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udqzC2GEPD .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-udqzC2GEPD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udqzC2GEPD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-udqzC2GEPD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-udqzC2GEPD .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-udqzC2GEPD .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-udqzC2GEPD .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-udqzC2GEPD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-udqzC2GEPD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-udqzC2GEPD .navbar .icons-menu {
    padding: 0;
  }
}
.cid-udqzC2GEPD .navbar.navbar-short {
  min-height: 60px;
}
.cid-udqzC2GEPD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-udqzC2GEPD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-udqzC2GEPD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-udqzC2GEPD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-udqzC2GEPD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udqzC2GEPD .dropdown-item.active,
.cid-udqzC2GEPD .dropdown-item:active {
  background-color: transparent;
}
.cid-udqzC2GEPD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 4px 0 !important;
}
.cid-udqzC2GEPD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udqzC2GEPD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udqzC2GEPD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udqzC2GEPD ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-udqzC2GEPD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-udqzC2GEPD button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f24d4a;
  background: #ffffff;
}
.cid-udqzC2GEPD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #f24d4a;
}
.cid-udqzC2GEPD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udqzC2GEPD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udqzC2GEPD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udqzC2GEPD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udqzC2GEPD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udqzC2GEPD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udqzC2GEPD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udqzC2GEPD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udqzC2GEPD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-udqzC2GEPD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udqzC2GEPD .navbar {
    height: 70px;
  }
  .cid-udqzC2GEPD .navbar.opened {
    height: auto;
  }
  .cid-udqzC2GEPD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-udqzC2GEPD .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
.cid-udqzC2GEPD .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-udqzC2GEPD .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-udqzC2GEPD .text_widget {
  margin-bottom: 32px;
}
.cid-udqzC2GEPD .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-udqzC2GEPD .text_widget a:hover,
.cid-udqzC2GEPD .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-udqzC2GEPD .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-start;
    min-width: 200px;
    padding-left: 40px;
  }
}
.cid-udqzC2GEPD .navbar-caption {
  color: #ffffff;
}
.cid-udqzC2GEPD .mbr-section-subtitle,
.cid-udqzC2GEPD .text_widget,
.cid-udqzC2GEPD .mbr-section-btn {
  text-align: center;
}
.cid-udqzC2GEPD a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-udqERQ18QL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background2.jpg");
}
.cid-udqERQ18QL .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqERQ18QL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqERQ18QL .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-udqERQ18QL .content-wrapper .tags-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-udqERQ18QL .content-wrapper .tags-wrapper {
    margin-bottom: 20px;
  }
}
.cid-udqERQ18QL .content-wrapper .tags-wrapper .tags-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.cid-udqERQ18QL .content-wrapper .tags-wrapper .tags-wrap .mbr-tag {
  position: relative;
  z-index: 1;
  margin: 0 16px 20px;
  display: inline-flex;
  justify-content: center;
  padding: 24px 88px;
  border-radius: 60px !important;
  border: 1px solid #ffffff;
  transform: rotate(8deg);
}
@media (max-width: 992px) {
  .cid-udqERQ18QL .content-wrapper .tags-wrapper .tags-wrap .mbr-tag {
    padding: 20px 40px;
    transform: none;
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .cid-udqERQ18QL .content-wrapper .tags-wrapper .tags-wrap .mbr-tag {
    width: 100%;
  }
}
.cid-udqERQ18QL .content-wrapper .tags-wrapper .tags-wrap .mbr-tag:nth-child(2n) {
  transform: rotate(-8deg);
}
@media (max-width: 992px) {
  .cid-udqERQ18QL .content-wrapper .tags-wrapper .tags-wrap .mbr-tag:nth-child(2n) {
    transform: none;
  }
}
.cid-udqERQ18QL .content-wrapper .tags-wrapper .tags-wrap .mbr-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  opacity: .3;
  background-color: #ffffff;
  pointer-events: none;
}
.cid-udqERQ18QL .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-udqERQ18QL .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-udqERQ18QL .image-wrapper {
  margin-top: 40px;
  display: flex;
}
@media (max-width: 992px) {
  .cid-udqERQ18QL .image-wrapper {
    justify-content: center;
  }
}
.cid-udqERQ18QL .image-wrapper img {
  width: 540px;
  height: 540px;
  border-radius: 100% !important;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-udqERQ18QL .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 1200px) {
  .cid-udqERQ18QL .image-wrapper img {
    width: 320px;
    height: 320px;
  }
}
@media (max-width: 768px) {
  .cid-udqERQ18QL .image-wrapper img {
    width: 260px;
    height: 260px;
    margin: 0 auto;
  }
}
.cid-udqERQ18QL .image-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-udqERQ18QL .image-wrap {
    justify-content: center;
  }
}
.cid-udqERQ18QL .image-wrap img {
  width: 640px;
  height: 640px;
  border-radius: 100% !important;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-udqERQ18QL .image-wrap img {
    width: 540px;
    height: 540px;
  }
}
@media (max-width: 1200px) {
  .cid-udqERQ18QL .image-wrap img {
    width: 440px;
    height: 440px;
  }
}
@media (max-width: 768px) {
  .cid-udqERQ18QL .image-wrap img {
    width: 260px;
    height: 260px;
  }
}
.cid-udqERQ18QL .mbr-section-title {
  color: #ffffff;
}
.cid-udqERQ18QL .mbr-tag {
  color: #ffffff;
  text-align: center;
}
.cid-udqERQ18QL .mbr-text,
.cid-udqERQ18QL .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-udqERQ18QL .mbr-section-title,
.cid-udqERQ18QL .mbr-section-btn,
.cid-udqERQ18QL .tags-wrapper {
  text-align: center;
}
.cid-udqERZiQ90 {
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background2.jpg");
}
.cid-udqERZiQ90 .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqERZiQ90 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqERZiQ90 .card {
  justify-content: center;
}
.cid-udqERZiQ90 .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-udqERZiQ90 .content-wrapper .mbr-section-title {
    text-align: center;
  }
}
.cid-udqERZiQ90 .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 80%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-udqERZiQ90 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-udqERZiQ90 .content-wrapper .mbr-section-btn {
    text-align: center;
  }
}
.cid-udqERZiQ90 .image-wrapper {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-udqERZiQ90 .image-wrapper {
    margin-top: 30px;
    justify-content: center;
  }
}
.cid-udqERZiQ90 .image-wrapper img {
  width: 640px;
  height: 640px;
  border-radius: 100% !important;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-udqERZiQ90 .image-wrapper img {
    width: 440px;
    height: 440px;
  }
}
@media (max-width: 768px) {
  .cid-udqERZiQ90 .image-wrapper img {
    width: 260px;
    height: 260px;
    margin: 0 auto;
  }
}
.cid-udqERZiQ90 .mbr-section-title {
  color: #f24d4a;
}
.cid-udqERZiQ90 .mbr-text {
  color: #f24d4a;
}
.cid-udqESiYHWo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background1.jpg");
}
.cid-udqESiYHWo .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqESiYHWo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqESiYHWo .items-wrapper {
  margin: 0 -5px;
}
.cid-udqESiYHWo .item {
  padding: 0 5px;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .cid-udqESiYHWo .item {
    margin-bottom: 16px;
  }
  .cid-udqESiYHWo .item:last-child {
    margin-bottom: 0;
  }
}
.cid-udqESiYHWo .item .item-wrapper {
  height: 100%;
}
.cid-udqESiYHWo .item .item-wrapper .card-box {
  position: relative;
  min-height: 350px;
  height: 100%;
  padding: 42px;
  border: 1px solid #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}
@media (max-width: 1200px) {
  .cid-udqESiYHWo .item .item-wrapper .card-box {
    padding: 24px;
    min-height: 265px;
  }
}
.cid-udqESiYHWo .item .item-wrapper .card-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  opacity: .3;
  background-color: #ffffff;
  pointer-events: none;
}
.cid-udqESiYHWo .item .item-wrapper .card-box .card-title {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 20px;
}
.cid-udqESiYHWo .item .item-wrapper .card-box .card-text {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 0;
}
.cid-udqESiYHWo .item .item-wrapper .item-img {
  position: relative;
  min-height: 350px;
  height: 100%;
}
.cid-udqESiYHWo .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(8deg);
}
@media (max-width: 992px) {
  .cid-udqESiYHWo .item .item-wrapper .item-img img {
    transform: none;
    min-height: 265px;
  }
}
.cid-udqESiYHWo .card-title {
  color: #ffffff;
}
.cid-udqESiYHWo .card-text {
  color: #ffffff;
}
.cid-udqESrOyRD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background1.jpg");
}
.cid-udqESrOyRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqESrOyRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqESrOyRD .content-wrap {
  justify-content: center;
}
.cid-udqESrOyRD .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-udqESrOyRD .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-udqESrOyRD .card {
  justify-content: space-between;
}
.cid-udqESrOyRD .card-wrap {
  margin-bottom: 60px;
}
.cid-udqESrOyRD .card-wrap:first-child {
  padding-top: 180px;
}
@media (max-width: 1440px) {
  .cid-udqESrOyRD .card-wrap:first-child {
    padding-top: 0;
  }
}
@media (max-width: 992px) {
  .cid-udqESrOyRD .card-wrap {
    margin-bottom: 40px;
  }
}
.cid-udqESrOyRD .card-wrap .card-text {
  display: inline-flex;
  padding-bottom: 18px;
  border-bottom: 2px dashed #ffffff;
  margin-bottom: 0;
}
.cid-udqESrOyRD .image-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-udqESrOyRD .image-wrapper {
    margin-bottom: 40px;
  }
}
.cid-udqESrOyRD .image-wrapper img {
  height: 600px;
  width: 600px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1440px) {
  .cid-udqESrOyRD .image-wrapper img {
    width: 400px;
    height: 400px;
  }
}
@media (max-width: 768px) {
  .cid-udqESrOyRD .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-udqESrOyRD .mbr-section-title {
  color: #ffffff;
}
.cid-udqESrOyRD .card-text,
.cid-udqESrOyRD .card-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-udqESrOyRD .mbr-section-title,
.cid-udqESrOyRD .mbr-section-btn,
.cid-udqESrOyRD .title-wrapper {
  text-align: center;
}
.cid-udqESUHsB5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background1.jpg");
}
.cid-udqESUHsB5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqESUHsB5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqESUHsB5 .items-wrapper {
  margin: 0 -5px;
}
.cid-udqESUHsB5 .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-udqESUHsB5 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-udqESUHsB5 .item {
  padding: 0 5px;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .cid-udqESUHsB5 .item {
    margin-bottom: 16px;
  }
}
.cid-udqESUHsB5 .item:hover .item-wrapper .item-img .btn-wrap,
.cid-udqESUHsB5 .item:focus .item-wrapper .item-img .btn-wrap {
  opacity: 1;
}
.cid-udqESUHsB5 .item .item-wrapper {
  height: 100%;
  border: 5px solid #ffffff;
  background-color: #ffffff;
}
.cid-udqESUHsB5 .item .item-wrapper .item-img {
  position: relative;
  height: 415px;
  border-radius: 26px 26px 0 0;
  overflow: hidden;
}
.cid-udqESUHsB5 .item .item-wrapper .item-img .image-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-udqESUHsB5 .item .item-wrapper .item-img .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-udqESUHsB5 .item .item-wrapper .item-img .image-wrap img {
    transform: none;
  }
}
.cid-udqESUHsB5 .item .item-wrapper .item-img .btn-wrap {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f24d4a;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.cid-udqESUHsB5 .item .item-wrapper .item-img .btn-wrap .mbr-section-btn {
  pointer-events: visible;
}
.cid-udqESUHsB5 .item .item-wrapper .item-content {
  padding: 28px 28px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-udqESUHsB5 .item .item-wrapper .item-content {
    padding: 20px 20px 15px;
  }
}
.cid-udqESUHsB5 .item .item-wrapper .item-content .card-title {
  margin-bottom: 0;
}
.cid-udqESUHsB5 .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  min-width: 45px;
  border: 1px solid #f24d4a;
  font-size: 16px;
  color: #f24d4a;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin-left: 20px;
}
.cid-udqESUHsB5 .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont:hover,
.cid-udqESUHsB5 .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont:focus {
  opacity: .7;
}
.cid-udqESUHsB5 .mbr-section-title {
  color: #f24d4a;
  text-align: center;
}
.cid-udqESUHsB5 .card-title {
  color: #f24d4a;
}
.cid-udqETlsfQ9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background1.jpg");
}
.cid-udqETlsfQ9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqETlsfQ9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqETlsfQ9 .items-wrapper {
  margin: 0 -5px;
}
.cid-udqETlsfQ9 .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-udqETlsfQ9 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-udqETlsfQ9 .item {
  padding: 0 5px;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .cid-udqETlsfQ9 .item {
    margin-bottom: 16px;
  }
  .cid-udqETlsfQ9 .item:last-child {
    margin-bottom: 0;
  }
}
.cid-udqETlsfQ9 .item .item-wrapper {
  height: 100%;
  background-color: #f24d4a;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-udqETlsfQ9 .item .item-wrapper {
    padding: 24px;
  }
}
.cid-udqETlsfQ9 .item .item-wrapper .card-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-udqETlsfQ9 .item .item-wrapper .card-box .card-title {
  width: 100%;
  margin-bottom: 230px;
}
@media (max-width: 992px) {
  .cid-udqETlsfQ9 .item .item-wrapper .card-box .card-title {
    margin-bottom: 100px;
  }
}
.cid-udqETlsfQ9 .item .item-wrapper .card-box .mbr-section-btn {
  width: 100%;
}
.cid-udqETlsfQ9 .item .item-wrapper .card-box .mbr-section-btn .btn {
  width: 100%;
  padding: 32px 40px;
  margin-bottom: 0;
  margin-top: 0;
}
@media (max-width: 992px) {
  .cid-udqETlsfQ9 .item .item-wrapper .card-box .mbr-section-btn .btn {
    padding: 22px 40px;
  }
}
.cid-udqETlsfQ9 .mbr-section-title {
  color: #f24d4a;
  text-align: center;
}
.cid-udqETlsfQ9 .card-title {
  color: #ffffff;
}
.cid-udqETJczAr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background1.jpg");
}
.cid-udqETJczAr .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqETJczAr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqETJczAr .items-wrapper {
  margin: 0 -5px;
}
.cid-udqETJczAr .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-udqETJczAr .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-udqETJczAr .item {
  padding: 0 5px;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .cid-udqETJczAr .item {
    margin-bottom: 16px;
  }
  .cid-udqETJczAr .item:last-child {
    margin-bottom: 0;
  }
}
.cid-udqETJczAr .item:hover .item-wrapper .item-img img,
.cid-udqETJczAr .item:focus .item-wrapper .item-img img {
  transform: scale(1.05);
}
.cid-udqETJczAr .item .item-wrapper {
  height: 100%;
  border: 5px solid #ffffff;
  background-color: #ffffff;
}
.cid-udqETJczAr .item .item-wrapper .item-content {
  padding: 32px 32px 0;
}
@media (max-width: 992px) {
  .cid-udqETJczAr .item .item-wrapper .item-content {
    padding: 24px 24px 0;
  }
}
.cid-udqETJczAr .item .item-wrapper .item-content .card-title {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-udqETJczAr .item .item-wrapper .item-content .card-title {
    margin-bottom: 40px;
  }
}
.cid-udqETJczAr .item .item-wrapper .item-content .number-wrapper {
  margin-bottom: -2.5rem;
}
.cid-udqETJczAr .item .item-wrapper .item-content .number-wrapper .card-number {
  width: 100px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}
.cid-udqETJczAr .item .item-wrapper .item-img {
  overflow: hidden;
  border-radius: 26px;
}
.cid-udqETJczAr .item .item-wrapper .item-img img {
  height: 290px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-udqETJczAr .mbr-section-title {
  color: #f24d4a;
  text-align: center;
}
.cid-udqETJczAr .card-title {
  color: #f24d4a;
  text-align: center;
}
.cid-udqETJczAr .card-number,
.cid-udqETJczAr .number-wrapper {
  color: #f24d4a;
  text-align: center;
}
.cid-udqEU8hzka {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background1.jpg");
}
.cid-udqEU8hzka .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqEU8hzka .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqEU8hzka .items-wrapper {
  justify-content: space-between;
  margin: 0 -5px;
}
.cid-udqEU8hzka .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-udqEU8hzka .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-udqEU8hzka .item {
  padding: 0 5px;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-udqEU8hzka .item {
    margin-bottom: 16px;
  }
}
.cid-udqEU8hzka .item:hover .item-wrapper .item-img::before,
.cid-udqEU8hzka .item:focus .item-wrapper .item-img::before {
  opacity: .4;
}
.cid-udqEU8hzka .item:nth-child(2n) .item-wrapper {
  padding-right: 0;
  padding-left: 54px;
}
@media (max-width: 992px) {
  .cid-udqEU8hzka .item:nth-child(2n) .item-wrapper {
    padding: 0;
  }
}
.cid-udqEU8hzka .item .item-wrapper {
  padding-right: 54px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-udqEU8hzka .item .item-wrapper {
    padding: 0;
  }
}
.cid-udqEU8hzka .item .item-wrapper .item-img {
  position: relative;
  min-height: 400px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
}
.cid-udqEU8hzka .item .item-wrapper .item-img .image-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-udqEU8hzka .item .item-wrapper .item-img .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-udqEU8hzka .item .item-wrapper .item-img .image-wrap img {
    transform: none;
  }
}
.cid-udqEU8hzka .item .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: .3;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  z-index: 1;
}
.cid-udqEU8hzka .item .item-wrapper .item-img .item-content {
  padding: 32px;
  position: relative;
  z-index: 2;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-udqEU8hzka .item .item-wrapper .item-img .item-content {
    padding: 24px;
  }
}
.cid-udqEU8hzka .item .item-wrapper .item-img .item-content .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  min-width: 45px;
  border: 1px solid #ffffff;
  font-size: 16px;
  color: #ffffff;
  border-radius: 100%;
  margin-bottom: 16px;
}
.cid-udqEU8hzka .item .item-wrapper .item-img .item-content .card-title {
  margin-bottom: 0;
}
.cid-udqEU8hzka .card {
  justify-content: space-between;
}
.cid-udqEU8hzka .item-menu-overlay .btn-wrapper {
  z-index: 100;
}
.cid-udqEU8hzka .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-udqEU8hzka .card-title {
  color: #ffffff;
}
.cid-udqEUGjn67 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background1.jpg");
}
.cid-udqEUGjn67 .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqEUGjn67 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqEUGjn67 .items-wrapper {
  margin: 0 -5px;
}
.cid-udqEUGjn67 .items-wrapper .item {
  padding: 0 5px;
}
@media (max-width: 992px) {
  .cid-udqEUGjn67 .items-wrapper .item {
    margin-bottom: 16px;
  }
  .cid-udqEUGjn67 .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-udqEUGjn67 .item-wrapper {
  height: 100%;
  padding: 5px;
  background-color: #ffffff;
}
.cid-udqEUGjn67 .item-wrapper .card-box {
  height: 100%;
  padding: 42px;
  border: 1px dashed #f24d4a;
  border-radius: 26px !important;
}
@media (max-width: 992px) {
  .cid-udqEUGjn67 .item-wrapper .card-box {
    padding: 24px;
    height: auto;
  }
}
.cid-udqEUGjn67 .item-wrapper .card-box .card-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-udqEUGjn67 .item-wrapper .card-box .card-title {
    margin-bottom: 40px;
  }
}
.cid-udqEUGjn67 .item-wrapper .card-box .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-udqEUGjn67 .item-wrapper .card-box .list .item-wrap {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid #f24d4a;
}
.cid-udqEUGjn67 .item-wrapper .card-box .list .item-wrap:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.cid-udqEUGjn67 .card-title {
  color: #f24d4a;
}
.cid-udqEUGjn67 .list {
  color: #f24d4a;
}
.cid-udqEV1Mn7s {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background1.jpg");
}
.cid-udqEV1Mn7s .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqEV1Mn7s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqEV1Mn7s .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-udqEV1Mn7s .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-udqEV1Mn7s .item {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-udqEV1Mn7s .item {
    margin-bottom: 40px;
  }
}
.cid-udqEV1Mn7s .item .item-wrapper .icon-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-udqEV1Mn7s .item .item-wrapper .icon-wrapper {
    margin-bottom: 20px;
  }
}
.cid-udqEV1Mn7s .item .item-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  min-width: 80px;
  font-size: 36px;
  color: #f24d4a;
  background-color: #ffffff;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-udqEV1Mn7s .item .item-wrapper .icon-wrapper .mbr-iconfont {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
}
.cid-udqEV1Mn7s .item .item-wrapper .card-title {
  margin-bottom: 20px;
}
.cid-udqEV1Mn7s .item .item-wrapper .text-wrapper .card-text {
  display: inline-flex;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-udqEV1Mn7s .item .item-wrapper .text-wrapper .card-text {
    width: 100%;
  }
}
.cid-udqEV1Mn7s .mbr-section-title {
  color: #f24d4a;
  text-align: center;
}
.cid-udqEV1Mn7s .card-title {
  color: #f24d4a;
}
.cid-udqEV1Mn7s .card-text,
.cid-udqEV1Mn7s .text-wrapper {
  color: #f24d4a;
  text-align: center;
}
.cid-udqEV1Mn7s .card-title,
.cid-udqEV1Mn7s .icon-wrapper {
  text-align: center;
}
.cid-udqEVpP0Iv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background2.jpg");
}
.cid-udqEVpP0Iv .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqEVpP0Iv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqEVpP0Iv .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-udqEVpP0Iv .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-udqEVpP0Iv .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 35%;
  margin-bottom: 60px;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-udqEVpP0Iv .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-udqEVpP0Iv .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-udqEVpP0Iv .mbr-text,
.cid-udqEVpP0Iv .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-udqEVpP0Iv .mbr-section-title,
.cid-udqEVpP0Iv .mbr-section-btn {
  text-align: center;
}
.cid-udqEVN63vF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background1.jpg");
}
.cid-udqEVN63vF .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqEVN63vF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqEVN63vF .items-wrapper {
  margin: 0 -5px;
}
.cid-udqEVN63vF .items-wrapper .card {
  padding: 0 5px;
}
@media (max-width: 992px) {
  .cid-udqEVN63vF .items-wrapper .card {
    margin-bottom: 16px;
  }
  .cid-udqEVN63vF .items-wrapper .card:last-child {
    margin-bottom: 0;
  }
}
.cid-udqEVN63vF .image-wrapper {
  height: 100%;
}
.cid-udqEVN63vF .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-udqEVN63vF .image-wrapper img {
    height: 350px;
  }
}
.cid-udqEVN63vF .content-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 42px;
  border-radius: 30px;
  background-color: #f24d4a;
}
@media (max-width: 992px) {
  .cid-udqEVN63vF .content-wrapper {
    padding: 24px;
    height: auto;
  }
}
.cid-udqEVN63vF .content-wrapper .mbr-section-title {
  width: 100%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-udqEVN63vF .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-udqEVN63vF .content-wrapper .mbr-text {
  width: 100%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-udqEVN63vF .content-wrapper .mbr-text {
    margin-bottom: 30px;
  }
}
.cid-udqEVN63vF .mbr-section-title {
  color: #ffffff;
}
.cid-udqEVN63vF .mbr-text {
  color: #ffffff;
}
.cid-udqEW7SqTB {
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background3.jpg");
}
.cid-udqEW7SqTB .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqEW7SqTB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqEW7SqTB .image-wrap {
  height: 650px;
}
@media (max-width: 992px) {
  .cid-udqEW7SqTB .image-wrap {
    height: 350px;
  }
}
.cid-udqEWv0Pr4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background1.jpg");
}
.cid-udqEWv0Pr4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqEWv0Pr4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqEWv0Pr4 .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-udqEWv0Pr4 .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-udqEWv0Pr4 .content-wrapper .video-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.cid-udqEWv0Pr4 .content-wrapper .video-wrap .decor {
  position: absolute;
  top: -1rem;
  border: 1px solid #ffffff;
  width: 52%;
  height: 100%;
  border-radius: 30px;
  transform: rotate(4deg);
}
@media (max-width: 1440px) {
  .cid-udqEWv0Pr4 .content-wrapper .video-wrap .decor {
    width: 67%;
  }
}
@media (max-width: 992px) {
  .cid-udqEWv0Pr4 .content-wrapper .video-wrap .decor {
    display: none;
  }
}
.cid-udqEWv0Pr4 .content-wrapper .video-wrap .decor::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: .3;
  background-color: #ffffff;
  border-radius: 30px;
}
.cid-udqEWv0Pr4 .box {
  margin: 0 auto;
  width: 50%;
}
@media (max-width: 1440px) {
  .cid-udqEWv0Pr4 .box {
    width: 65%;
  }
}
@media (max-width: 992px) {
  .cid-udqEWv0Pr4 .box {
    width: 100%;
  }
}
.cid-udqEWv0Pr4 .box .mbr-media {
  position: relative;
  overflow: hidden;
  height: 650px;
}
@media (max-width: 992px) {
  .cid-udqEWv0Pr4 .box .mbr-media {
    height: 350px;
  }
}
.cid-udqEWv0Pr4 .box .mbr-media img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 3rem;
}
@media (max-width: 992px) {
  .cid-udqEWv0Pr4 .box .mbr-media img {
    border-radius: 2rem;
  }
}
.cid-udqEWv0Pr4 .box .mbr-media .mbr-iconfont {
  font-size: 32px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  margin-left: 5px;
  z-index: 1;
}
.cid-udqEWv0Pr4 .mbr-media {
  position: relative;
}
.cid-udqEWv0Pr4 .mbr-media img {
  object-fit: cover;
}
.cid-udqEWv0Pr4 a:hover {
  background-image: none !important;
}
.cid-udqEWv0Pr4 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 80px;
  width: 80px;
  border-radius: 100%;
  background-color: #f24d4a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  cursor: pointer;
}
.cid-udqEWv0Pr4 .icon-wrap:hover,
.cid-udqEWv0Pr4 .icon-wrap:focus {
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-udqEWv0Pr4 .icon-wrap {
    height: 60px;
    width: 60px;
  }
}
.cid-udqEWv0Pr4 .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
}
.cid-udqEWv0Pr4 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-udqEWv0Pr4 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-udqEWv0Pr4 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-udqEWv0Pr4 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 1.5rem;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-udqEWv0Pr4 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-udqEWv0Pr4 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-udqEWRaEx9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background1.jpg");
}
.cid-udqEWRaEx9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqEWRaEx9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqEWRaEx9 .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-udqEWRaEx9 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-udqEWRaEx9 .items-wrapper {
  margin: 0 -5px;
}
.cid-udqEWRaEx9 .items-wrapper .card {
  padding: 0 5px;
}
@media (max-width: 992px) {
  .cid-udqEWRaEx9 .items-wrapper .card {
    margin-bottom: 16px;
  }
  .cid-udqEWRaEx9 .items-wrapper .card:last-child {
    margin-bottom: 0;
  }
}
.cid-udqEWRaEx9 .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 42px;
  border-radius: 30px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-udqEWRaEx9 .content-wrapper {
    padding: 24px;
    height: auto;
  }
}
.cid-udqEWRaEx9 .content-wrapper .mbr-section-subtitle {
  width: 100%;
  margin-bottom: 120px;
}
@media (max-width: 1200px) {
  .cid-udqEWRaEx9 .content-wrapper .mbr-section-subtitle {
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .cid-udqEWRaEx9 .content-wrapper .mbr-section-subtitle {
    margin-bottom: 40px;
  }
}
.cid-udqEWRaEx9 .content-wrapper .contacts-wrapper {
  width: 100%;
}
.cid-udqEWRaEx9 .content-wrapper .contacts-wrapper .item:first-child .item-wrapper .card-box {
  padding-top: 0;
  border-top: 0;
  margin-top: 0;
}
.cid-udqEWRaEx9 .content-wrapper .contacts-wrapper .item .item-wrapper .card-box {
  display: flex;
  justify-content: space-between;
  border-radius: 0 !important;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f24d4a;
}
@media (max-width: 992px) {
  .cid-udqEWRaEx9 .content-wrapper .contacts-wrapper .item .item-wrapper .card-box {
    display: block;
  }
}
.cid-udqEWRaEx9 .content-wrapper .contacts-wrapper .item .item-wrapper .card-box .card-desc {
  width: 50%;
  padding-right: 16px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-udqEWRaEx9 .content-wrapper .contacts-wrapper .item .item-wrapper .card-box .card-desc {
    width: 100%;
    margin-bottom: 6px;
    padding-right: 0;
  }
}
.cid-udqEWRaEx9 .content-wrapper .contacts-wrapper .item .item-wrapper .card-box .card-text {
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-udqEWRaEx9 .content-wrapper .contacts-wrapper .item .item-wrapper .card-box .card-text {
    width: 100%;
  }
}
.cid-udqEWRaEx9 .map-wrapper {
  height: 100%;
}
.cid-udqEWRaEx9 .map-wrapper .google-map {
  height: 100%;
}
.cid-udqEWRaEx9 .map-wrapper .google-map iframe {
  height: 100%;
}
@media (max-width: 992px) {
  .cid-udqEWRaEx9 .map-wrapper .google-map iframe {
    height: 350px;
  }
}
.cid-udqEWRaEx9 .item-menu-overlay .btn-wrapper {
  margin-top: -3%;
  margin-right: 24%;
}
.cid-udqEWRaEx9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-udqEWRaEx9 .mbr-section-subtitle {
  color: #f24d4a;
}
.cid-udqEWRaEx9 .card-desc {
  color: #f24d4a;
}
.cid-udqEWRaEx9 .card-text {
  color: #f24d4a;
}
.cid-udqEXnIHSq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background1.jpg");
}
.cid-udqEXnIHSq .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqEXnIHSq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqEXnIHSq .items-wrapper {
  margin: 0 -5px;
}
.cid-udqEXnIHSq .items-wrapper .card {
  padding: 0 5px;
}
@media (max-width: 992px) {
  .cid-udqEXnIHSq .items-wrapper .card {
    margin-bottom: 16px;
  }
  .cid-udqEXnIHSq .items-wrapper .card:last-child {
    margin-bottom: 0;
  }
}
.cid-udqEXnIHSq .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 42px;
  border-radius: 30px;
  background-color: #f24d4a;
}
@media (max-width: 992px) {
  .cid-udqEXnIHSq .content-wrapper {
    padding: 24px;
    height: auto;
  }
}
.cid-udqEXnIHSq .content-wrapper .mbr-section-title {
  width: 100%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-udqEXnIHSq .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-udqEXnIHSq .content-wrapper .contacts-wrapper {
  width: 100%;
}
.cid-udqEXnIHSq .content-wrapper .contacts-wrapper .item:first-child .item-wrapper .card-box {
  padding-top: 0;
  border-top: 0;
  margin-top: 0;
}
.cid-udqEXnIHSq .content-wrapper .contacts-wrapper .item .item-wrapper .card-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0 !important;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #ffd9c8;
}
@media (max-width: 992px) {
  .cid-udqEXnIHSq .content-wrapper .contacts-wrapper .item .item-wrapper .card-box {
    display: block;
  }
}
.cid-udqEXnIHSq .content-wrapper .contacts-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-udqEXnIHSq .content-wrapper .contacts-wrapper .item .item-wrapper .card-box .card-title {
    margin-bottom: 6px;
  }
}
.cid-udqEXnIHSq .content-wrapper .contacts-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  padding: 8px 20px;
  margin-bottom: 0;
}
.cid-udqEXnIHSq .content-wrapper .mbr-section-subtitle {
  width: 100%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-udqEXnIHSq .content-wrapper .mbr-section-subtitle {
    margin-bottom: 40px;
  }
}
.cid-udqEXnIHSq .content-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-udqEXnIHSq .content-wrapper .dragArea.row .form-group {
  margin-bottom: 16px !important;
}
.cid-udqEXnIHSq .content-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 0;
  padding: 5px 0;
}
.cid-udqEXnIHSq .content-wrapper .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 28px;
  border-radius: 60px !important;
  border: 1px solid #ffd9c8 !important;
  box-shadow: none;
  background-color: #ff7470;
}
@media (max-width: 992px) {
  .cid-udqEXnIHSq .content-wrapper .dragArea.row .form-group .form-control {
    padding: 22px;
  }
}
.cid-udqEXnIHSq .content-wrapper .dragArea.row .form-group .form-control:hover,
.cid-udqEXnIHSq .content-wrapper .dragArea.row .form-group .form-control:focus {
  border: 1px solid #ffd9c8 !important;
}
.cid-udqEXnIHSq .content-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #ffd9c8;
  opacity: .7;
}
.cid-udqEXnIHSq .content-wrapper .dragArea.row .form-group textarea {
  min-height: 150px;
}
.cid-udqEXnIHSq .content-wrapper .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-udqEXnIHSq .content-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #ffd9c8;
  border-color: #ffd9c8;
  border-radius: 0;
}
.cid-udqEXnIHSq .content-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-udqEXnIHSq .content-wrapper .dragArea.row .mbr-section-btn .btn {
  width: 100%;
  margin-top: 0;
}
.cid-udqEXnIHSq .item-menu-overlay .btn-wrapper {
  margin-top: -3%;
  margin-right: 24%;
}
.cid-udqEXnIHSq .mbr-section-title {
  color: #ffffff;
}
.cid-udqEXnIHSq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-udqEXnIHSq .card-title {
  color: #ffffff;
}
.cid-udqEXJ2Qvh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background1.jpg");
}
.cid-udqEXJ2Qvh .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqEXJ2Qvh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqEXJ2Qvh .items-wrapper {
  justify-content: space-between;
  margin: 0 -5px;
}
.cid-udqEXJ2Qvh .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-udqEXJ2Qvh .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-udqEXJ2Qvh .panel-group .card {
  position: relative;
  padding: 32px;
  margin-top: 8px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-udqEXJ2Qvh .panel-group .card {
    padding: 24px;
    margin-top: 16px;
  }
}
.cid-udqEXJ2Qvh .panel-group .card:first-child {
  margin-top: 0;
}
.cid-udqEXJ2Qvh .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-udqEXJ2Qvh .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-udqEXJ2Qvh .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-udqEXJ2Qvh .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-udqEXJ2Qvh .panel-group .card .card-header .panel-title .icon-wrapper {
    margin-left: 16px;
  }
}
.cid-udqEXJ2Qvh .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 24px;
  transition: all 0.3s ease-in-out;
  color: #f24d4a;
}
.cid-udqEXJ2Qvh .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-udqEXJ2Qvh .panel-group .card .card-header .panel-title:hover .icon-wrapper,
.cid-udqEXJ2Qvh .panel-group .card .card-header .panel-title:focus .icon-wrapper {
  opacity: .3;
}
.cid-udqEXJ2Qvh .panel-group .card .panel-collapse .panel-body {
  margin: 32px 0 0 0;
}
@media (max-width: 992px) {
  .cid-udqEXJ2Qvh .panel-group .card .panel-collapse .panel-body {
    margin: 24px 0 0 0;
  }
}
.cid-udqEXJ2Qvh .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-udqEXJ2Qvh .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-udqEXJ2Qvh .card {
  justify-content: space-between;
}
.cid-udqEXJ2Qvh .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-udqEXJ2Qvh .panel-title-edit {
  color: #f24d4a;
}
.cid-udqEXJ2Qvh .panel-text {
  color: #f24d4a;
}
.cid-udqEY5YR6M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background1.jpg");
}
.cid-udqEY5YR6M .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqEY5YR6M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqEY5YR6M .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-udqEY5YR6M .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-udqEY5YR6M .tabs-wrapper {
  margin-bottom: 40px;
}
.cid-udqEY5YR6M .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-udqEY5YR6M .tabs-wrapper .nav.nav-tabs .nav-item {
  position: relative;
  padding: 0;
  border-radius: 60px;
  border: 1px solid #ffffff;
  display: block;
  margin: 8px 16px;
}
.cid-udqEY5YR6M .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  position: relative;
  z-index: 1;
  color: #ffffff;
  padding: 24px 40px;
  border: none;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-udqEY5YR6M .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
    padding: 20px 40px;
  }
}
.cid-udqEY5YR6M .tabs-wrapper .nav.nav-tabs .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  opacity: .3;
  border-radius: 60px;
  pointer-events: none;
  z-index: -1;
}
.cid-udqEY5YR6M .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  color: #f24d4a;
}
.cid-udqEY5YR6M .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active::before {
  opacity: 1;
}
.cid-udqEY5YR6M .tab-content .tab-pane .content-wrap .image-wrapper {
  margin-bottom: 32px;
}
.cid-udqEY5YR6M .tab-content .tab-pane .content-wrap .image-wrapper img {
  display: inline-flex;
  height: 400px;
  width: 400px;
  object-fit: cover;
  border-radius: 100% !important;
}
.cid-udqEY5YR6M .tab-content .tab-pane .content-wrap .text-wrapper .item-title {
  margin-bottom: 32px;
}
.cid-udqEY5YR6M .tab-content .tab-pane .content-wrap .text-wrapper .text-wrap .item-text {
  display: inline-flex;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-udqEY5YR6M .tab-content .tab-pane .content-wrap .text-wrapper .text-wrap .item-text {
    width: 100%;
  }
}
.cid-udqEY5YR6M .mbr-section-title {
  color: #ffffff;
}
.cid-udqEY5YR6M .item-title {
  color: #ffffff;
}
.cid-udqEY5YR6M .item-text,
.cid-udqEY5YR6M .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-udqEY5YR6M .mbr-section-title,
.cid-udqEY5YR6M .tabs-wrapper {
  text-align: center;
}
.cid-udqEY5YR6M .item-title,
.cid-udqEY5YR6M .image-wrapper {
  text-align: center;
}
.cid-udqEYxTHTd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background1.jpg");
}
.cid-udqEYxTHTd .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqEYxTHTd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqEYxTHTd .items-wrapper {
  margin: 0 -5px;
}
.cid-udqEYxTHTd .item {
  padding: 0 5px;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .cid-udqEYxTHTd .item {
    margin-bottom: 16px;
  }
  .cid-udqEYxTHTd .item:last-child {
    margin-bottom: 0;
  }
}
.cid-udqEYxTHTd .item:nth-child(2n) .item-wrapper .item-img img {
  transform: none;
}
.cid-udqEYxTHTd .item .item-wrapper {
  height: 100%;
}
.cid-udqEYxTHTd .item .item-wrapper .item-img img {
  height: 350px;
  object-fit: cover;
  transform: rotate(8deg);
}
@media (max-width: 992px) {
  .cid-udqEYxTHTd .item .item-wrapper .item-img img {
    transform: none;
  }
}
.cid-udqEYTJM9h {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background1.jpg");
}
.cid-udqEYTJM9h .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqEYTJM9h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqEYTJM9h .content-head {
  max-width: 800px;
}
.cid-udqEYTJM9h .item {
  color: #f24d4a;
  min-height: 90px;
}
@media (max-width: 768px) {
  .cid-udqEYTJM9h .item {
    min-height: 45px;
  }
}
.cid-udqEYTJM9h .border-wrap {
  height: 2px;
  background-color: #f24d4a;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .cid-udqEYTJM9h .border-wrap {
    margin-top: 40px;
  }
}
.cid-udqEZgslWN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background1.jpg");
}
.cid-udqEZgslWN .mbr-overlay {
  background: #e2241f;
  opacity: 0.8;
}
.cid-udqEZgslWN .content-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
.cid-udqEZgslWN .content-wrapper .decor {
  position: absolute;
  top: -1rem;
  border: 1px solid #ffffff;
  width: 52%;
  height: 100%;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-udqEZgslWN .content-wrapper .decor {
    display: none;
  }
}
.cid-udqEZgslWN .content-wrapper .decor::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: .3;
  background-color: #ffffff;
  border-radius: 30px;
}
.cid-udqEZgslWN .content-wrapper .decor_1 {
  transform: rotate(6deg);
}
.cid-udqEZgslWN .content-wrapper .decor_2 {
  transform: rotate(-6deg);
}
.cid-udqEZgslWN .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-udqEZgslWN .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-udqEZgslWN .embla__slide .slide-content {
  width: 100%;
  background-color: #ffffff;
  padding: 5px;
  min-height: 560px;
}
@media (max-width: 768px) {
  .cid-udqEZgslWN .embla__slide .slide-content {
    min-height: auto;
  }
}
.cid-udqEZgslWN .embla__slide .slide-content .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border: 1px dashed #f24d4a;
  padding: 56px;
  border-radius: 26px !important;
}
@media (max-width: 992px) {
  .cid-udqEZgslWN .embla__slide .slide-content .item-wrapper {
    padding: 24px;
  }
}
.cid-udqEZgslWN .embla__slide .slide-content .item-wrapper .card-box .name-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .cid-udqEZgslWN .embla__slide .slide-content .item-wrapper .card-box .name-wrapper {
    margin-bottom: 16px;
  }
}
.cid-udqEZgslWN .embla__slide .slide-content .item-wrapper .card-box .name-wrapper .name-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-udqEZgslWN .embla__slide .slide-content .item-wrapper .card-box .name-wrapper .name-wrap {
    display: block;
  }
}
.cid-udqEZgslWN .embla__slide .slide-content .item-wrapper .card-box .name-wrapper .name-wrap .letter-wrap {
  width: 92px;
  height: 92px;
  min-width: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #feeeed;
  margin-right: 18px;
}
@media (max-width: 992px) {
  .cid-udqEZgslWN .embla__slide .slide-content .item-wrapper .card-box .name-wrapper .name-wrap .letter-wrap {
    width: 64px;
    height: 64px;
    min-width: 64px;
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.cid-udqEZgslWN .embla__slide .slide-content .item-wrapper .card-box .name-wrapper .name-wrap .letter-wrap .item-letter {
  margin-bottom: 0;
}
.cid-udqEZgslWN .embla__slide .slide-content .item-wrapper .card-box .name-wrapper .name-wrap .item-name {
  margin-bottom: 0;
}
.cid-udqEZgslWN .embla__slide .slide-content .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-udqEZgslWN .embla__slide .slide-content .item-wrapper .item-date {
  margin-top: 32px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-udqEZgslWN .embla__slide .slide-content .item-wrapper .item-date {
    margin-top: 16px;
  }
}
.cid-udqEZgslWN .embla__button--next,
.cid-udqEZgslWN .embla__button--prev {
  display: flex;
}
.cid-udqEZgslWN .embla__button {
  top: 50%;
  width: 80px;
  height: 80px;
  font-size: 22px;
  background-color: #ffffff !important;
  color: #f24d4a !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-udqEZgslWN .embla__button {
    top: auto;
    bottom: 0;
    width: 60px;
    height: 60px;
  }
}
.cid-udqEZgslWN .embla__button:hover {
  opacity: .7;
}
.cid-udqEZgslWN .embla__button.embla__button--prev {
  left: 0;
}
.cid-udqEZgslWN .embla__button.embla__button--next {
  right: 0;
}
.cid-udqEZgslWN .embla {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-udqEZgslWN .embla {
    display: block;
    padding-bottom: 6rem;
  }
}
.cid-udqEZgslWN .embla__viewport {
  overflow: hidden;
  width: 50%;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-udqEZgslWN .embla__viewport {
    width: 100%;
  }
}
.cid-udqEZgslWN .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-udqEZgslWN .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-udqEZgslWN .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-udqEZgslWN .item-letter {
  color: #f24d4a;
}
.cid-udqEZgslWN .item-name {
  color: #f24d4a;
}
.cid-udqEZgslWN .item-text {
  color: #f24d4a;
}
.cid-udqEZgslWN .item-date {
  color: #f24d4a;
}
.cid-udqEZCqMU1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background1.jpg");
}
.cid-udqEZCqMU1 .mbr-overlay {
  background: #e2241f;
  opacity: 0.8;
}
.cid-udqEZCqMU1 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-udqEZCqMU1 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-udqEZCqMU1 .embla__slide .slide-content {
  width: 100%;
}
.cid-udqEZCqMU1 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 650px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-udqEZCqMU1 .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-udqEZCqMU1 .embla__button--next,
.cid-udqEZCqMU1 .embla__button--prev {
  display: flex;
}
.cid-udqEZCqMU1 .embla__button {
  top: 50%;
  width: 80px;
  height: 80px;
  font-size: 22px;
  background-color: #ffffff !important;
  color: #f24d4a !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-udqEZCqMU1 .embla__button {
    top: auto;
    bottom: 0;
    width: 60px;
    height: 60px;
  }
}
.cid-udqEZCqMU1 .embla__button:hover {
  opacity: .7;
}
.cid-udqEZCqMU1 .embla__button.embla__button--prev {
  left: 15%;
}
@media (max-width: 1200px) {
  .cid-udqEZCqMU1 .embla__button.embla__button--prev {
    left: 0;
  }
}
.cid-udqEZCqMU1 .embla__button.embla__button--next {
  right: 15%;
}
@media (max-width: 1200px) {
  .cid-udqEZCqMU1 .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-udqEZCqMU1 .embla {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-udqEZCqMU1 .embla {
    display: block;
    padding-bottom: 6rem;
  }
}
.cid-udqEZCqMU1 .embla__viewport {
  overflow: hidden;
  width: 50%;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-udqEZCqMU1 .embla__viewport {
    width: 100%;
  }
}
.cid-udqEZCqMU1 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-udqEZCqMU1 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-udqEZCqMU1 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-udqEZYHeKm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background1.jpg");
}
.cid-udqEZYHeKm .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqEZYHeKm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqEZYHeKm .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-udqEZYHeKm .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-udqEZYHeKm .items-wrapper {
  margin: 0 -5px;
}
.cid-udqEZYHeKm .item {
  padding: 0 5px;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .cid-udqEZYHeKm .item {
    margin-bottom: 16px;
  }
  .cid-udqEZYHeKm .item:last-child {
    margin-bottom: 0;
  }
}
.cid-udqEZYHeKm .item .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px;
  border: 1px solid #ffffff;
}
@media (max-width: 1200px) {
  .cid-udqEZYHeKm .item .item-wrapper {
    padding: 24px;
  }
}
.cid-udqEZYHeKm .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  opacity: .3;
  background-color: #ffffff;
  pointer-events: none;
}
.cid-udqEZYHeKm .item .item-wrapper .card-box {
  position: relative;
}
.cid-udqEZYHeKm .item .item-wrapper .card-box .card-title {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 20px;
}
.cid-udqEZYHeKm .item .item-wrapper .card-box .card-price {
  padding-bottom: 16px;
  border-bottom: 1px dashed #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-udqEZYHeKm .item .item-wrapper .card-box .card-price {
    margin-bottom: 24px;
  }
}
.cid-udqEZYHeKm .item .item-wrapper .card-box .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-udqEZYHeKm .item .item-wrapper .card-box .list .item-wrap {
  padding-bottom: 8px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 16px;
}
.cid-udqEZYHeKm .item .item-wrapper .card-box .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-udqEZYHeKm .item .item-wrapper .mbr-section-btn {
  width: 100%;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-udqEZYHeKm .item .item-wrapper .mbr-section-btn {
    margin-top: 24px;
  }
}
.cid-udqEZYHeKm .item .item-wrapper .mbr-section-btn .btn {
  width: 100%;
  padding: 32px 40px;
  margin-bottom: 0;
  margin-top: 0;
}
@media (max-width: 992px) {
  .cid-udqEZYHeKm .item .item-wrapper .mbr-section-btn .btn {
    padding: 22px 40px;
  }
}
.cid-udqEZYHeKm .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-udqEZYHeKm .card-title {
  color: #ffffff;
  text-align: center;
}
.cid-udqEZYHeKm .card-price {
  color: #ffffff;
  text-align: center;
}
.cid-udqEZYHeKm .list {
  color: #ffffff;
}
.cid-udqB4qgEwT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("https://mobirise.com/extensions/decorm5/assets/images/background1.jpg");
}
.cid-udqB4qgEwT .mbr-fallback-image.disabled {
  display: none;
}
.cid-udqB4qgEwT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udqB4qgEwT .content-wrap {
  justify-content: center;
}
.cid-udqB4qgEwT .card {
  justify-content: center;
}
.cid-udqB4qgEwT .title-wrapper .mbr-section-title {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-udqB4qgEwT .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
    text-align: center;
  }
}
.cid-udqB4qgEwT .nav-wrapper {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-udqB4qgEwT .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-udqB4qgEwT .nav-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-udqB4qgEwT .nav-wrapper .list .item-wrap {
  padding: 8px 16px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-udqB4qgEwT .nav-wrapper .list .item-wrap:hover,
.cid-udqB4qgEwT .nav-wrapper .list .item-wrap:focus {
  opacity: .4;
}
.cid-udqB4qgEwT .contacts-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 72px;
}
@media (max-width: 1440px) {
  .cid-udqB4qgEwT .contacts-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-udqB4qgEwT .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-udqB4qgEwT .contacts-wrapper .social-wrapper {
  margin-right: 16px;
}
@media (max-width: 1440px) {
  .cid-udqB4qgEwT .contacts-wrapper .social-wrapper {
    margin-right: 0;
    margin-bottom: 16px;
    text-align: right;
  }
}
@media (max-width: 992px) {
  .cid-udqB4qgEwT .contacts-wrapper .social-wrapper {
    text-align: center;
  }
}
.cid-udqB4qgEwT .contacts-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-udqB4qgEwT .contacts-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-udqB4qgEwT .contacts-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-udqB4qgEwT .contacts-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  opacity: .7;
}
.cid-udqB4qgEwT .contacts-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  color: #ffd9c8;
  background-color: #f24d4a;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 4px 4px;
}
.cid-udqB4qgEwT .contacts-wrapper .phone-wrapper .mbr-phone {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1440px) {
  .cid-udqB4qgEwT .contacts-wrapper .phone-wrapper .mbr-phone {
    text-align: right;
  }
}
@media (max-width: 992px) {
  .cid-udqB4qgEwT .contacts-wrapper .phone-wrapper .mbr-phone {
    text-align: center;
  }
}
.cid-udqB4qgEwT .contacts-wrapper .phone-wrapper .mbr-phone:hover,
.cid-udqB4qgEwT .contacts-wrapper .phone-wrapper .mbr-phone:hover {
  opacity: .4;
}
.cid-udqB4qgEwT .copy-wrapper .mbr-copy {
  margin-bottom: 0;
}
.cid-udqB4qgEwT .mbr-section-title {
  color: #f24d4a;
}
.cid-udqB4qgEwT .list,
.cid-udqB4qgEwT .nav-wrapper {
  color: #f24d4a;
  text-align: center;
}
.cid-udqB4qgEwT .mbr-phone {
  color: #f24d4a;
}
.cid-udqB4qgEwT .mbr-copy {
  color: #f24d4a;
  text-align: center;
}
