body {
  font-family: 'Inter', sans-serif;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 4.4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.5rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.25;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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: 3.52rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.08rem;
    font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.25 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #4056d5 !important;
}
.bg-success {
  background-color: #64ff54 !important;
}
.bg-info {
  background-color: #56f1ff !important;
}
.bg-warning {
  background-color: #fdff54 !important;
}
.bg-danger {
  background-color: #fcff1e !important;
}
.btn-primary .btn-overlay {
  background-color: #4f5993 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #4056d5 !important;
  border-color: #4056d5 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #4f5993 !important;
  border-color: #4f5993 !important;
}
.btn-secondary .btn-overlay {
  background-color: #8e9d51 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #bcd948 !important;
  border-color: #bcd948 !important;
  color: #181c06 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #181c06 !important;
  background-color: #8e9d51 !important;
  border-color: #8e9d51 !important;
}
.btn-info .btn-overlay {
  background-color: #48ceda !important;
}
.btn-info,
.btn-info:active {
  background-color: #56f1ff !important;
  border-color: #56f1ff !important;
  color: #004f56 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #004f56 !important;
  background-color: #48ceda !important;
  border-color: #48ceda !important;
}
.btn-success .btn-overlay {
  background-color: #54d947 !important;
}
.btn-success,
.btn-success:active {
  background-color: #64ff54 !important;
  border-color: #64ff54 !important;
  color: #085400 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #085400 !important;
  background-color: #54d947 !important;
  border-color: #54d947 !important;
}
.btn-warning .btn-overlay {
  background-color: #d8d947 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fdff54 !important;
  border-color: #fdff54 !important;
  color: #535400 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #535400 !important;
  background-color: #d8d947 !important;
  border-color: #d8d947 !important;
}
.btn-danger .btn-overlay {
  background-color: #c0c228 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #fcff1e !important;
  border-color: #fcff1e !important;
  color: #1e1e00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #1e1e00 !important;
  background-color: #c0c228 !important;
  border-color: #c0c228 !important;
}
.btn-white .btn-overlay {
  background-color: #e1e1e1 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-black .btn-overlay {
  background-color: #000000 !important;
}
.btn-black,
.btn-black:active {
  background-color: #1b1f0a !important;
  border-color: #1b1f0a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #4056d5;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #22349c !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4056d5 !important;
  border-color: #4056d5 !important;
}
.btn-secondary-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bcd948;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #8da823 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #181c06 !important;
  background-color: #bcd948 !important;
  border-color: #bcd948 !important;
}
.btn-info-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #56f1ff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #00e9fe !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #004f56 !important;
  background-color: #56f1ff !important;
  border-color: #56f1ff !important;
}
.btn-success-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #64ff54;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #18fc00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #085400 !important;
  background-color: #64ff54 !important;
  border-color: #64ff54 !important;
}
.btn-warning-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fdff54;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #f9fc00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #535400 !important;
  background-color: #fdff54 !important;
  border-color: #fdff54 !important;
}
.btn-danger-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fcff1e;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #c4c600 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #1e1e00 !important;
  background-color: #fcff1e !important;
  border-color: #fcff1e !important;
}
.btn-black-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1b1f0a;
}
.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: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #1b1f0a !important;
  border-color: #1b1f0a !important;
}
.btn-white-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: #4056d5 !important;
}
.text-secondary {
  color: #bcd948 !important;
}
.text-success {
  color: #64ff54 !important;
}
.text-info {
  color: #56f1ff !important;
}
.text-warning {
  color: #fdff54 !important;
}
.text-danger {
  color: #fcff1e !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #1B1F0A !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #20308f !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #829b20 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #16ed00 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #00dbef !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #eaed00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #b5b700 !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: #4056d5;
}
.nav-tabs .nav-link:not(.active) {
  color: #1B1F0A;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #56f1ff;
}
.alert-warning {
  background-color: #fdff54;
}
.alert-danger {
  background-color: #fcff1e;
}
.mbr-gallery-filter li.active .btn {
  background-color: #4056d5;
  border-color: #4056d5;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #4056d5;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e7eafa;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #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: #ffffea;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #4056d5 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #4056d5;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4056d5;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #4056d5;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #4056d5;
  border-bottom-color: #4056d5;
}
.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: #4056d5 !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: #bcd948 !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='%234056d5' %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;
}
a:hover {
  background-image: none !important;
}
.container {
  width: 90%;
  max-width: 70rem;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.row {
  margin-left: 0;
  margin-right: 0;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.mbr-section-btn .btn {
  min-width: 100px;
  border-radius: 100vw;
  padding: 1rem 1.5rem;
  line-height: 1.25;
  font-weight: 600 !important;
  box-shadow: none !important;
  border: none !important;
  position: relative;
  overflow: hidden;
}
.mbr-section-btn .btn .mbr-iconfont {
  position: relative;
  z-index: 1000;
}
.mbr-section-btn .btn-transform {
  position: relative;
  overflow: hidden;
  transition: 0.3s all !important;
}
.mbr-section-btn .btn-transform .btn-transform-1 {
  transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: 0.3s all !important;
  animation: btn-move-out 0.3s ease-in-out;
}
.mbr-section-btn .btn-overlay {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  height: 100%;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  transition: 0.3s all !important;
}
.mbr-section-btn .btn {
  transition: 0.3s all !important;
}
.mbr-section-btn .btn:hover .btn-transform .btn-transform-1 {
  animation: btn-move 0.3s ease-in-out;
}
.mbr-section-btn .btn:hover .btn-overlay {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg) !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .mbr-section-btn .btn {
    width: 100%;
    box-shadow: none !important;
  }
}
b {
  font-weight: 600 !important;
}
@keyframes btn-move {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  49% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  51% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
@keyframes btn-move-out {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  49% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  51% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
.cid-t2YNqczNcv {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-t2YNqczNcv nav.navbar {
  position: absolute !important;
}
.cid-t2YNqczNcv .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t2YNqczNcv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-t2YNqczNcv .nav-link {
  position: relative;
}
.cid-t2YNqczNcv .container {
  display: flex;
  margin: auto;
  position: fixed !important;
  left: 0;
  right: 0;
  width: 90%;
  max-width: 61.25rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 24px;
  background-color: #f3f4ef;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (min-width: 992px) {
  .cid-t2YNqczNcv .container {
    flex-wrap: nowrap;
  }
}
.cid-t2YNqczNcv .iconfont-wrapper {
  color: #1b1f0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t2YNqczNcv .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: row;
  max-width: 100%;
  padding: 4px !important;
  border-radius: 100vw;
  transition: .3s all !important;
  min-width: auto;
  background: #f3f4ef !important;
}
.cid-t2YNqczNcv .nav-item:focus,
.cid-t2YNqczNcv .nav-link:focus {
  outline: none;
}
.cid-t2YNqczNcv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t2YNqczNcv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t2YNqczNcv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t2YNqczNcv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t2YNqczNcv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t2YNqczNcv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t2YNqczNcv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-t2YNqczNcv .navbar.opened {
  transition: all 0.3s;
}
.cid-t2YNqczNcv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t2YNqczNcv .navbar .navbar-logo img {
  width: auto;
}
.cid-t2YNqczNcv .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-t2YNqczNcv .navbar.collapsed {
  justify-content: center;
}
.cid-t2YNqczNcv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t2YNqczNcv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t2YNqczNcv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t2YNqczNcv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t2YNqczNcv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t2YNqczNcv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t2YNqczNcv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t2YNqczNcv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t2YNqczNcv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t2YNqczNcv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t2YNqczNcv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t2YNqczNcv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t2YNqczNcv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t2YNqczNcv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t2YNqczNcv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t2YNqczNcv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t2YNqczNcv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t2YNqczNcv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t2YNqczNcv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t2YNqczNcv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t2YNqczNcv .navbar.navbar-short {
  min-height: 60px;
}
.cid-t2YNqczNcv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t2YNqczNcv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t2YNqczNcv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t2YNqczNcv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t2YNqczNcv .dropdown-item.active,
.cid-t2YNqczNcv .dropdown-item:active {
  background-color: transparent;
}
.cid-t2YNqczNcv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t2YNqczNcv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t2YNqczNcv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t2YNqczNcv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3f4ef;
}
.cid-t2YNqczNcv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t2YNqczNcv .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-t2YNqczNcv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t2YNqczNcv .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
.cid-t2YNqczNcv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1b1f0a;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t2YNqczNcv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t2YNqczNcv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t2YNqczNcv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t2YNqczNcv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t2YNqczNcv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t2YNqczNcv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t2YNqczNcv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t2YNqczNcv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t2YNqczNcv .navbar {
    height: 70px;
  }
  .cid-t2YNqczNcv .navbar.opened {
    height: auto;
  }
  .cid-t2YNqczNcv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t2YNqczNcv .navbar-nav .nav-item {
  margin: 0 8px !important;
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-t2YNqczNcv .navbar-nav .nav-item .nav-link {
  padding: 12px 12px 12px 16px !important;
  margin: 0 !important;
  border-radius: 100vw !important;
  transition: .3s all !important;
}
.cid-t2YNqczNcv .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-t2YNqczNcv .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-t2YNqczNcv .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-t2YNqczNcv .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 100vw !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-t2YNqczNcv .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(90deg);
}
.cid-t2YNqczNcv .dropdown-submenu {
  position: relative;
  max-width: 500px !important;
  transform: translateX(-50%) !important;
  top: calc(100% + 8px) !important;
  left: 50% !important;
}
@media (min-width: 992px) {
  .cid-t2YNqczNcv .dropdown-submenu::before {
    content: "";
    width: 100%;
    height: 8px;
    bottom: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-t2YNqczNcv .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-t2YNqczNcv .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-t2YNqczNcv .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-t2YNqczNcv .container {
    position: relative;
  }
  .cid-t2YNqczNcv .navbar-brand {
    margin-right: auto;
  }
  .cid-t2YNqczNcv .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 1rem 1rem  2rem;
    border-top: 2rem solid #f3f4ef;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    background: rgba(223, 224, 218, 0.94);
    backdrop-filter: blur(8px);
  }
  .cid-t2YNqczNcv .navbar-nav .nav-item .nav-link {
    justify-content: left;
  }
  .cid-t2YNqczNcv .navbar-nav .nav-item .nav-link::after {
    margin-left: auto;
  }
  .cid-t2YNqczNcv .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu {
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0);
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-t2YNqczNcv .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-t2YNqczNcv .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
.cid-t2YNqczNcv .navbar-fixed-top {
  position: absolute !important;
}
.cid-t2YUH3TQAq {
  background-image: url("../../../assets/images/home-automation-6e3456f354.jpg");
}
.cid-t2YUH3TQAq .mbr-fallback-image.disabled {
  display: none;
}
.cid-t2YUH3TQAq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t2YUH3TQAq .mbr-section-title {
  color: #f3f4ef;
  margin-bottom: 16px;
}
.cid-t2YUH3TQAq .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-t2YUH3TQAq .mbr-section-subtitle {
  color: #f3f4ef;
  margin-bottom: 16px;
  text-align: left;
}
.cid-t2YUH3TQAq .mbr-text {
  color: #f3f4ef;
  margin-bottom: 0;
}
.cid-t2YUH3TQAq .mbr-section-btn {
  margin-top: 144px;
}
.cid-t2YUH3TQAq .mbr-section-title,
.cid-t2YUH3TQAq .mbr-section-btn {
  text-align: left;
}
.cid-v3ufruYKI6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3ufruYKI6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ufruYKI6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-v3ufruYKI6 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v3ufruYKI6 .container {
    padding: 0 12px;
  }
}
.cid-v3ufruYKI6 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v3ufruYKI6 .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-v3ufruYKI6 .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-v3ufruYKI6 .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #4056d5;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-v3ufruYKI6 .mbr-section-title {
  color: #000000;
}
.cid-v3ugG8wL5W {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3ugG8wL5W .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ugG8wL5W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ugG8wL5W .card-wrapper {
  background: #4056d5;
}
@media (max-width: 767px) {
  .cid-v3ugG8wL5W .card-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v3ugG8wL5W .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-v3ugG8wL5W .card-wrapper {
    padding: 4rem;
  }
}
.cid-v3ugG8wL5W .mbr-text,
.cid-v3ugG8wL5W .mbr-section-btn {
  color: #ffffff;
}
.cid-v3ugG8wL5W .card-title,
.cid-v3ugG8wL5W .card-box {
  text-align: left;
  color: #ffd7ef;
}
.cid-v3ugBFzlgX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3ugBFzlgX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ugBFzlgX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ugBFzlgX .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v3ugBFzlgX .title-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3ugBFzlgX .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v3ugBFzlgX .image-wrapper {
  padding: 0 30px;
}
@media (max-width: 1200px) {
  .cid-v3ugBFzlgX .image-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-v3ugBFzlgX .image-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3ugBFzlgX .image-wrapper img {
  height: 405px;
  object-fit: cover;
  border-radius: 2rem;
}
@media (max-width: 992px) {
  .cid-v3ugBFzlgX .image-wrapper img {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-v3ugBFzlgX .text-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3ugBFzlgX .text-wrapper .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3ugBFzlgX .text-wrapper .mbr-text {
    margin-bottom: 15px;
  }
}
.cid-v3ugBFzlgX .mbr-section-title {
  color: #000000;
}
.cid-v3ugBFzlgX .mbr-desc {
  color: #000000;
}
.cid-v3ugBFzlgX .mbr-text {
  color: #000000;
}
.cid-v3uhXELXFV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #4056d5;
}
.cid-v3uhXELXFV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3uhXELXFV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3uhXELXFV .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v3uhXELXFV .container-fluid {
    padding: 0;
  }
}
.cid-v3uhXELXFV .container-fluid .row {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v3uhXELXFV .container {
    padding: 0 30px;
  }
}
.cid-v3uhXELXFV .card {
  padding: 0;
}
.cid-v3uhXELXFV .card .card-wrapper {
  padding: 50px;
  border-radius: 3em;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v3uhXELXFV .card .card-wrapper {
    padding: 30px;
  }
}
.cid-v3uhXELXFV .card .card-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-v3uhXELXFV .mbr-text {
  color: #4e4e4e;
}
.cid-v3uhXELXFV .mbr-text,
.cid-v3uhXELXFV .mbr-section-btn {
  color: #000000;
}
.cid-t2YVqbwMGe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/automated-home.png");
}
.cid-t2YVqbwMGe .row {
  align-items: center;
  width: 100%;
}
.cid-t2YVqbwMGe .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-t2YVqbwMGe .mbr-section-title {
  color: #000000;
}
.cid-t2YVqbwMGe .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-t2YVqbwMGe .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-t2YVqbwMGe .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-t2YVqbwMGe .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-t2YVqbwMGe .text-container {
  padding: 32px;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-t2YVqbwMGe .text-container {
    padding: 24px;
  }
}
.cid-t2YVqbwMGe .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t2YVqbwMGe .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-t2YVqbwMGe .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #32fc1d;
}
.cid-t2YVqbwMGe .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 0;
  text-align: center;
}
.cid-t2YVqbwMGe .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-v3ueVxFhuQ {
  background-color: #ffffff !important;
  border: 18px solid #ffffff;
  margin-top: -18px;
}
@media (max-width: 768px) {
  .cid-v3ueVxFhuQ {
    border: 8px solid #ffffff;
    margin-top: -8px;
  }
}
.cid-v3ueVxFhuQ .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-v3ueVxFhuQ section .mbr-background-video-preview {
  border-radius: 1.2rem !important;
}
.cid-v3ueVxFhuQ .row {
  position: relative;
  padding: 0 18px 0;
  margin: 0;
  justify-content: center;
  border-radius: 1.2em;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v3ueVxFhuQ .row .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ueVxFhuQ .row .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-v3ueVxFhuQ .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-v3ueVxFhuQ .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v3ueVxFhuQ .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v3ueVxFhuQ .title-wrapper .image-wrapper {
  margin-top: 72px;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v3ueVxFhuQ .title-wrapper .image-wrapper {
    height: auto;
    margin-top: 30px;
  }
}
.cid-v3ueVxFhuQ .title-wrapper .image-wrapper img {
  height: 450px;
  width: 80%;
  object-fit: cover;
  border-radius: 1.2em;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-v3ueVxFhuQ .title-wrapper .image-wrapper img {
    height: 300px;
    width: 100%;
    margin: 0;
  }
}
.cid-v3ueVxFhuQ .title-wrapper .mbr-section-btn {
  margin-top: 30px;
}
.cid-v3ueVxFhuQ .mbr-section-title {
  color: #ed2c03;
}
.cid-v3ueVxFhuQ .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-v3ueVxFhuQ .mbr-section-title,
.cid-v3ueVxFhuQ .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-t2YW8wTxz2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #4056d5;
}
.cid-t2YW8wTxz2 .row {
  align-items: center;
  width: 100%;
}
.cid-t2YW8wTxz2 .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-t2YW8wTxz2 .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-t2YW8wTxz2 .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-t2YW8wTxz2 .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t2YW8wTxz2 .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-t2YW8wTxz2 .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-t2YW8wTxz2 .content-container {
    padding: 2rem !important;
  }
}
.cid-t2YW8wTxz2 .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-t2YW8wTxz2 .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-t2YW8wTxz2 .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-t2YW8wTxz2 .img-container {
    padding-right: 0;
  }
}
.cid-t2YW8wTxz2 .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-t2YW8wTxz2 .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-t2YW8wTxz2 .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-t2YW8wTxz2 .text-container {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-t2YW8wTxz2 .text-container {
    padding-left: 0;
  }
}
.cid-t2YW8wTxz2 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t2YW8wTxz2 .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-t2YW8wTxz2 .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-t2YW8wTxz2 .card-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 4px;
}
.cid-t2YW8wTxz2 .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 32px;
}
.cid-t2ZrNfjWuw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t2ZrNfjWuw .row {
  align-items: center;
  width: 100%;
}
.cid-t2ZrNfjWuw .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-t2ZrNfjWuw .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-t2ZrNfjWuw .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-t2ZrNfjWuw .content-container {
  display: flex;
  padding: 60px !important;
}
@media (max-width: 991px) {
  .cid-t2ZrNfjWuw .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-t2ZrNfjWuw .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-t2ZrNfjWuw .content-container {
    padding: 2rem !important;
  }
}
.cid-t2ZrNfjWuw .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-t2ZrNfjWuw .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-t2ZrNfjWuw .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-t2ZrNfjWuw .img-container {
    padding-right: 0;
  }
}
.cid-t2ZrNfjWuw .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-t2ZrNfjWuw .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-t2ZrNfjWuw .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-t2ZrNfjWuw .text-container {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-t2ZrNfjWuw .text-container {
    padding-left: 0;
  }
}
.cid-t2ZrNfjWuw .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t2ZrNfjWuw .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-t2ZrNfjWuw .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-t2ZrNfjWuw .card-title {
  width: 100%;
  color: #232323;
  margin-bottom: 4px;
}
.cid-t2ZrNfjWuw .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 32px;
}
.cid-t2Zt6qJK78 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #4056d5;
}
.cid-t2Zt6qJK78 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t2Zt6qJK78 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t2Zt6qJK78 .row {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-t2Zt6qJK78 .row {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.cid-t2Zt6qJK78 .col-img {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-t2Zt6qJK78 .col-img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-t2Zt6qJK78 .img-container {
  display: flex;
  padding: 4.75rem 4rem;
  background-color: #ffffff;
}
.cid-t2Zt6qJK78 .img-container img {
  max-width: 100%;
}
.cid-t2Zt6qJK78 .col-toggle {
  width: 50%;
  padding-right: 4rem !important;
  padding-left: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-t2Zt6qJK78 .col-toggle {
    padding-right: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-t2Zt6qJK78 .col-toggle {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-t2Zt6qJK78 .section-head {
  margin-bottom: 0;
}
.cid-t2Zt6qJK78 .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-t2Zt6qJK78 .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-t2Zt6qJK78 .toggle-panel {
  margin-top: 40px;
}
.cid-t2Zt6qJK78 .card {
  border-bottom: 1px solid rgba(243, 244, 239, 0.12);
  transition: .3s all;
  border-radius: 0 !important;
}
.cid-t2Zt6qJK78 .card:hover {
  margin-left: 1rem;
}
.cid-t2Zt6qJK78 .card-header {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: transparent;
  margin-bottom: 8px;
  border: none !important;
  padding: 0 !important;
}
.cid-t2Zt6qJK78 .card-header .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.cid-t2Zt6qJK78 .card-header .iconfont-wrapper .mbr-iconfont {
  color: #ddff55;
  font-size: 32px;
}
.cid-t2Zt6qJK78 .sign {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  color: #ffffff;
  transition: .3s all;
}
.cid-t2Zt6qJK78 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.cid-t2Zt6qJK78 .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
  padding-left: 0;
  padding-right: 1rem;
}
.cid-t2Zt6qJK78 .panel-body {
  margin-bottom: 8px;
  margin-left: 10%;
  width: 100%;
  max-width: 85%;
}
.cid-t2Zt6qJK78 .panel-title-edit {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-t2Zt6qJK78 .panel-text {
  color: #000000;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-v3uFt9QkYn {
  padding-top: 6rem;
  padding-bottom: 9rem;
  background-color: #ffffff;
}
.cid-v3uFt9QkYn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3uFt9QkYn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-v3uFt9QkYn .container {
    padding: 0 20px;
  }
}
.cid-v3uFt9QkYn .row {
  margin: 0;
}
.cid-v3uFt9QkYn .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v3uFt9QkYn .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v3uFt9QkYn .video-block .video-wrapper .app-video-wrapper::before {
  color: #4056d5;
  text-shadow: none;
}
.cid-v3uFt9QkYn .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-v3uFt9QkYn .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-v3uFt9QkYn .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-v3uFt9QkYn .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v3ugqLbuOE {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-v3ugqLbuOE .container {
    padding: 0 24px;
  }
}
.cid-v3ugqLbuOE .card {
  justify-content: center;
}
.cid-v3ugqLbuOE .title-wrapper {
  padding: 0 32px 32px;
}
@media (max-width: 992px) {
  .cid-v3ugqLbuOE .title-wrapper {
    padding: 0 24px 24px;
  }
}
.cid-v3ugqLbuOE .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v3ugqLbuOE .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-v3ugqLbuOE .text-wrapper {
  border-top: 1px solid #72716b;
  display: flex;
  justify-content: space-between;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-v3ugqLbuOE .text-wrapper {
    display: block;
    padding: 24px;
  }
}
.cid-v3ugqLbuOE .text-wrapper .mbr-text {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-v3ugqLbuOE .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v3ugqLbuOE .text-wrapper .mbr-text:last-child {
    margin-bottom: 0;
  }
}
.cid-v3ugqLbuOE .mbr-section-title {
  color: #F9F6E0;
}
.cid-v3ugqLbuOE .mbr-desc {
  color: #F9F6E0;
}
.cid-v3ugqLbuOE .mbr-text {
  color: #000000;
}
.cid-v3ugqLbuOE .mbr-section-btn {
  text-align: right;
}
.cid-v3ugqLbuOE .mbr-section-title,
.cid-v3ugqLbuOE .mbr-section-btn {
  color: #000000;
}
.cid-v3ugRxYnJo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/automated-home.png");
  display: flex;
  align-items: center;
}
.cid-v3ugRxYnJo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ugRxYnJo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ugRxYnJo .row {
  justify-content: flex-start;
}
.cid-v3ugRxYnJo .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-v3ugRxYnJo .mbr-text {
  color: #000000;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-v3ubiBWmL4 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3ubiBWmL4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ubiBWmL4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ubiBWmL4 .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v3ubiBWmL4 .google-map {
    margin-bottom: 48px;
  }
}
.cid-v3ubiBWmL4 .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v3ubiBWmL4 .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-v3ubiBWmL4 .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-v3ubiBWmL4 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3ubiBWmL4 .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-v3ubiBWmL4 .list-wrapper .list .item-wrap:hover,
.cid-v3ubiBWmL4 .list-wrapper .list .item-wrap:focus {
  color: #bff747;
}
.cid-v3ubiBWmL4 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3ubiBWmL4 .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v3ubiBWmL4 .social-wrapper {
    text-align: left;
  }
}
.cid-v3ubiBWmL4 .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v3ubiBWmL4 .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3ubiBWmL4 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3ubiBWmL4 .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #4b4b4b;
  color: #bff747;
}
.cid-v3ubiBWmL4 .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #fdfde1;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-v3ubiBWmL4 .list,
.cid-v3ubiBWmL4 .item-wrap,
.cid-v3ubiBWmL4 .social-wrapper {
  color: #fdfde1;
}
.cid-v3uaiJbBZR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3uaiJbBZR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3uaiJbBZR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3uaiJbBZR .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-v3uaiJbBZR .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-v3uaiJbBZR .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-v3uaiJbBZR .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-v3uaiJbBZR .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-v3uaiJbBZR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-v3uaiJbBZR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3uaiJbBZR .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-v3uaiJbBZR .items-container {
    flex-wrap: wrap;
  }
}
.cid-v3uaiJbBZR .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-v3uaiJbBZR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-v3uaiJbBZR .footer-links {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}
@media (min-width: 992px) {
  .cid-v3uaiJbBZR .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-v3uaiJbBZR .footer-links {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    margin-top: 1.25rem;
  }
}
.cid-v3uaiJbBZR .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 1rem;
}
.cid-v3uaiJbBZR .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1B1F0A;
}
.cid-v3uaiJbBZR .list li {
  transition: 0.5s all;
}
.cid-v3uaiJbBZR .list li:hover {
  opacity: 0.6;
}
.cid-v3uaiJbBZR .item-wrap {
  margin-bottom: 12px;
}
.cid-v3uaiJbBZR .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-v3uaiJbBZR .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-v3uaiJbBZR .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-v3uaiJbBZR .mbr-iconfont {
  color: #000000;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-v3uaiJbBZR .copyright-col {
    text-align: center;
  }
}
.cid-v3uaiJbBZR .copyright {
  color: #000000;
}
.cid-v3ulIhzMcA {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v3ulIhzMcA nav.navbar {
  position: absolute !important;
}
.cid-v3ulIhzMcA .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3ulIhzMcA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v3ulIhzMcA .nav-link {
  position: relative;
}
.cid-v3ulIhzMcA .container {
  display: flex;
  margin: auto;
  position: fixed !important;
  left: 0;
  right: 0;
  width: 90%;
  max-width: 61.25rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 24px;
  background-color: #f3f4ef;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (min-width: 992px) {
  .cid-v3ulIhzMcA .container {
    flex-wrap: nowrap;
  }
}
.cid-v3ulIhzMcA .iconfont-wrapper {
  color: #1b1f0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v3ulIhzMcA .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: row;
  max-width: 100%;
  padding: 4px !important;
  border-radius: 100vw;
  transition: .3s all !important;
  min-width: auto;
  background: #f3f4ef !important;
}
.cid-v3ulIhzMcA .nav-item:focus,
.cid-v3ulIhzMcA .nav-link:focus {
  outline: none;
}
.cid-v3ulIhzMcA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3ulIhzMcA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3ulIhzMcA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3ulIhzMcA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3ulIhzMcA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3ulIhzMcA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3ulIhzMcA .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-v3ulIhzMcA .navbar.opened {
  transition: all 0.3s;
}
.cid-v3ulIhzMcA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3ulIhzMcA .navbar .navbar-logo img {
  width: auto;
}
.cid-v3ulIhzMcA .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-v3ulIhzMcA .navbar.collapsed {
  justify-content: center;
}
.cid-v3ulIhzMcA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3ulIhzMcA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3ulIhzMcA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3ulIhzMcA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3ulIhzMcA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3ulIhzMcA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v3ulIhzMcA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3ulIhzMcA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3ulIhzMcA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3ulIhzMcA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3ulIhzMcA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3ulIhzMcA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3ulIhzMcA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3ulIhzMcA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v3ulIhzMcA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3ulIhzMcA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3ulIhzMcA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3ulIhzMcA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3ulIhzMcA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3ulIhzMcA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3ulIhzMcA .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3ulIhzMcA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3ulIhzMcA .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v3ulIhzMcA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3ulIhzMcA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3ulIhzMcA .dropdown-item.active,
.cid-v3ulIhzMcA .dropdown-item:active {
  background-color: transparent;
}
.cid-v3ulIhzMcA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3ulIhzMcA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3ulIhzMcA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3ulIhzMcA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3f4ef;
}
.cid-v3ulIhzMcA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3ulIhzMcA .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v3ulIhzMcA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3ulIhzMcA .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
.cid-v3ulIhzMcA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3ulIhzMcA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1b1f0a;
}
.cid-v3ulIhzMcA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3ulIhzMcA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3ulIhzMcA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3ulIhzMcA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3ulIhzMcA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3ulIhzMcA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3ulIhzMcA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3ulIhzMcA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3ulIhzMcA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3ulIhzMcA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3ulIhzMcA .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v3ulIhzMcA .navbar {
    height: 70px;
  }
  .cid-v3ulIhzMcA .navbar.opened {
    height: auto;
  }
  .cid-v3ulIhzMcA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3ulIhzMcA .navbar-nav .nav-item {
  margin: 0 8px !important;
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v3ulIhzMcA .navbar-nav .nav-item .nav-link {
  padding: 12px 12px 12px 16px !important;
  margin: 0 !important;
  border-radius: 100vw !important;
  transition: .3s all !important;
}
.cid-v3ulIhzMcA .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-v3ulIhzMcA .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v3ulIhzMcA .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v3ulIhzMcA .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 100vw !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v3ulIhzMcA .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-v3ulIhzMcA .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-v3ulIhzMcA .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v3ulIhzMcA .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v3ulIhzMcA .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v3ulIhzMcA .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(90deg);
}
.cid-v3ulIhzMcA .dropdown-submenu {
  position: relative;
  max-width: 500px !important;
  transform: translateX(-50%) !important;
  top: calc(100% + 8px) !important;
  left: 50% !important;
}
@media (min-width: 992px) {
  .cid-v3ulIhzMcA .dropdown-submenu::before {
    content: "";
    width: 100%;
    height: 8px;
    bottom: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v3ulIhzMcA .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v3ulIhzMcA .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-v3ulIhzMcA .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v3ulIhzMcA .container {
    position: relative;
  }
  .cid-v3ulIhzMcA .navbar-brand {
    margin-right: auto;
  }
  .cid-v3ulIhzMcA .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 1rem 1rem  2rem;
    border-top: 2rem solid #f3f4ef;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    background: rgba(223, 224, 218, 0.94);
    backdrop-filter: blur(8px);
  }
  .cid-v3ulIhzMcA .navbar-nav .nav-item .nav-link {
    justify-content: left;
  }
  .cid-v3ulIhzMcA .navbar-nav .nav-item .nav-link::after {
    margin-left: auto;
  }
  .cid-v3ulIhzMcA .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v3ulIhzMcA .navbar .dropdown > .dropdown-menu {
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0);
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v3ulIhzMcA .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v3ulIhzMcA .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v3ulIhzMcA .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v3ulIhzMcA .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v3ulIhzMcA .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v3ulIhzMcA .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
.cid-v3ulIhzMcA .navbar-fixed-top {
  position: absolute !important;
}
.cid-v3ulIiD4MM {
  background-image: url("../../../assets/images/prodatakeyapplifestyle2.png");
}
.cid-v3ulIiD4MM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ulIiD4MM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ulIiD4MM .mbr-section-title {
  color: #f3f4ef;
  margin-bottom: 16px;
}
.cid-v3ulIiD4MM .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-v3ulIiD4MM .mbr-section-subtitle {
  color: #f3f4ef;
  margin-bottom: 16px;
  text-align: left;
}
.cid-v3ulIiD4MM .mbr-text {
  color: #f3f4ef;
  margin-bottom: 0;
}
.cid-v3ulIiD4MM .mbr-section-btn {
  margin-top: 144px;
}
.cid-v3ulIiD4MM .mbr-section-title,
.cid-v3ulIiD4MM .mbr-section-btn {
  text-align: left;
}
.cid-v3ulIk7NAj {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3ulIk7NAj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ulIk7NAj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ulIk7NAj .card-wrapper {
  background: #4056d5;
}
@media (max-width: 767px) {
  .cid-v3ulIk7NAj .card-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v3ulIk7NAj .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-v3ulIk7NAj .card-wrapper {
    padding: 4rem;
  }
}
.cid-v3ulIk7NAj .mbr-text,
.cid-v3ulIk7NAj .mbr-section-btn {
  color: #ffffff;
}
.cid-v3ulIk7NAj .card-title,
.cid-v3ulIk7NAj .card-box {
  text-align: left;
  color: #ffd7ef;
}
.cid-v3ulIswpgO {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3ulIswpgO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ulIswpgO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ulIswpgO .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v3ulIswpgO .google-map {
    margin-bottom: 48px;
  }
}
.cid-v3ulIswpgO .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v3ulIswpgO .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-v3ulIswpgO .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-v3ulIswpgO .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3ulIswpgO .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-v3ulIswpgO .list-wrapper .list .item-wrap:hover,
.cid-v3ulIswpgO .list-wrapper .list .item-wrap:focus {
  color: #bff747;
}
.cid-v3ulIswpgO .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3ulIswpgO .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v3ulIswpgO .social-wrapper {
    text-align: left;
  }
}
.cid-v3ulIswpgO .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v3ulIswpgO .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3ulIswpgO .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3ulIswpgO .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #4b4b4b;
  color: #bff747;
}
.cid-v3ulIswpgO .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #fdfde1;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-v3ulIswpgO .list,
.cid-v3ulIswpgO .item-wrap,
.cid-v3ulIswpgO .social-wrapper {
  color: #fdfde1;
}
.cid-v3ulItEkYL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3ulItEkYL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ulItEkYL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ulItEkYL .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-v3ulItEkYL .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-v3ulItEkYL .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-v3ulItEkYL .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-v3ulItEkYL .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-v3ulItEkYL .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-v3ulItEkYL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3ulItEkYL .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-v3ulItEkYL .items-container {
    flex-wrap: wrap;
  }
}
.cid-v3ulItEkYL .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-v3ulItEkYL .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-v3ulItEkYL .footer-links {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}
@media (min-width: 992px) {
  .cid-v3ulItEkYL .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-v3ulItEkYL .footer-links {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    margin-top: 1.25rem;
  }
}
.cid-v3ulItEkYL .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 1rem;
}
.cid-v3ulItEkYL .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1B1F0A;
}
.cid-v3ulItEkYL .list li {
  transition: 0.5s all;
}
.cid-v3ulItEkYL .list li:hover {
  opacity: 0.6;
}
.cid-v3ulItEkYL .item-wrap {
  margin-bottom: 12px;
}
.cid-v3ulItEkYL .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-v3ulItEkYL .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-v3ulItEkYL .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-v3ulItEkYL .mbr-iconfont {
  color: #000000;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-v3ulItEkYL .copyright-col {
    text-align: center;
  }
}
.cid-v3ulItEkYL .copyright {
  color: #000000;
}
.cid-v3ump1WzJL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v3ump1WzJL nav.navbar {
  position: absolute !important;
}
.cid-v3ump1WzJL .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3ump1WzJL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v3ump1WzJL .nav-link {
  position: relative;
}
.cid-v3ump1WzJL .container {
  display: flex;
  margin: auto;
  position: fixed !important;
  left: 0;
  right: 0;
  width: 90%;
  max-width: 61.25rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 24px;
  background-color: #f3f4ef;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (min-width: 992px) {
  .cid-v3ump1WzJL .container {
    flex-wrap: nowrap;
  }
}
.cid-v3ump1WzJL .iconfont-wrapper {
  color: #1b1f0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v3ump1WzJL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: row;
  max-width: 100%;
  padding: 4px !important;
  border-radius: 100vw;
  transition: .3s all !important;
  min-width: auto;
  background: #f3f4ef !important;
}
.cid-v3ump1WzJL .nav-item:focus,
.cid-v3ump1WzJL .nav-link:focus {
  outline: none;
}
.cid-v3ump1WzJL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3ump1WzJL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3ump1WzJL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3ump1WzJL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3ump1WzJL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3ump1WzJL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3ump1WzJL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-v3ump1WzJL .navbar.opened {
  transition: all 0.3s;
}
.cid-v3ump1WzJL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3ump1WzJL .navbar .navbar-logo img {
  width: auto;
}
.cid-v3ump1WzJL .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-v3ump1WzJL .navbar.collapsed {
  justify-content: center;
}
.cid-v3ump1WzJL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3ump1WzJL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3ump1WzJL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3ump1WzJL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3ump1WzJL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3ump1WzJL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v3ump1WzJL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3ump1WzJL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3ump1WzJL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3ump1WzJL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3ump1WzJL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3ump1WzJL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3ump1WzJL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3ump1WzJL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v3ump1WzJL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3ump1WzJL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3ump1WzJL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3ump1WzJL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3ump1WzJL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3ump1WzJL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3ump1WzJL .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3ump1WzJL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3ump1WzJL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v3ump1WzJL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3ump1WzJL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3ump1WzJL .dropdown-item.active,
.cid-v3ump1WzJL .dropdown-item:active {
  background-color: transparent;
}
.cid-v3ump1WzJL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3ump1WzJL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3ump1WzJL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3ump1WzJL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3f4ef;
}
.cid-v3ump1WzJL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3ump1WzJL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v3ump1WzJL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3ump1WzJL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
.cid-v3ump1WzJL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3ump1WzJL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1b1f0a;
}
.cid-v3ump1WzJL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3ump1WzJL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3ump1WzJL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3ump1WzJL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3ump1WzJL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3ump1WzJL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3ump1WzJL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3ump1WzJL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3ump1WzJL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3ump1WzJL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3ump1WzJL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v3ump1WzJL .navbar {
    height: 70px;
  }
  .cid-v3ump1WzJL .navbar.opened {
    height: auto;
  }
  .cid-v3ump1WzJL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3ump1WzJL .navbar-nav .nav-item {
  margin: 0 8px !important;
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v3ump1WzJL .navbar-nav .nav-item .nav-link {
  padding: 12px 12px 12px 16px !important;
  margin: 0 !important;
  border-radius: 100vw !important;
  transition: .3s all !important;
}
.cid-v3ump1WzJL .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-v3ump1WzJL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v3ump1WzJL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v3ump1WzJL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 100vw !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v3ump1WzJL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-v3ump1WzJL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-v3ump1WzJL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v3ump1WzJL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v3ump1WzJL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v3ump1WzJL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(90deg);
}
.cid-v3ump1WzJL .dropdown-submenu {
  position: relative;
  max-width: 500px !important;
  transform: translateX(-50%) !important;
  top: calc(100% + 8px) !important;
  left: 50% !important;
}
@media (min-width: 992px) {
  .cid-v3ump1WzJL .dropdown-submenu::before {
    content: "";
    width: 100%;
    height: 8px;
    bottom: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v3ump1WzJL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v3ump1WzJL .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-v3ump1WzJL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v3ump1WzJL .container {
    position: relative;
  }
  .cid-v3ump1WzJL .navbar-brand {
    margin-right: auto;
  }
  .cid-v3ump1WzJL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 1rem 1rem  2rem;
    border-top: 2rem solid #f3f4ef;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    background: rgba(223, 224, 218, 0.94);
    backdrop-filter: blur(8px);
  }
  .cid-v3ump1WzJL .navbar-nav .nav-item .nav-link {
    justify-content: left;
  }
  .cid-v3ump1WzJL .navbar-nav .nav-item .nav-link::after {
    margin-left: auto;
  }
  .cid-v3ump1WzJL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v3ump1WzJL .navbar .dropdown > .dropdown-menu {
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0);
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v3ump1WzJL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v3ump1WzJL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v3ump1WzJL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v3ump1WzJL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v3ump1WzJL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v3ump1WzJL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
.cid-v3ump1WzJL .navbar-fixed-top {
  position: absolute !important;
}
.cid-v3ump2Jztg {
  background-image: url("../../../assets/images/unnamed-2.jpg");
}
.cid-v3ump2Jztg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ump2Jztg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ump2Jztg .mbr-section-title {
  color: #f3f4ef;
  margin-bottom: 16px;
}
.cid-v3ump2Jztg .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-v3ump2Jztg .mbr-section-subtitle {
  color: #f3f4ef;
  margin-bottom: 16px;
  text-align: left;
}
.cid-v3ump2Jztg .mbr-text {
  color: #f3f4ef;
  margin-bottom: 0;
}
.cid-v3ump2Jztg .mbr-section-btn {
  margin-top: 144px;
}
.cid-v3ump2Jztg .mbr-section-title,
.cid-v3ump2Jztg .mbr-section-btn {
  text-align: left;
}
.cid-v3ump3lNbS {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3ump3lNbS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ump3lNbS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ump3lNbS .card-wrapper {
  background: #4056d5;
}
@media (max-width: 767px) {
  .cid-v3ump3lNbS .card-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v3ump3lNbS .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-v3ump3lNbS .card-wrapper {
    padding: 4rem;
  }
}
.cid-v3ump3lNbS .mbr-text,
.cid-v3ump3lNbS .mbr-section-btn {
  color: #ffffff;
}
.cid-v3ump3lNbS .card-title,
.cid-v3ump3lNbS .card-box {
  text-align: left;
  color: #ffd7ef;
}
.cid-v3ump3SmFM {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3ump3SmFM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ump3SmFM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ump3SmFM .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v3ump3SmFM .google-map {
    margin-bottom: 48px;
  }
}
.cid-v3ump3SmFM .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v3ump3SmFM .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-v3ump3SmFM .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-v3ump3SmFM .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3ump3SmFM .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-v3ump3SmFM .list-wrapper .list .item-wrap:hover,
.cid-v3ump3SmFM .list-wrapper .list .item-wrap:focus {
  color: #bff747;
}
.cid-v3ump3SmFM .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3ump3SmFM .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v3ump3SmFM .social-wrapper {
    text-align: left;
  }
}
.cid-v3ump3SmFM .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v3ump3SmFM .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3ump3SmFM .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3ump3SmFM .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #4b4b4b;
  color: #bff747;
}
.cid-v3ump3SmFM .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #fdfde1;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-v3ump3SmFM .list,
.cid-v3ump3SmFM .item-wrap,
.cid-v3ump3SmFM .social-wrapper {
  color: #fdfde1;
}
.cid-v3ump4ETkc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3ump4ETkc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ump4ETkc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ump4ETkc .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-v3ump4ETkc .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-v3ump4ETkc .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-v3ump4ETkc .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-v3ump4ETkc .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-v3ump4ETkc .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-v3ump4ETkc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3ump4ETkc .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-v3ump4ETkc .items-container {
    flex-wrap: wrap;
  }
}
.cid-v3ump4ETkc .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-v3ump4ETkc .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-v3ump4ETkc .footer-links {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}
@media (min-width: 992px) {
  .cid-v3ump4ETkc .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-v3ump4ETkc .footer-links {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    margin-top: 1.25rem;
  }
}
.cid-v3ump4ETkc .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 1rem;
}
.cid-v3ump4ETkc .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1B1F0A;
}
.cid-v3ump4ETkc .list li {
  transition: 0.5s all;
}
.cid-v3ump4ETkc .list li:hover {
  opacity: 0.6;
}
.cid-v3ump4ETkc .item-wrap {
  margin-bottom: 12px;
}
.cid-v3ump4ETkc .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-v3ump4ETkc .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-v3ump4ETkc .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-v3ump4ETkc .mbr-iconfont {
  color: #000000;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-v3ump4ETkc .copyright-col {
    text-align: center;
  }
}
.cid-v3ump4ETkc .copyright {
  color: #000000;
}
.cid-v3uoMwRItv {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v3uoMwRItv nav.navbar {
  position: absolute !important;
}
.cid-v3uoMwRItv .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3uoMwRItv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v3uoMwRItv .nav-link {
  position: relative;
}
.cid-v3uoMwRItv .container {
  display: flex;
  margin: auto;
  position: fixed !important;
  left: 0;
  right: 0;
  width: 90%;
  max-width: 61.25rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 24px;
  background-color: #f3f4ef;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (min-width: 992px) {
  .cid-v3uoMwRItv .container {
    flex-wrap: nowrap;
  }
}
.cid-v3uoMwRItv .iconfont-wrapper {
  color: #1b1f0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v3uoMwRItv .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: row;
  max-width: 100%;
  padding: 4px !important;
  border-radius: 100vw;
  transition: .3s all !important;
  min-width: auto;
  background: #f3f4ef !important;
}
.cid-v3uoMwRItv .nav-item:focus,
.cid-v3uoMwRItv .nav-link:focus {
  outline: none;
}
.cid-v3uoMwRItv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3uoMwRItv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3uoMwRItv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3uoMwRItv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3uoMwRItv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3uoMwRItv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3uoMwRItv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-v3uoMwRItv .navbar.opened {
  transition: all 0.3s;
}
.cid-v3uoMwRItv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3uoMwRItv .navbar .navbar-logo img {
  width: auto;
}
.cid-v3uoMwRItv .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-v3uoMwRItv .navbar.collapsed {
  justify-content: center;
}
.cid-v3uoMwRItv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3uoMwRItv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3uoMwRItv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3uoMwRItv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3uoMwRItv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3uoMwRItv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v3uoMwRItv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3uoMwRItv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3uoMwRItv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3uoMwRItv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3uoMwRItv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3uoMwRItv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3uoMwRItv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3uoMwRItv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v3uoMwRItv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3uoMwRItv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3uoMwRItv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3uoMwRItv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3uoMwRItv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3uoMwRItv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3uoMwRItv .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3uoMwRItv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3uoMwRItv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v3uoMwRItv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3uoMwRItv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3uoMwRItv .dropdown-item.active,
.cid-v3uoMwRItv .dropdown-item:active {
  background-color: transparent;
}
.cid-v3uoMwRItv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3uoMwRItv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3uoMwRItv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3uoMwRItv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3f4ef;
}
.cid-v3uoMwRItv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3uoMwRItv .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v3uoMwRItv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3uoMwRItv .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
.cid-v3uoMwRItv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3uoMwRItv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1b1f0a;
}
.cid-v3uoMwRItv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3uoMwRItv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3uoMwRItv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3uoMwRItv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3uoMwRItv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3uoMwRItv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3uoMwRItv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3uoMwRItv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3uoMwRItv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3uoMwRItv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3uoMwRItv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v3uoMwRItv .navbar {
    height: 70px;
  }
  .cid-v3uoMwRItv .navbar.opened {
    height: auto;
  }
  .cid-v3uoMwRItv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3uoMwRItv .navbar-nav .nav-item {
  margin: 0 8px !important;
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v3uoMwRItv .navbar-nav .nav-item .nav-link {
  padding: 12px 12px 12px 16px !important;
  margin: 0 !important;
  border-radius: 100vw !important;
  transition: .3s all !important;
}
.cid-v3uoMwRItv .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-v3uoMwRItv .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v3uoMwRItv .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v3uoMwRItv .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 100vw !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v3uoMwRItv .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-v3uoMwRItv .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-v3uoMwRItv .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v3uoMwRItv .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v3uoMwRItv .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v3uoMwRItv .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(90deg);
}
.cid-v3uoMwRItv .dropdown-submenu {
  position: relative;
  max-width: 500px !important;
  transform: translateX(-50%) !important;
  top: calc(100% + 8px) !important;
  left: 50% !important;
}
@media (min-width: 992px) {
  .cid-v3uoMwRItv .dropdown-submenu::before {
    content: "";
    width: 100%;
    height: 8px;
    bottom: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v3uoMwRItv .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v3uoMwRItv .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-v3uoMwRItv .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v3uoMwRItv .container {
    position: relative;
  }
  .cid-v3uoMwRItv .navbar-brand {
    margin-right: auto;
  }
  .cid-v3uoMwRItv .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 1rem 1rem  2rem;
    border-top: 2rem solid #f3f4ef;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    background: rgba(223, 224, 218, 0.94);
    backdrop-filter: blur(8px);
  }
  .cid-v3uoMwRItv .navbar-nav .nav-item .nav-link {
    justify-content: left;
  }
  .cid-v3uoMwRItv .navbar-nav .nav-item .nav-link::after {
    margin-left: auto;
  }
  .cid-v3uoMwRItv .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v3uoMwRItv .navbar .dropdown > .dropdown-menu {
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0);
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v3uoMwRItv .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v3uoMwRItv .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v3uoMwRItv .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v3uoMwRItv .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v3uoMwRItv .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v3uoMwRItv .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
.cid-v3uoMwRItv .navbar-fixed-top {
  position: absolute !important;
}
.cid-v3uoMyhwnU {
  background-image: url("../../../assets/images/smart-home-1.jpg");
}
.cid-v3uoMyhwnU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3uoMyhwnU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3uoMyhwnU .mbr-section-title {
  color: #f3f4ef;
  margin-bottom: 16px;
}
.cid-v3uoMyhwnU .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-v3uoMyhwnU .mbr-section-subtitle {
  color: #f3f4ef;
  margin-bottom: 16px;
  text-align: left;
}
.cid-v3uoMyhwnU .mbr-text {
  color: #f3f4ef;
  margin-bottom: 0;
}
.cid-v3uoMyhwnU .mbr-section-btn {
  margin-top: 144px;
}
.cid-v3uoMyhwnU .mbr-section-title,
.cid-v3uoMyhwnU .mbr-section-btn {
  text-align: left;
}
.cid-v3uoMz2n9C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3uoMz2n9C .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3uoMz2n9C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-v3uoMz2n9C .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v3uoMz2n9C .container {
    padding: 0 12px;
  }
}
.cid-v3uoMz2n9C .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v3uoMz2n9C .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-v3uoMz2n9C .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-v3uoMz2n9C .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #4056d5;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-v3uoMz2n9C .mbr-section-title {
  color: #000000;
}
.cid-v3uoMzZruM {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3uoMzZruM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3uoMzZruM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3uoMzZruM .card-wrapper {
  background: #4056d5;
}
@media (max-width: 767px) {
  .cid-v3uoMzZruM .card-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v3uoMzZruM .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-v3uoMzZruM .card-wrapper {
    padding: 4rem;
  }
}
.cid-v3uoMzZruM .mbr-text,
.cid-v3uoMzZruM .mbr-section-btn {
  color: #ffffff;
}
.cid-v3uoMzZruM .card-title,
.cid-v3uoMzZruM .card-box {
  text-align: left;
  color: #ffd7ef;
}
.cid-v3uoMAFC1H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3uoMAFC1H .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3uoMAFC1H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3uoMAFC1H .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v3uoMAFC1H .title-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3uoMAFC1H .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v3uoMAFC1H .image-wrapper {
  padding: 0 30px;
}
@media (max-width: 1200px) {
  .cid-v3uoMAFC1H .image-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-v3uoMAFC1H .image-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3uoMAFC1H .image-wrapper img {
  height: 405px;
  object-fit: cover;
  border-radius: 2rem;
}
@media (max-width: 992px) {
  .cid-v3uoMAFC1H .image-wrapper img {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-v3uoMAFC1H .text-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3uoMAFC1H .text-wrapper .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3uoMAFC1H .text-wrapper .mbr-text {
    margin-bottom: 15px;
  }
}
.cid-v3uoMAFC1H .mbr-section-title {
  color: #000000;
}
.cid-v3uoMAFC1H .mbr-desc {
  color: #000000;
}
.cid-v3uoMAFC1H .mbr-text {
  color: #000000;
}
.cid-v3uoMB766M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #4056d5;
}
.cid-v3uoMB766M .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3uoMB766M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3uoMB766M .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v3uoMB766M .container-fluid {
    padding: 0;
  }
}
.cid-v3uoMB766M .container-fluid .row {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v3uoMB766M .container {
    padding: 0 30px;
  }
}
.cid-v3uoMB766M .card {
  padding: 0;
}
.cid-v3uoMB766M .card .card-wrapper {
  padding: 50px;
  border-radius: 3em;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v3uoMB766M .card .card-wrapper {
    padding: 30px;
  }
}
.cid-v3uoMB766M .card .card-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-v3uoMB766M .mbr-text {
  color: #4e4e4e;
}
.cid-v3uoMB766M .mbr-text,
.cid-v3uoMB766M .mbr-section-btn {
  color: #000000;
}
.cid-v3uoMBy7YR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/adobestock-555108297.png");
}
.cid-v3uoMBy7YR .row {
  align-items: center;
  width: 100%;
}
.cid-v3uoMBy7YR .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-v3uoMBy7YR .mbr-section-title {
  color: #000000;
}
.cid-v3uoMBy7YR .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-v3uoMBy7YR .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-v3uoMBy7YR .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-v3uoMBy7YR .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-v3uoMBy7YR .text-container {
  padding: 32px;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-v3uoMBy7YR .text-container {
    padding: 24px;
  }
}
.cid-v3uoMBy7YR .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-v3uoMBy7YR .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-v3uoMBy7YR .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #32fc1d;
}
.cid-v3uoMBy7YR .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-v3uoMBy7YR .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-v3uoMCoG0o {
  background-color: #ffffff !important;
  border: 18px solid #ffffff;
  margin-top: -18px;
}
@media (max-width: 768px) {
  .cid-v3uoMCoG0o {
    border: 8px solid #ffffff;
    margin-top: -8px;
  }
}
.cid-v3uoMCoG0o .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-v3uoMCoG0o section .mbr-background-video-preview {
  border-radius: 1.2rem !important;
}
.cid-v3uoMCoG0o .row {
  position: relative;
  padding: 0 18px 0;
  margin: 0;
  justify-content: center;
  border-radius: 1.2em;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v3uoMCoG0o .row .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3uoMCoG0o .row .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-v3uoMCoG0o .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-v3uoMCoG0o .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v3uoMCoG0o .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v3uoMCoG0o .title-wrapper .image-wrapper {
  margin-top: 72px;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v3uoMCoG0o .title-wrapper .image-wrapper {
    height: auto;
    margin-top: 30px;
  }
}
.cid-v3uoMCoG0o .title-wrapper .image-wrapper img {
  height: 450px;
  width: 80%;
  object-fit: cover;
  border-radius: 1.2em;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-v3uoMCoG0o .title-wrapper .image-wrapper img {
    height: 300px;
    width: 100%;
    margin: 0;
  }
}
.cid-v3uoMCoG0o .title-wrapper .mbr-section-btn {
  margin-top: 30px;
}
.cid-v3uoMCoG0o .mbr-section-title {
  color: #ed2c03;
}
.cid-v3uoMCoG0o .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-v3uoMCoG0o .mbr-section-title,
.cid-v3uoMCoG0o .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-v3uoMCV92T {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #4056d5;
}
.cid-v3uoMCV92T .row {
  align-items: center;
  width: 100%;
}
.cid-v3uoMCV92T .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-v3uoMCV92T .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-v3uoMCV92T .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-v3uoMCV92T .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v3uoMCV92T .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-v3uoMCV92T .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-v3uoMCV92T .content-container {
    padding: 2rem !important;
  }
}
.cid-v3uoMCV92T .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-v3uoMCV92T .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-v3uoMCV92T .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-v3uoMCV92T .img-container {
    padding-right: 0;
  }
}
.cid-v3uoMCV92T .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-v3uoMCV92T .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-v3uoMCV92T .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-v3uoMCV92T .text-container {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-v3uoMCV92T .text-container {
    padding-left: 0;
  }
}
.cid-v3uoMCV92T .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-v3uoMCV92T .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-v3uoMCV92T .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-v3uoMCV92T .card-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 4px;
}
.cid-v3uoMCV92T .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 32px;
}
.cid-v3uoMDABon {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3uoMDABon .row {
  align-items: center;
  width: 100%;
}
.cid-v3uoMDABon .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-v3uoMDABon .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-v3uoMDABon .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-v3uoMDABon .content-container {
  display: flex;
  padding: 60px !important;
}
@media (max-width: 991px) {
  .cid-v3uoMDABon .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-v3uoMDABon .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-v3uoMDABon .content-container {
    padding: 2rem !important;
  }
}
.cid-v3uoMDABon .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-v3uoMDABon .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-v3uoMDABon .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-v3uoMDABon .img-container {
    padding-right: 0;
  }
}
.cid-v3uoMDABon .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-v3uoMDABon .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-v3uoMDABon .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-v3uoMDABon .text-container {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-v3uoMDABon .text-container {
    padding-left: 0;
  }
}
.cid-v3uoMDABon .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-v3uoMDABon .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-v3uoMDABon .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-v3uoMDABon .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 4px;
}
.cid-v3uoMDABon .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 32px;
}
.cid-v3uoMEf5uk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #4056d5;
}
.cid-v3uoMEf5uk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3uoMEf5uk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3uoMEf5uk .row {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-v3uoMEf5uk .row {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.cid-v3uoMEf5uk .col-img {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-v3uoMEf5uk .col-img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-v3uoMEf5uk .img-container {
  display: flex;
  padding: 4.75rem 4rem;
  background-color: #ffffff;
}
.cid-v3uoMEf5uk .img-container img {
  max-width: 100%;
}
.cid-v3uoMEf5uk .col-toggle {
  width: 50%;
  padding-right: 4rem !important;
  padding-left: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-v3uoMEf5uk .col-toggle {
    padding-right: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-v3uoMEf5uk .col-toggle {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-v3uoMEf5uk .section-head {
  margin-bottom: 0;
}
.cid-v3uoMEf5uk .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-v3uoMEf5uk .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-v3uoMEf5uk .toggle-panel {
  margin-top: 40px;
}
.cid-v3uoMEf5uk .card {
  border-bottom: 1px solid rgba(243, 244, 239, 0.12);
  transition: .3s all;
  border-radius: 0 !important;
}
.cid-v3uoMEf5uk .card:hover {
  margin-left: 1rem;
}
.cid-v3uoMEf5uk .card-header {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: transparent;
  margin-bottom: 8px;
  border: none !important;
  padding: 0 !important;
}
.cid-v3uoMEf5uk .card-header .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.cid-v3uoMEf5uk .card-header .iconfont-wrapper .mbr-iconfont {
  color: #ddff55;
  font-size: 32px;
}
.cid-v3uoMEf5uk .sign {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  color: #ffffff;
  transition: .3s all;
}
.cid-v3uoMEf5uk .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.cid-v3uoMEf5uk .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
  padding-left: 0;
  padding-right: 1rem;
}
.cid-v3uoMEf5uk .panel-body {
  margin-bottom: 8px;
  margin-left: 10%;
  width: 100%;
  max-width: 85%;
}
.cid-v3uoMEf5uk .panel-title-edit {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-v3uoMEf5uk .panel-text {
  color: #000000;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-v3uoMF9Hvj {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-v3uoMF9Hvj .container {
    padding: 0 24px;
  }
}
.cid-v3uoMF9Hvj .card {
  justify-content: center;
}
.cid-v3uoMF9Hvj .title-wrapper {
  padding: 0 32px 32px;
}
@media (max-width: 992px) {
  .cid-v3uoMF9Hvj .title-wrapper {
    padding: 0 24px 24px;
  }
}
.cid-v3uoMF9Hvj .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v3uoMF9Hvj .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-v3uoMF9Hvj .text-wrapper {
  border-top: 1px solid #72716b;
  display: flex;
  justify-content: space-between;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-v3uoMF9Hvj .text-wrapper {
    display: block;
    padding: 24px;
  }
}
.cid-v3uoMF9Hvj .text-wrapper .mbr-text {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-v3uoMF9Hvj .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v3uoMF9Hvj .text-wrapper .mbr-text:last-child {
    margin-bottom: 0;
  }
}
.cid-v3uoMF9Hvj .mbr-section-title {
  color: #F9F6E0;
}
.cid-v3uoMF9Hvj .mbr-desc {
  color: #F9F6E0;
}
.cid-v3uoMF9Hvj .mbr-text {
  color: #000000;
}
.cid-v3uoMF9Hvj .mbr-section-btn {
  text-align: right;
}
.cid-v3uoMF9Hvj .mbr-section-title,
.cid-v3uoMF9Hvj .mbr-section-btn {
  color: #000000;
}
.cid-v3K8SaR7Mr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3K8SaR7Mr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3K8SaR7Mr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-v3K8SaR7Mr .container {
    padding: 0 20px;
  }
}
.cid-v3K8SaR7Mr .row {
  margin: 0;
}
.cid-v3K8SaR7Mr .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v3K8SaR7Mr .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v3K8SaR7Mr .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-v3K8SaR7Mr .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-v3K8SaR7Mr .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-v3K8SaR7Mr .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-v3K8SaR7Mr .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v3uoMFFgzG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/image.jpg");
  display: flex;
  align-items: center;
}
.cid-v3uoMFFgzG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3uoMFFgzG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3uoMFFgzG .row {
  justify-content: flex-start;
}
.cid-v3uoMFFgzG .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-v3uoMFFgzG .mbr-text {
  color: #000000;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-v3urwrFg5u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3urwrFg5u .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3urwrFg5u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3urwrFg5u .content-wrapper {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-v3urwrFg5u .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v3urwrFg5u .content-wrapper .label-wrapper {
  margin-bottom: 32px;
}
.cid-v3urwrFg5u .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-top: 2px solid #ffffff;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.cid-v3urwrFg5u .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  display: inline-block;
  margin-right: 8px;
}
.cid-v3urwrFg5u .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-v3urwrFg5u .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #f5f5f5, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-v3urwrFg5u .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v3urwrFg5u .panel-group .card {
  position: relative;
  padding: 7px 16px;
  background-color: #4056d5;
  border-top: 3px solid #ffffff;
  box-shadow: 0 8px 15px -8px #ffffff;
  transition: all 0.3s ease-in-out;
  margin-bottom: 16px;
}
.cid-v3urwrFg5u .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v3urwrFg5u .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-v3urwrFg5u .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-v3urwrFg5u .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: 24px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
}
.cid-v3urwrFg5u .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
}
.cid-v3urwrFg5u .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-v3urwrFg5u .panel-group .card .panel-collapse .panel-body {
  padding: 8px 0;
}
.cid-v3urwrFg5u .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 95%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-v3urwrFg5u .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-v3urwrFg5u .mbr-label,
.cid-v3urwrFg5u .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v3urwrFg5u .mbr-section-title,
.cid-v3urwrFg5u .title-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v3urwrFg5u .mbr-text,
.cid-v3urwrFg5u .text-wrapper {
  color: #515151;
  text-align: center;
}
.cid-v3urwrFg5u .panel-title-edit {
  color: #ffffff;
}
.cid-v3urwrFg5u .panel-text {
  color: #515151;
}
.cid-v3urwrFg5u .panel-text,
.cid-v3urwrFg5u .panel-body {
  color: #ffffff;
}
.cid-v3uoMGdfD4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3uoMGdfD4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3uoMGdfD4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3uoMGdfD4 .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v3uoMGdfD4 .google-map {
    margin-bottom: 48px;
  }
}
.cid-v3uoMGdfD4 .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v3uoMGdfD4 .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-v3uoMGdfD4 .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-v3uoMGdfD4 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3uoMGdfD4 .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-v3uoMGdfD4 .list-wrapper .list .item-wrap:hover,
.cid-v3uoMGdfD4 .list-wrapper .list .item-wrap:focus {
  color: #bff747;
}
.cid-v3uoMGdfD4 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3uoMGdfD4 .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v3uoMGdfD4 .social-wrapper {
    text-align: left;
  }
}
.cid-v3uoMGdfD4 .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v3uoMGdfD4 .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3uoMGdfD4 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3uoMGdfD4 .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #4b4b4b;
  color: #bff747;
}
.cid-v3uoMGdfD4 .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #fdfde1;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-v3uoMGdfD4 .list,
.cid-v3uoMGdfD4 .item-wrap,
.cid-v3uoMGdfD4 .social-wrapper {
  color: #fdfde1;
}
.cid-v3uoMH3ljb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3uoMH3ljb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3uoMH3ljb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3uoMH3ljb .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-v3uoMH3ljb .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-v3uoMH3ljb .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-v3uoMH3ljb .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-v3uoMH3ljb .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-v3uoMH3ljb .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-v3uoMH3ljb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3uoMH3ljb .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-v3uoMH3ljb .items-container {
    flex-wrap: wrap;
  }
}
.cid-v3uoMH3ljb .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-v3uoMH3ljb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-v3uoMH3ljb .footer-links {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}
@media (min-width: 992px) {
  .cid-v3uoMH3ljb .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-v3uoMH3ljb .footer-links {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    margin-top: 1.25rem;
  }
}
.cid-v3uoMH3ljb .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 1rem;
}
.cid-v3uoMH3ljb .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1B1F0A;
}
.cid-v3uoMH3ljb .list li {
  transition: 0.5s all;
}
.cid-v3uoMH3ljb .list li:hover {
  opacity: 0.6;
}
.cid-v3uoMH3ljb .item-wrap {
  margin-bottom: 12px;
}
.cid-v3uoMH3ljb .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-v3uoMH3ljb .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-v3uoMH3ljb .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-v3uoMH3ljb .mbr-iconfont {
  color: #000000;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-v3uoMH3ljb .copyright-col {
    text-align: center;
  }
}
.cid-v3uoMH3ljb .copyright {
  color: #000000;
}
.cid-v3urSiGhRi {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v3urSiGhRi nav.navbar {
  position: absolute !important;
}
.cid-v3urSiGhRi .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3urSiGhRi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v3urSiGhRi .nav-link {
  position: relative;
}
.cid-v3urSiGhRi .container {
  display: flex;
  margin: auto;
  position: fixed !important;
  left: 0;
  right: 0;
  width: 90%;
  max-width: 61.25rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 24px;
  background-color: #f3f4ef;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (min-width: 992px) {
  .cid-v3urSiGhRi .container {
    flex-wrap: nowrap;
  }
}
.cid-v3urSiGhRi .iconfont-wrapper {
  color: #1b1f0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v3urSiGhRi .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: row;
  max-width: 100%;
  padding: 4px !important;
  border-radius: 100vw;
  transition: .3s all !important;
  min-width: auto;
  background: #f3f4ef !important;
}
.cid-v3urSiGhRi .nav-item:focus,
.cid-v3urSiGhRi .nav-link:focus {
  outline: none;
}
.cid-v3urSiGhRi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3urSiGhRi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3urSiGhRi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3urSiGhRi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3urSiGhRi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3urSiGhRi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3urSiGhRi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-v3urSiGhRi .navbar.opened {
  transition: all 0.3s;
}
.cid-v3urSiGhRi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3urSiGhRi .navbar .navbar-logo img {
  width: auto;
}
.cid-v3urSiGhRi .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-v3urSiGhRi .navbar.collapsed {
  justify-content: center;
}
.cid-v3urSiGhRi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3urSiGhRi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3urSiGhRi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3urSiGhRi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3urSiGhRi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3urSiGhRi .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v3urSiGhRi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3urSiGhRi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3urSiGhRi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3urSiGhRi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3urSiGhRi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3urSiGhRi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3urSiGhRi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3urSiGhRi .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v3urSiGhRi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3urSiGhRi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3urSiGhRi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3urSiGhRi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3urSiGhRi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3urSiGhRi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3urSiGhRi .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3urSiGhRi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3urSiGhRi .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v3urSiGhRi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3urSiGhRi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3urSiGhRi .dropdown-item.active,
.cid-v3urSiGhRi .dropdown-item:active {
  background-color: transparent;
}
.cid-v3urSiGhRi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3urSiGhRi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3urSiGhRi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3urSiGhRi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3f4ef;
}
.cid-v3urSiGhRi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3urSiGhRi .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v3urSiGhRi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3urSiGhRi .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
.cid-v3urSiGhRi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3urSiGhRi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1b1f0a;
}
.cid-v3urSiGhRi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3urSiGhRi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3urSiGhRi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3urSiGhRi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3urSiGhRi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3urSiGhRi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3urSiGhRi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3urSiGhRi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3urSiGhRi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3urSiGhRi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3urSiGhRi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v3urSiGhRi .navbar {
    height: 70px;
  }
  .cid-v3urSiGhRi .navbar.opened {
    height: auto;
  }
  .cid-v3urSiGhRi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3urSiGhRi .navbar-nav .nav-item {
  margin: 0 8px !important;
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v3urSiGhRi .navbar-nav .nav-item .nav-link {
  padding: 12px 12px 12px 16px !important;
  margin: 0 !important;
  border-radius: 100vw !important;
  transition: .3s all !important;
}
.cid-v3urSiGhRi .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-v3urSiGhRi .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v3urSiGhRi .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v3urSiGhRi .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 100vw !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v3urSiGhRi .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-v3urSiGhRi .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-v3urSiGhRi .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v3urSiGhRi .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v3urSiGhRi .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v3urSiGhRi .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(90deg);
}
.cid-v3urSiGhRi .dropdown-submenu {
  position: relative;
  max-width: 500px !important;
  transform: translateX(-50%) !important;
  top: calc(100% + 8px) !important;
  left: 50% !important;
}
@media (min-width: 992px) {
  .cid-v3urSiGhRi .dropdown-submenu::before {
    content: "";
    width: 100%;
    height: 8px;
    bottom: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v3urSiGhRi .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v3urSiGhRi .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-v3urSiGhRi .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v3urSiGhRi .container {
    position: relative;
  }
  .cid-v3urSiGhRi .navbar-brand {
    margin-right: auto;
  }
  .cid-v3urSiGhRi .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 1rem 1rem  2rem;
    border-top: 2rem solid #f3f4ef;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    background: rgba(223, 224, 218, 0.94);
    backdrop-filter: blur(8px);
  }
  .cid-v3urSiGhRi .navbar-nav .nav-item .nav-link {
    justify-content: left;
  }
  .cid-v3urSiGhRi .navbar-nav .nav-item .nav-link::after {
    margin-left: auto;
  }
  .cid-v3urSiGhRi .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v3urSiGhRi .navbar .dropdown > .dropdown-menu {
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0);
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v3urSiGhRi .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v3urSiGhRi .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v3urSiGhRi .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v3urSiGhRi .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v3urSiGhRi .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v3urSiGhRi .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
.cid-v3urSiGhRi .navbar-fixed-top {
  position: absolute !important;
}
.cid-v3urSjFu5o {
  background-image: url("../../../assets/images/adobestock-86090219-scaled.jpg");
}
.cid-v3urSjFu5o .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3urSjFu5o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3urSjFu5o .mbr-section-title {
  color: #f3f4ef;
  margin-bottom: 16px;
}
.cid-v3urSjFu5o .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-v3urSjFu5o .mbr-section-subtitle {
  color: #f3f4ef;
  margin-bottom: 16px;
  text-align: left;
}
.cid-v3urSjFu5o .mbr-text {
  color: #f3f4ef;
  margin-bottom: 0;
}
.cid-v3urSjFu5o .mbr-section-btn {
  margin-top: 144px;
}
.cid-v3urSjFu5o .mbr-section-title,
.cid-v3urSjFu5o .mbr-section-btn {
  text-align: left;
}
.cid-v3urSkm6QW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3urSkm6QW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3urSkm6QW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-v3urSkm6QW .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v3urSkm6QW .container {
    padding: 0 12px;
  }
}
.cid-v3urSkm6QW .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v3urSkm6QW .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-v3urSkm6QW .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-v3urSkm6QW .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #4056d5;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-v3urSkm6QW .mbr-section-title {
  color: #000000;
}
.cid-v3urSl4i58 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3urSl4i58 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3urSl4i58 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3urSl4i58 .card-wrapper {
  background: #4056d5;
}
@media (max-width: 767px) {
  .cid-v3urSl4i58 .card-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v3urSl4i58 .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-v3urSl4i58 .card-wrapper {
    padding: 4rem;
  }
}
.cid-v3urSl4i58 .mbr-text,
.cid-v3urSl4i58 .mbr-section-btn {
  color: #ffffff;
}
.cid-v3urSl4i58 .card-title,
.cid-v3urSl4i58 .card-box {
  text-align: left;
  color: #ffd7ef;
}
.cid-v3urSlSepy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3urSlSepy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3urSlSepy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3urSlSepy .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v3urSlSepy .title-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3urSlSepy .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v3urSlSepy .image-wrapper {
  padding: 0 30px;
}
@media (max-width: 1200px) {
  .cid-v3urSlSepy .image-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-v3urSlSepy .image-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3urSlSepy .image-wrapper img {
  height: 405px;
  object-fit: cover;
  border-radius: 2rem;
}
@media (max-width: 992px) {
  .cid-v3urSlSepy .image-wrapper img {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-v3urSlSepy .text-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3urSlSepy .text-wrapper .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3urSlSepy .text-wrapper .mbr-text {
    margin-bottom: 15px;
  }
}
.cid-v3urSlSepy .mbr-section-title {
  color: #000000;
}
.cid-v3urSlSepy .mbr-desc {
  color: #000000;
}
.cid-v3urSlSepy .mbr-text {
  color: #000000;
}
.cid-v3urSmGd8m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #4056d5;
}
.cid-v3urSmGd8m .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3urSmGd8m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3urSmGd8m .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v3urSmGd8m .container-fluid {
    padding: 0;
  }
}
.cid-v3urSmGd8m .container-fluid .row {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v3urSmGd8m .container {
    padding: 0 30px;
  }
}
.cid-v3urSmGd8m .card {
  padding: 0;
}
.cid-v3urSmGd8m .card .card-wrapper {
  padding: 50px;
  border-radius: 3em;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v3urSmGd8m .card .card-wrapper {
    padding: 30px;
  }
}
.cid-v3urSmGd8m .card .card-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-v3urSmGd8m .mbr-text {
  color: #4e4e4e;
}
.cid-v3urSmGd8m .mbr-text,
.cid-v3urSmGd8m .mbr-section-btn {
  color: #000000;
}
.cid-v3urSnGZ3E {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/residential-areas.png");
}
.cid-v3urSnGZ3E .row {
  align-items: center;
  width: 100%;
}
.cid-v3urSnGZ3E .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-v3urSnGZ3E .mbr-section-title {
  color: #000000;
}
.cid-v3urSnGZ3E .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-v3urSnGZ3E .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-v3urSnGZ3E .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-v3urSnGZ3E .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-v3urSnGZ3E .text-container {
  padding: 32px;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-v3urSnGZ3E .text-container {
    padding: 24px;
  }
}
.cid-v3urSnGZ3E .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-v3urSnGZ3E .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-v3urSnGZ3E .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #32fc1d;
}
.cid-v3urSnGZ3E .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 0;
  text-align: center;
}
.cid-v3urSnGZ3E .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-v3urSpCZCG {
  background-color: #ffffff !important;
  border: 18px solid #ffffff;
  margin-top: -18px;
}
@media (max-width: 768px) {
  .cid-v3urSpCZCG {
    border: 8px solid #ffffff;
    margin-top: -8px;
  }
}
.cid-v3urSpCZCG .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-v3urSpCZCG section .mbr-background-video-preview {
  border-radius: 1.2rem !important;
}
.cid-v3urSpCZCG .row {
  position: relative;
  padding: 0 18px 0;
  margin: 0;
  justify-content: center;
  border-radius: 1.2em;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v3urSpCZCG .row .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3urSpCZCG .row .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-v3urSpCZCG .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-v3urSpCZCG .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v3urSpCZCG .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v3urSpCZCG .title-wrapper .image-wrapper {
  margin-top: 72px;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v3urSpCZCG .title-wrapper .image-wrapper {
    height: auto;
    margin-top: 30px;
  }
}
.cid-v3urSpCZCG .title-wrapper .image-wrapper img {
  height: 450px;
  width: 80%;
  object-fit: cover;
  border-radius: 1.2em;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-v3urSpCZCG .title-wrapper .image-wrapper img {
    height: 300px;
    width: 100%;
    margin: 0;
  }
}
.cid-v3urSpCZCG .title-wrapper .mbr-section-btn {
  margin-top: 30px;
}
.cid-v3urSpCZCG .mbr-section-title {
  color: #ed2c03;
}
.cid-v3urSpCZCG .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-v3urSpCZCG .mbr-section-title,
.cid-v3urSpCZCG .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-v3urSrGg7u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #4056d5;
}
.cid-v3urSrGg7u .row {
  align-items: center;
  width: 100%;
}
.cid-v3urSrGg7u .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-v3urSrGg7u .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-v3urSrGg7u .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-v3urSrGg7u .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v3urSrGg7u .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-v3urSrGg7u .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-v3urSrGg7u .content-container {
    padding: 2rem !important;
  }
}
.cid-v3urSrGg7u .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-v3urSrGg7u .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-v3urSrGg7u .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-v3urSrGg7u .img-container {
    padding-right: 0;
  }
}
.cid-v3urSrGg7u .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-v3urSrGg7u .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-v3urSrGg7u .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-v3urSrGg7u .text-container {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-v3urSrGg7u .text-container {
    padding-left: 0;
  }
}
.cid-v3urSrGg7u .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-v3urSrGg7u .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-v3urSrGg7u .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-v3urSrGg7u .card-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 4px;
}
.cid-v3urSrGg7u .mbr-text {
  letter-spacing: inherit;
  color: #1B1F0A;
  width: 100%;
  margin-bottom: 32px;
}
.cid-v3urStfoOY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3urStfoOY .row {
  align-items: center;
  width: 100%;
}
.cid-v3urStfoOY .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-v3urStfoOY .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-v3urStfoOY .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-v3urStfoOY .content-container {
  display: flex;
  padding: 60px !important;
}
@media (max-width: 991px) {
  .cid-v3urStfoOY .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-v3urStfoOY .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-v3urStfoOY .content-container {
    padding: 2rem !important;
  }
}
.cid-v3urStfoOY .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-v3urStfoOY .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-v3urStfoOY .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-v3urStfoOY .img-container {
    padding-right: 0;
  }
}
.cid-v3urStfoOY .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-v3urStfoOY .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-v3urStfoOY .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-v3urStfoOY .text-container {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-v3urStfoOY .text-container {
    padding-left: 0;
  }
}
.cid-v3urStfoOY .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-v3urStfoOY .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-v3urStfoOY .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-v3urStfoOY .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 4px;
}
.cid-v3urStfoOY .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 32px;
}
.cid-v3urSufSgW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #4056d5;
}
.cid-v3urSufSgW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3urSufSgW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3urSufSgW .row {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-v3urSufSgW .row {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.cid-v3urSufSgW .col-img {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-v3urSufSgW .col-img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-v3urSufSgW .img-container {
  display: flex;
  padding: 4.75rem 4rem;
  background-color: #ffffff;
}
.cid-v3urSufSgW .img-container img {
  max-width: 100%;
}
.cid-v3urSufSgW .col-toggle {
  width: 50%;
  padding-right: 4rem !important;
  padding-left: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-v3urSufSgW .col-toggle {
    padding-right: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-v3urSufSgW .col-toggle {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-v3urSufSgW .section-head {
  margin-bottom: 0;
}
.cid-v3urSufSgW .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-v3urSufSgW .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-v3urSufSgW .toggle-panel {
  margin-top: 40px;
}
.cid-v3urSufSgW .card {
  border-bottom: 1px solid rgba(243, 244, 239, 0.12);
  transition: .3s all;
  border-radius: 0 !important;
}
.cid-v3urSufSgW .card:hover {
  margin-left: 1rem;
}
.cid-v3urSufSgW .card-header {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: transparent;
  margin-bottom: 8px;
  border: none !important;
  padding: 0 !important;
}
.cid-v3urSufSgW .card-header .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.cid-v3urSufSgW .card-header .iconfont-wrapper .mbr-iconfont {
  color: #ddff55;
  font-size: 32px;
}
.cid-v3urSufSgW .sign {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  color: #ffffff;
  transition: .3s all;
}
.cid-v3urSufSgW .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.cid-v3urSufSgW .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
  padding-left: 0;
  padding-right: 1rem;
}
.cid-v3urSufSgW .panel-body {
  margin-bottom: 8px;
  margin-left: 10%;
  width: 100%;
  max-width: 85%;
}
.cid-v3urSufSgW .panel-title-edit {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-v3urSufSgW .panel-text {
  color: #000000;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-v3urSvASdw {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-v3urSvASdw .container {
    padding: 0 24px;
  }
}
.cid-v3urSvASdw .card {
  justify-content: center;
}
.cid-v3urSvASdw .title-wrapper {
  padding: 0 32px 32px;
}
@media (max-width: 992px) {
  .cid-v3urSvASdw .title-wrapper {
    padding: 0 24px 24px;
  }
}
.cid-v3urSvASdw .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v3urSvASdw .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-v3urSvASdw .text-wrapper {
  border-top: 1px solid #72716b;
  display: flex;
  justify-content: space-between;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-v3urSvASdw .text-wrapper {
    display: block;
    padding: 24px;
  }
}
.cid-v3urSvASdw .text-wrapper .mbr-text {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-v3urSvASdw .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v3urSvASdw .text-wrapper .mbr-text:last-child {
    margin-bottom: 0;
  }
}
.cid-v3urSvASdw .mbr-section-title {
  color: #F9F6E0;
}
.cid-v3urSvASdw .mbr-desc {
  color: #F9F6E0;
}
.cid-v3urSvASdw .mbr-text {
  color: #000000;
}
.cid-v3urSvASdw .mbr-section-btn {
  text-align: right;
}
.cid-v3urSvASdw .mbr-section-title,
.cid-v3urSvASdw .mbr-section-btn {
  color: #000000;
}
.cid-v3K8DZaCiD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3K8DZaCiD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3K8DZaCiD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-v3K8DZaCiD .container {
    padding: 0 20px;
  }
}
.cid-v3K8DZaCiD .row {
  margin: 0;
}
.cid-v3K8DZaCiD .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v3K8DZaCiD .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v3K8DZaCiD .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-v3K8DZaCiD .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-v3K8DZaCiD .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-v3K8DZaCiD .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-v3K8DZaCiD .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v3urSwpTVG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/cctv-8.jpg");
  display: flex;
  align-items: center;
}
.cid-v3urSwpTVG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3urSwpTVG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3urSwpTVG .row {
  justify-content: flex-start;
}
.cid-v3urSwpTVG .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-v3urSwpTVG .mbr-text {
  color: #000000;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-v3urSxg17I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3urSxg17I .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3urSxg17I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3urSxg17I .content-wrapper {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-v3urSxg17I .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v3urSxg17I .content-wrapper .label-wrapper {
  margin-bottom: 32px;
}
.cid-v3urSxg17I .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-top: 2px solid #ffffff;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.cid-v3urSxg17I .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  display: inline-block;
  margin-right: 8px;
}
.cid-v3urSxg17I .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-v3urSxg17I .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #f5f5f5, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-v3urSxg17I .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v3urSxg17I .panel-group .card {
  position: relative;
  padding: 7px 16px;
  background-color: #4056d5;
  border-top: 3px solid #ffffff;
  box-shadow: 0 8px 15px -8px #ffffff;
  transition: all 0.3s ease-in-out;
  margin-bottom: 16px;
}
.cid-v3urSxg17I .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v3urSxg17I .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-v3urSxg17I .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-v3urSxg17I .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: 24px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
}
.cid-v3urSxg17I .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
}
.cid-v3urSxg17I .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-v3urSxg17I .panel-group .card .panel-collapse .panel-body {
  padding: 8px 0;
}
.cid-v3urSxg17I .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 95%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-v3urSxg17I .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-v3urSxg17I .mbr-label,
.cid-v3urSxg17I .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v3urSxg17I .mbr-section-title,
.cid-v3urSxg17I .title-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v3urSxg17I .mbr-text,
.cid-v3urSxg17I .text-wrapper {
  color: #515151;
  text-align: center;
}
.cid-v3urSxg17I .panel-title-edit {
  color: #ffffff;
}
.cid-v3urSxg17I .panel-text {
  color: #515151;
}
.cid-v3urSxg17I .panel-text,
.cid-v3urSxg17I .panel-body {
  color: #ffffff;
}
.cid-v3urSyo2uJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3urSyo2uJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3urSyo2uJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3urSyo2uJ .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v3urSyo2uJ .google-map {
    margin-bottom: 48px;
  }
}
.cid-v3urSyo2uJ .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v3urSyo2uJ .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-v3urSyo2uJ .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-v3urSyo2uJ .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3urSyo2uJ .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-v3urSyo2uJ .list-wrapper .list .item-wrap:hover,
.cid-v3urSyo2uJ .list-wrapper .list .item-wrap:focus {
  color: #bff747;
}
.cid-v3urSyo2uJ .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3urSyo2uJ .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v3urSyo2uJ .social-wrapper {
    text-align: left;
  }
}
.cid-v3urSyo2uJ .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v3urSyo2uJ .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3urSyo2uJ .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3urSyo2uJ .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #4b4b4b;
  color: #bff747;
}
.cid-v3urSyo2uJ .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #fdfde1;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-v3urSyo2uJ .list,
.cid-v3urSyo2uJ .item-wrap,
.cid-v3urSyo2uJ .social-wrapper {
  color: #fdfde1;
}
.cid-v3urSzvZbm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3urSzvZbm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3urSzvZbm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3urSzvZbm .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-v3urSzvZbm .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-v3urSzvZbm .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-v3urSzvZbm .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-v3urSzvZbm .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-v3urSzvZbm .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-v3urSzvZbm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3urSzvZbm .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-v3urSzvZbm .items-container {
    flex-wrap: wrap;
  }
}
.cid-v3urSzvZbm .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-v3urSzvZbm .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-v3urSzvZbm .footer-links {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}
@media (min-width: 992px) {
  .cid-v3urSzvZbm .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-v3urSzvZbm .footer-links {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    margin-top: 1.25rem;
  }
}
.cid-v3urSzvZbm .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 1rem;
}
.cid-v3urSzvZbm .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1B1F0A;
}
.cid-v3urSzvZbm .list li {
  transition: 0.5s all;
}
.cid-v3urSzvZbm .list li:hover {
  opacity: 0.6;
}
.cid-v3urSzvZbm .item-wrap {
  margin-bottom: 12px;
}
.cid-v3urSzvZbm .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-v3urSzvZbm .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-v3urSzvZbm .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-v3urSzvZbm .mbr-iconfont {
  color: #000000;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-v3urSzvZbm .copyright-col {
    text-align: center;
  }
}
.cid-v3urSzvZbm .copyright {
  color: #000000;
}
.cid-v3utLGsHAJ {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-v3utLGsHAJ nav.navbar {
  position: absolute !important;
}
.cid-v3utLGsHAJ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3utLGsHAJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-v3utLGsHAJ .nav-link {
  position: relative;
}
.cid-v3utLGsHAJ .container {
  display: flex;
  margin: auto;
  position: fixed !important;
  left: 0;
  right: 0;
  width: 90%;
  max-width: 61.25rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 24px;
  background-color: #f3f4ef;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (min-width: 992px) {
  .cid-v3utLGsHAJ .container {
    flex-wrap: nowrap;
  }
}
.cid-v3utLGsHAJ .iconfont-wrapper {
  color: #1b1f0a !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v3utLGsHAJ .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: row;
  max-width: 100%;
  padding: 4px !important;
  border-radius: 100vw;
  transition: .3s all !important;
  min-width: auto;
  background: #f3f4ef !important;
}
.cid-v3utLGsHAJ .nav-item:focus,
.cid-v3utLGsHAJ .nav-link:focus {
  outline: none;
}
.cid-v3utLGsHAJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3utLGsHAJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3utLGsHAJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3utLGsHAJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3utLGsHAJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3utLGsHAJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3utLGsHAJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-v3utLGsHAJ .navbar.opened {
  transition: all 0.3s;
}
.cid-v3utLGsHAJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3utLGsHAJ .navbar .navbar-logo img {
  width: auto;
}
.cid-v3utLGsHAJ .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-v3utLGsHAJ .navbar.collapsed {
  justify-content: center;
}
.cid-v3utLGsHAJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3utLGsHAJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3utLGsHAJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3utLGsHAJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3utLGsHAJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3utLGsHAJ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v3utLGsHAJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3utLGsHAJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3utLGsHAJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3utLGsHAJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3utLGsHAJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3utLGsHAJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3utLGsHAJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3utLGsHAJ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v3utLGsHAJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3utLGsHAJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3utLGsHAJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3utLGsHAJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3utLGsHAJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3utLGsHAJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3utLGsHAJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3utLGsHAJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3utLGsHAJ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v3utLGsHAJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3utLGsHAJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3utLGsHAJ .dropdown-item.active,
.cid-v3utLGsHAJ .dropdown-item:active {
  background-color: transparent;
}
.cid-v3utLGsHAJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3utLGsHAJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3utLGsHAJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3utLGsHAJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3f4ef;
}
.cid-v3utLGsHAJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3utLGsHAJ .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-v3utLGsHAJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3utLGsHAJ .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
.cid-v3utLGsHAJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3utLGsHAJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1b1f0a;
}
.cid-v3utLGsHAJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3utLGsHAJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3utLGsHAJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3utLGsHAJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3utLGsHAJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3utLGsHAJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3utLGsHAJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3utLGsHAJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3utLGsHAJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3utLGsHAJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3utLGsHAJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v3utLGsHAJ .navbar {
    height: 70px;
  }
  .cid-v3utLGsHAJ .navbar.opened {
    height: auto;
  }
  .cid-v3utLGsHAJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3utLGsHAJ .navbar-nav .nav-item {
  margin: 0 8px !important;
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-v3utLGsHAJ .navbar-nav .nav-item .nav-link {
  padding: 12px 12px 12px 16px !important;
  margin: 0 !important;
  border-radius: 100vw !important;
  transition: .3s all !important;
}
.cid-v3utLGsHAJ .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-v3utLGsHAJ .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-v3utLGsHAJ .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v3utLGsHAJ .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 100vw !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-v3utLGsHAJ .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-v3utLGsHAJ .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-v3utLGsHAJ .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-v3utLGsHAJ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-v3utLGsHAJ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-v3utLGsHAJ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(90deg);
}
.cid-v3utLGsHAJ .dropdown-submenu {
  position: relative;
  max-width: 500px !important;
  transform: translateX(-50%) !important;
  top: calc(100% + 8px) !important;
  left: 50% !important;
}
@media (min-width: 992px) {
  .cid-v3utLGsHAJ .dropdown-submenu::before {
    content: "";
    width: 100%;
    height: 8px;
    bottom: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-v3utLGsHAJ .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-v3utLGsHAJ .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-v3utLGsHAJ .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-v3utLGsHAJ .container {
    position: relative;
  }
  .cid-v3utLGsHAJ .navbar-brand {
    margin-right: auto;
  }
  .cid-v3utLGsHAJ .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 1rem 1rem  2rem;
    border-top: 2rem solid #f3f4ef;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    background: rgba(223, 224, 218, 0.94);
    backdrop-filter: blur(8px);
  }
  .cid-v3utLGsHAJ .navbar-nav .nav-item .nav-link {
    justify-content: left;
  }
  .cid-v3utLGsHAJ .navbar-nav .nav-item .nav-link::after {
    margin-left: auto;
  }
  .cid-v3utLGsHAJ .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-v3utLGsHAJ .navbar .dropdown > .dropdown-menu {
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0);
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v3utLGsHAJ .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-v3utLGsHAJ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-v3utLGsHAJ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-v3utLGsHAJ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-v3utLGsHAJ .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-v3utLGsHAJ .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
.cid-v3utLGsHAJ .navbar-fixed-top {
  position: absolute !important;
}
.cid-v3utLHv7js {
  background-image: url("../../../assets/images/1638176883058-burglar-alarm-installation.jpg");
}
.cid-v3utLHv7js .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3utLHv7js .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3utLHv7js .mbr-section-title {
  color: #f3f4ef;
  margin-bottom: 16px;
}
.cid-v3utLHv7js .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ddff55;
}
.cid-v3utLHv7js .mbr-section-subtitle {
  color: #f3f4ef;
  margin-bottom: 16px;
  text-align: left;
}
.cid-v3utLHv7js .mbr-text {
  color: #f3f4ef;
  margin-bottom: 0;
}
.cid-v3utLHv7js .mbr-section-btn {
  margin-top: 144px;
}
.cid-v3utLHv7js .mbr-section-title,
.cid-v3utLHv7js .mbr-section-btn {
  text-align: left;
}
.cid-v3utLIhr93 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3utLIhr93 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3utLIhr93 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-v3utLIhr93 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v3utLIhr93 .container {
    padding: 0 12px;
  }
}
.cid-v3utLIhr93 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v3utLIhr93 .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-v3utLIhr93 .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-v3utLIhr93 .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #4056d5;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-v3utLIhr93 .mbr-section-title {
  color: #000000;
}
.cid-v3utLIU02J {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3utLIU02J .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3utLIU02J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3utLIU02J .card-wrapper {
  background: #4056d5;
}
@media (max-width: 767px) {
  .cid-v3utLIU02J .card-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v3utLIU02J .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-v3utLIU02J .card-wrapper {
    padding: 4rem;
  }
}
.cid-v3utLIU02J .mbr-text,
.cid-v3utLIU02J .mbr-section-btn {
  color: #ffffff;
}
.cid-v3utLIU02J .card-title,
.cid-v3utLIU02J .card-box {
  text-align: left;
  color: #ffd7ef;
}
.cid-v3utLJwju4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3utLJwju4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3utLJwju4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3utLJwju4 .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v3utLJwju4 .title-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3utLJwju4 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v3utLJwju4 .image-wrapper {
  padding: 0 30px;
}
@media (max-width: 1200px) {
  .cid-v3utLJwju4 .image-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-v3utLJwju4 .image-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3utLJwju4 .image-wrapper img {
  height: 405px;
  object-fit: cover;
  border-radius: 2rem;
}
@media (max-width: 992px) {
  .cid-v3utLJwju4 .image-wrapper img {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-v3utLJwju4 .text-wrapper {
    margin-bottom: 35px;
  }
}
.cid-v3utLJwju4 .text-wrapper .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3utLJwju4 .text-wrapper .mbr-text {
    margin-bottom: 15px;
  }
}
.cid-v3utLJwju4 .mbr-section-title {
  color: #000000;
}
.cid-v3utLJwju4 .mbr-desc {
  color: #000000;
}
.cid-v3utLJwju4 .mbr-text {
  color: #000000;
}
.cid-v3utLKbeFh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #4056d5;
}
.cid-v3utLKbeFh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3utLKbeFh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3utLKbeFh .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v3utLKbeFh .container-fluid {
    padding: 0;
  }
}
.cid-v3utLKbeFh .container-fluid .row {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v3utLKbeFh .container {
    padding: 0 30px;
  }
}
.cid-v3utLKbeFh .card {
  padding: 0;
}
.cid-v3utLKbeFh .card .card-wrapper {
  padding: 50px;
  border-radius: 3em;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v3utLKbeFh .card .card-wrapper {
    padding: 30px;
  }
}
.cid-v3utLKbeFh .card .card-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-v3utLKbeFh .mbr-text {
  color: #4e4e4e;
}
.cid-v3utLKbeFh .mbr-text,
.cid-v3utLKbeFh .mbr-section-btn {
  color: #000000;
}
.cid-v3utLL12Dw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/intrusion-1.jpg");
}
.cid-v3utLL12Dw .row {
  align-items: center;
  width: 100%;
}
.cid-v3utLL12Dw .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-v3utLL12Dw .mbr-section-title {
  color: #000000;
}
.cid-v3utLL12Dw .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-v3utLL12Dw .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-v3utLL12Dw .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-v3utLL12Dw .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-v3utLL12Dw .text-container {
  padding: 32px;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-v3utLL12Dw .text-container {
    padding: 24px;
  }
}
.cid-v3utLL12Dw .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-v3utLL12Dw .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-v3utLL12Dw .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #32fc1d;
}
.cid-v3utLL12Dw .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 0;
  text-align: center;
}
.cid-v3utLL12Dw .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-v3utLMFvtT {
  background-color: #ffffff !important;
  border: 18px solid #ffffff;
  margin-top: -18px;
}
@media (max-width: 768px) {
  .cid-v3utLMFvtT {
    border: 8px solid #ffffff;
    margin-top: -8px;
  }
}
.cid-v3utLMFvtT .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-v3utLMFvtT section .mbr-background-video-preview {
  border-radius: 1.2rem !important;
}
.cid-v3utLMFvtT .row {
  position: relative;
  padding: 0 18px 0;
  margin: 0;
  justify-content: center;
  border-radius: 1.2em;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v3utLMFvtT .row .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3utLMFvtT .row .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-v3utLMFvtT .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-v3utLMFvtT .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v3utLMFvtT .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v3utLMFvtT .title-wrapper .image-wrapper {
  margin-top: 72px;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v3utLMFvtT .title-wrapper .image-wrapper {
    height: auto;
    margin-top: 30px;
  }
}
.cid-v3utLMFvtT .title-wrapper .image-wrapper img {
  height: 450px;
  width: 80%;
  object-fit: cover;
  border-radius: 1.2em;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-v3utLMFvtT .title-wrapper .image-wrapper img {
    height: 300px;
    width: 100%;
    margin: 0;
  }
}
.cid-v3utLMFvtT .title-wrapper .mbr-section-btn {
  margin-top: 30px;
}
.cid-v3utLMFvtT .mbr-section-title {
  color: #ed2c03;
}
.cid-v3utLMFvtT .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-v3utLMFvtT .mbr-section-title,
.cid-v3utLMFvtT .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-v3utLNO7SZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #4056d5;
}
.cid-v3utLNO7SZ .row {
  align-items: center;
  width: 100%;
}
.cid-v3utLNO7SZ .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-v3utLNO7SZ .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-v3utLNO7SZ .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-v3utLNO7SZ .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v3utLNO7SZ .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-v3utLNO7SZ .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-v3utLNO7SZ .content-container {
    padding: 2rem !important;
  }
}
.cid-v3utLNO7SZ .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-v3utLNO7SZ .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-v3utLNO7SZ .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-v3utLNO7SZ .img-container {
    padding-right: 0;
  }
}
.cid-v3utLNO7SZ .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-v3utLNO7SZ .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-v3utLNO7SZ .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-v3utLNO7SZ .text-container {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-v3utLNO7SZ .text-container {
    padding-left: 0;
  }
}
.cid-v3utLNO7SZ .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-v3utLNO7SZ .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-v3utLNO7SZ .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-v3utLNO7SZ .card-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 4px;
}
.cid-v3utLNO7SZ .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 32px;
}
.cid-v3utLPni39 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3utLPni39 .row {
  align-items: center;
  width: 100%;
}
.cid-v3utLPni39 .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-v3utLPni39 .mbr-section-title {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
}
.cid-v3utLPni39 .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-v3utLPni39 .content-container {
  display: flex;
  padding: 60px !important;
}
@media (max-width: 991px) {
  .cid-v3utLPni39 .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-v3utLPni39 .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-v3utLPni39 .content-container {
    padding: 2rem !important;
  }
}
.cid-v3utLPni39 .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-v3utLPni39 .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-v3utLPni39 .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-v3utLPni39 .img-container {
    padding-right: 0;
  }
}
.cid-v3utLPni39 .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-v3utLPni39 .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-v3utLPni39 .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-v3utLPni39 .text-container {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-v3utLPni39 .text-container {
    padding-left: 0;
  }
}
.cid-v3utLPni39 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-v3utLPni39 .label-text {
  width: 100%;
  color: #1B1F0A;
  padding: 0.375rem 0;
}
.cid-v3utLPni39 .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-v3utLPni39 .card-title {
  width: 100%;
  color: #000000;
  margin-bottom: 4px;
}
.cid-v3utLPni39 .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 32px;
}
.cid-v3utLQUK75 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #4056d5;
}
.cid-v3utLQUK75 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3utLQUK75 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3utLQUK75 .row {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-v3utLQUK75 .row {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.cid-v3utLQUK75 .col-img {
  display: flex;
  align-items: center;
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-v3utLQUK75 .col-img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-v3utLQUK75 .img-container {
  display: flex;
  padding: 4.75rem 4rem;
  background-color: #ffffff;
}
.cid-v3utLQUK75 .img-container img {
  max-width: 100%;
}
.cid-v3utLQUK75 .col-toggle {
  width: 50%;
  padding-right: 4rem !important;
  padding-left: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-v3utLQUK75 .col-toggle {
    padding-right: 2rem !important;
  }
}
@media (max-width: 767px) {
  .cid-v3utLQUK75 .col-toggle {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-v3utLQUK75 .section-head {
  margin-bottom: 0;
}
.cid-v3utLQUK75 .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-v3utLQUK75 .mbr-section-subtitle {
  color: #000000;
  opacity: 0.8;
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-v3utLQUK75 .toggle-panel {
  margin-top: 40px;
}
.cid-v3utLQUK75 .card {
  border-bottom: 1px solid rgba(243, 244, 239, 0.12);
  transition: .3s all;
  border-radius: 0 !important;
}
.cid-v3utLQUK75 .card:hover {
  margin-left: 1rem;
}
.cid-v3utLQUK75 .card-header {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: transparent;
  margin-bottom: 8px;
  border: none !important;
  padding: 0 !important;
}
.cid-v3utLQUK75 .card-header .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.cid-v3utLQUK75 .card-header .iconfont-wrapper .mbr-iconfont {
  color: #ddff55;
  font-size: 32px;
}
.cid-v3utLQUK75 .sign {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1rem !important;
  color: #ffffff;
  transition: .3s all;
}
.cid-v3utLQUK75 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.cid-v3utLQUK75 .panel-title[aria-expanded="true"] .sign {
  transform: rotate(180deg);
  padding-left: 0;
  padding-right: 1rem;
}
.cid-v3utLQUK75 .panel-body {
  margin-bottom: 8px;
  margin-left: 10%;
  width: 100%;
  max-width: 85%;
}
.cid-v3utLQUK75 .panel-title-edit {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-v3utLQUK75 .panel-text {
  color: #000000;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-v3utLT7Qx4 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-v3utLT7Qx4 .container {
    padding: 0 24px;
  }
}
.cid-v3utLT7Qx4 .card {
  justify-content: center;
}
.cid-v3utLT7Qx4 .title-wrapper {
  padding: 0 32px 32px;
}
@media (max-width: 992px) {
  .cid-v3utLT7Qx4 .title-wrapper {
    padding: 0 24px 24px;
  }
}
.cid-v3utLT7Qx4 .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v3utLT7Qx4 .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-v3utLT7Qx4 .text-wrapper {
  border-top: 1px solid #72716b;
  display: flex;
  justify-content: space-between;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-v3utLT7Qx4 .text-wrapper {
    display: block;
    padding: 24px;
  }
}
.cid-v3utLT7Qx4 .text-wrapper .mbr-text {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-v3utLT7Qx4 .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v3utLT7Qx4 .text-wrapper .mbr-text:last-child {
    margin-bottom: 0;
  }
}
.cid-v3utLT7Qx4 .mbr-section-title {
  color: #F9F6E0;
}
.cid-v3utLT7Qx4 .mbr-desc {
  color: #F9F6E0;
}
.cid-v3utLT7Qx4 .mbr-text {
  color: #000000;
}
.cid-v3utLT7Qx4 .mbr-section-btn {
  text-align: right;
}
.cid-v3utLT7Qx4 .mbr-section-title,
.cid-v3utLT7Qx4 .mbr-section-btn {
  color: #000000;
}
.cid-v3K996umjw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3K996umjw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3K996umjw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-v3K996umjw .container {
    padding: 0 20px;
  }
}
.cid-v3K996umjw .row {
  margin: 0;
}
.cid-v3K996umjw .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v3K996umjw .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v3K996umjw .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-v3K996umjw .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-v3K996umjw .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-v3K996umjw .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-v3K996umjw .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v3utLU8MMo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/adt-home-security-digital-panel.png");
  display: flex;
  align-items: center;
}
.cid-v3utLU8MMo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3utLU8MMo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3utLU8MMo .row {
  justify-content: flex-start;
}
.cid-v3utLU8MMo .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-v3utLU8MMo .mbr-text {
  color: #000000;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-v3utLUVMlO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3utLUVMlO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3utLUVMlO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3utLUVMlO .content-wrapper {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-v3utLUVMlO .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v3utLUVMlO .content-wrapper .label-wrapper {
  margin-bottom: 32px;
}
.cid-v3utLUVMlO .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-top: 2px solid #ffffff;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.cid-v3utLUVMlO .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  display: inline-block;
  margin-right: 8px;
}
.cid-v3utLUVMlO .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-v3utLUVMlO .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #f5f5f5, #000000 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-v3utLUVMlO .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v3utLUVMlO .panel-group .card {
  position: relative;
  padding: 7px 16px;
  background-color: #4056d5;
  border-top: 3px solid #ffffff;
  box-shadow: 0 8px 15px -8px #ffffff;
  transition: all 0.3s ease-in-out;
  margin-bottom: 16px;
}
.cid-v3utLUVMlO .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v3utLUVMlO .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-v3utLUVMlO .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-v3utLUVMlO .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: 24px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
}
.cid-v3utLUVMlO .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
}
.cid-v3utLUVMlO .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-v3utLUVMlO .panel-group .card .panel-collapse .panel-body {
  padding: 8px 0;
}
.cid-v3utLUVMlO .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 95%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-v3utLUVMlO .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-v3utLUVMlO .mbr-label,
.cid-v3utLUVMlO .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v3utLUVMlO .mbr-section-title,
.cid-v3utLUVMlO .title-wrapper {
  color: #000000;
  text-align: center;
}
.cid-v3utLUVMlO .mbr-text,
.cid-v3utLUVMlO .text-wrapper {
  color: #515151;
  text-align: center;
}
.cid-v3utLUVMlO .panel-title-edit {
  color: #ffffff;
}
.cid-v3utLUVMlO .panel-text {
  color: #515151;
}
.cid-v3utLUVMlO .panel-text,
.cid-v3utLUVMlO .panel-body {
  color: #ffffff;
}
.cid-v3utLVXy8N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3utLVXy8N .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3utLVXy8N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3utLVXy8N .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v3utLVXy8N .google-map {
    margin-bottom: 48px;
  }
}
.cid-v3utLVXy8N .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v3utLVXy8N .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-v3utLVXy8N .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-v3utLVXy8N .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v3utLVXy8N .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-v3utLVXy8N .list-wrapper .list .item-wrap:hover,
.cid-v3utLVXy8N .list-wrapper .list .item-wrap:focus {
  color: #bff747;
}
.cid-v3utLVXy8N .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v3utLVXy8N .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v3utLVXy8N .social-wrapper {
    text-align: left;
  }
}
.cid-v3utLVXy8N .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v3utLVXy8N .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v3utLVXy8N .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v3utLVXy8N .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #4b4b4b;
  color: #bff747;
}
.cid-v3utLVXy8N .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #fdfde1;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-v3utLVXy8N .list,
.cid-v3utLVXy8N .item-wrap,
.cid-v3utLVXy8N .social-wrapper {
  color: #fdfde1;
}
.cid-v3utLX7JQp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3utLX7JQp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3utLX7JQp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3utLX7JQp .logo-container {
  max-width: 50%;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .cid-v3utLX7JQp .logo-container {
    width: 100%;
    padding-right: 0;
  }
}
.cid-v3utLX7JQp .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
}
.cid-v3utLX7JQp .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-v3utLX7JQp .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-v3utLX7JQp .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-v3utLX7JQp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3utLX7JQp .items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-v3utLX7JQp .items-container {
    flex-wrap: wrap;
  }
}
.cid-v3utLX7JQp .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cid-v3utLX7JQp .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.cid-v3utLX7JQp .footer-links {
  display: grid;
  grid-column-gap: 0.5rem;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}
@media (min-width: 992px) {
  .cid-v3utLX7JQp .footer-links {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-v3utLX7JQp .footer-links {
    width: 100%;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    margin-top: 1.25rem;
  }
}
.cid-v3utLX7JQp .mbr-section-subtitle {
  color: #1B1F0A;
  margin-bottom: 1rem;
}
.cid-v3utLX7JQp .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1B1F0A;
}
.cid-v3utLX7JQp .list li {
  transition: 0.5s all;
}
.cid-v3utLX7JQp .list li:hover {
  opacity: 0.6;
}
.cid-v3utLX7JQp .item-wrap {
  margin-bottom: 12px;
}
.cid-v3utLX7JQp .mbr-section-btn {
  margin-bottom: -0.6rem;
}
.cid-v3utLX7JQp .mbr-section-btn .btn {
  padding: 0.5rem 1rem;
}
.cid-v3utLX7JQp .footer-separator {
  height: 1px;
  border: none;
  background: #1B1F0A;
  margin: 1.75rem 0 2.5rem;
  outline: none;
}
.cid-v3utLX7JQp .mbr-iconfont {
  color: #000000;
  font-size: 16px;
}
@media (max-width: 767px) {
  .cid-v3utLX7JQp .copyright-col {
    text-align: center;
  }
}
.cid-v3utLX7JQp .copyright {
  color: #000000;
}
