body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.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.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((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.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (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.4 * (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: #161be7 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #161be7 !important;
  border-color: #161be7 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0e1298 !important;
  border-color: #0e1298 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0e1298 !important;
  border-color: #0e1298 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #edb5bf !important;
  border-color: #edb5bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #dc6f83 !important;
  border-color: #dc6f83 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #dc6f83 !important;
  border-color: #dc6f83 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !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:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 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,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #161be7;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0e1298 !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: #161be7 !important;
  border-color: #161be7 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #edb5bf;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #dc6f83 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #edb5bf !important;
  border-color: #edb5bf !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: 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: #161be7 !important;
}
.text-secondary {
  color: #edb5bf !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0d108a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #d96378 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !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: #161be7;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #161be7;
  border-color: #161be7;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #161be7;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #cfd0fa;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.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: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #161be7 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #161be7;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #161be7;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #161be7;
}
.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: #161be7;
  border-bottom-color: #161be7;
}
.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: #161be7 !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: #edb5bf !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='%23161be7' %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;
}
.cid-sFGMsvHDIa .navbar-dropdown {
  position: relative !important;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFGMsvHDIa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFGMsvHDIa .dropdown-item:hover,
.cid-sFGMsvHDIa .dropdown-item:focus {
  background: #161be7 !important;
  color: white !important;
}
.cid-sFGMsvHDIa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFGMsvHDIa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFGMsvHDIa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFGMsvHDIa .nav-link {
  position: relative;
}
.cid-sFGMsvHDIa .container {
  display: flex;
  margin: auto;
}
.cid-sFGMsvHDIa .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFGMsvHDIa .dropdown-menu,
.cid-sFGMsvHDIa .navbar.opened {
  background: #ff9966 !important;
}
.cid-sFGMsvHDIa .nav-item:focus,
.cid-sFGMsvHDIa .nav-link:focus {
  outline: none;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFGMsvHDIa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFGMsvHDIa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFGMsvHDIa .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff9966;
}
.cid-sFGMsvHDIa .navbar.opened {
  transition: all 0.3s;
}
.cid-sFGMsvHDIa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFGMsvHDIa .navbar .navbar-logo img {
  width: auto;
}
.cid-sFGMsvHDIa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFGMsvHDIa .navbar.collapsed {
  justify-content: center;
}
.cid-sFGMsvHDIa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFGMsvHDIa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFGMsvHDIa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFGMsvHDIa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFGMsvHDIa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFGMsvHDIa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFGMsvHDIa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFGMsvHDIa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFGMsvHDIa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFGMsvHDIa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFGMsvHDIa .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFGMsvHDIa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFGMsvHDIa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFGMsvHDIa .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFGMsvHDIa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFGMsvHDIa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFGMsvHDIa .dropdown-item.active,
.cid-sFGMsvHDIa .dropdown-item:active {
  background-color: transparent;
}
.cid-sFGMsvHDIa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFGMsvHDIa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-sFGMsvHDIa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFGMsvHDIa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFGMsvHDIa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFGMsvHDIa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFGMsvHDIa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sFGMsvHDIa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar {
    height: 70px;
  }
  .cid-sFGMsvHDIa .navbar.opened {
    height: auto;
  }
  .cid-sFGMsvHDIa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sFGMfPD7iT {
  padding-top: 17rem;
  padding-bottom: 16rem;
  background-image: url("../../../assets/images/commercial-roofing-works.jpg");
}
.cid-sFGMfPD7iT .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sFGMfPD7iT .mbr-text,
.cid-sFGMfPD7iT .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ucCzW3ZS0B {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucCzW3ZS0B .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-ucCzW3ZS0B .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-ucCzW3ZS0B .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #ff9966;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-sFGNHRkFsi {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ff9966;
}
.cid-sFGNHRkFsi .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sFGNHRkFsi .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFGNHRkFsi .mbr-iconfont {
  font-size: 4rem;
  color: #4d6d9a;
  padding-right: 1.5rem;
}
.cid-sFGNHRkFsi .card-title {
  text-align: center;
}
.cid-ucCzZcUUyN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucCzZcUUyN .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-ucCzZcUUyN .mbr-text {
  text-align: left;
}
.cid-sFGOTvnvck {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ff9966;
}
.cid-sFGOTvnvck .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sFGOTvnvck .card {
    margin-bottom: 2rem!important;
  }
  .cid-sFGOTvnvck .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sFGOTvnvck .link-wrap {
    align-items: center;
  }
}
.cid-sFGOTvnvck .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sFGNGNNW5A {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-sFGNGNNW5A img,
.cid-sFGNGNNW5A .item-img {
  width: 100%;
}
.cid-sFGNGNNW5A .item:focus,
.cid-sFGNGNNW5A span:focus {
  outline: none;
}
.cid-sFGNGNNW5A .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sFGNGNNW5A .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ff9966;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sFGNGNNW5A .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFGNGNNW5A .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sFGNGNNW5A .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sFGNGNNW5A .mbr-section-title {
  color: #232323;
}
.cid-sFGNGNNW5A .mbr-text,
.cid-sFGNGNNW5A .mbr-section-btn {
  text-align: left;
  color: #5f6366;
}
.cid-sFGNGNNW5A .item-title {
  text-align: center;
}
.cid-sFGNGNNW5A .item-subtitle {
  text-align: left;
}
.cid-sFGNGNNW5A .item-title DIV {
  text-align: center;
}
.cid-ucCBqR7U9j {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ucCBqR7U9j .mbr-section-subtitle {
  text-align: center;
}
.cid-sFGS12H2E8 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ff9966;
}
.cid-sFGS12H2E8 .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-sFGS12H2E8 .currentcost {
  color: #232323;
}
.cid-sFGS12H2E8 .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-sFGS12H2E8 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sFGS12H2E8 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sFGS12H2E8 .text-box {
    padding: 1rem;
  }
}
.cid-sFGS12H2E8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sFGS12H2E8 H5 {
  text-align: center;
}
.cid-sFGS12H2E8 .mbr-text,
.cid-sFGS12H2E8 .cost,
.cid-sFGS12H2E8 .mbr-section-btn {
  text-align: center;
}
.cid-ucCBrMzsVy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucCBrMzsVy .mbr-section-subtitle {
  text-align: center;
}
.cid-ucCBHQi3eo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ff9966;
}
.cid-ucCBHQi3eo .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucCBHQi3eo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucCBHQi3eo .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ucCBHQi3eo .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-ucCBHQi3eo .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-ucCBHQi3eo .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-ucCBHQi3eo .container {
    padding: 0 12px;
  }
}
.cid-ucCBHQi3eo .title-wrapper {
  padding: 64px;
  background-color: #000000;
  border-radius: 32px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ucCBHQi3eo .title-wrapper {
    margin-bottom: 32px;
    height: auto;
    padding: 24px;
  }
}
.cid-ucCBHQi3eo .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-ucCBHQi3eo .title-wrapper .mbr-text {
  margin-bottom: 0;
  opacity: .6;
}
.cid-ucCBHQi3eo .panel-group {
  padding: 64px;
  background-color: #000000;
  border-radius: 32px;
}
@media (max-width: 992px) {
  .cid-ucCBHQi3eo .panel-group {
    padding: 24px;
  }
}
.cid-ucCBHQi3eo .panel-group .card {
  border: 1px solid #ffffff;
  border-radius: 32px !important;
  background-color: #ff9966;
  margin-bottom: 32px;
}
.cid-ucCBHQi3eo .panel-group .card .card-header {
  padding: 32px;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ucCBHQi3eo .panel-group .card .card-header {
    padding: 24px;
  }
}
.cid-ucCBHQi3eo .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ucCBHQi3eo .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(90deg);
}
.cid-ucCBHQi3eo .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-ucCBHQi3eo .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  background-color: #ffffff;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  font-size: 23px;
  color: #1d1d1f;
}
.cid-ucCBHQi3eo .panel-group .card .panel-collapse .panel-body {
  padding: 0 32px 32px;
}
@media (max-width: 992px) {
  .cid-ucCBHQi3eo .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 24px;
  }
}
.cid-ucCBHQi3eo .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  opacity: .6;
}
.cid-ucCBHQi3eo .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucCBHQi3eo .mbr-text {
  color: #ffffff;
}
.cid-ucCBHQi3eo .panel-title-edit {
  color: #000000;
}
.cid-ucCBHQi3eo .panel-text {
  color: #ffffff;
}
.cid-ucCBKQop4N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucCBKQop4N .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucCBKQop4N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucCBKQop4N .card-wrapper {
  background: #ff9966;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ucCBKQop4N .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ucCBKQop4N .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ucCBKQop4N .card-wrapper {
    padding: 4rem;
  }
}
.cid-ucCBKQop4N .mbr-text,
.cid-ucCBKQop4N .mbr-section-btn {
  color: #000000;
}
.cid-ucCBKQop4N .card-title,
.cid-ucCBKQop4N .card-box {
  text-align: center;
  color: #000000;
}
.cid-ucCBY5DczZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ff9966;
  overflow: hidden;
}
.cid-ucCBY5DczZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucCBY5DczZ .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-ucCBY5DczZ .container {
    padding: 0 22px;
  }
}
.cid-ucCBY5DczZ .card {
  justify-content: center;
}
.cid-ucCBY5DczZ .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-ucCBY5DczZ .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-ucCBY5DczZ .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ucCBY5DczZ .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucCBY5DczZ .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-ucCBY5DczZ .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #ffffff;
}
@media (max-width: 1440px) {
  .cid-ucCBY5DczZ .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-ucCBY5DczZ .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-ucCBY5DczZ .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-ucCBY5DczZ .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-ucCBY5DczZ .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ucCBY5DczZ .mbr-text {
  color: #000000;
}
.cid-ucCCZmQQM1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucCCZmQQM1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucCCZmQQM1 .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-ucCCZmQQM1 .container {
    padding: 0 30px;
  }
}
.cid-ucCCZmQQM1 .row {
  justify-content: center;
}
.cid-ucCCZmQQM1 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ucCCZmQQM1 .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ucCCZmQQM1 .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-ucCCZmQQM1 .video-block .video-wrapper .app-video-wrapper::before {
  color: #212529;
  text-shadow: none;
}
.cid-ucCCZmQQM1 .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ucCCZmQQM1 .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-ucCCZmQQM1 .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-ucCD8dweAm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ff9966;
}
.cid-ucCD8dweAm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucCD8dweAm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucCD8dweAm .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ucCD8dweAm .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucCD8dweAm .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucCD8dweAm .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucCD8dweAm .container {
    padding: 0 16px;
  }
}
.cid-ucCD8dweAm .row {
  justify-content: center;
}
.cid-ucCD8dweAm .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-ucCD8dweAm .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-ucCD8dweAm .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucCD8dweAm .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ucCD8dweAm .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-ucCD8dweAm .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-sFGSPUeMie {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sFGSPUeMie .google-map {
  height: 30rem;
  position: relative;
}
.cid-sFGSPUeMie .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sFGSPUeMie .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sFGSPUeMie .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sFGSPUeMie .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucCDjx4OdK {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ff9966;
}
.cid-ucCDjx4OdK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucCDjx4OdK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucCDjx4OdK .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ucCDjx4OdK .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ucCDjx4OdK .row {
    text-align: center;
  }
  .cid-ucCDjx4OdK .row > div {
    margin: auto;
  }
  .cid-ucCDjx4OdK .social-row {
    justify-content: center;
  }
}
.cid-ucCDjx4OdK .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ucCDjx4OdK .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ucCDjx4OdK .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ucCDjx4OdK .list {
    margin-bottom: 0rem;
  }
}
.cid-ucCDjx4OdK .mbr-text {
  color: #000000;
}
.cid-ucCDjx4OdK .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-ucCDjx4OdK .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-ucCDjx4OdK div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ucCDjx4OdK H5 {
  color: #000000;
}
.cid-sFGMsvHDIa .navbar-dropdown {
  position: relative !important;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFGMsvHDIa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFGMsvHDIa .dropdown-item:hover,
.cid-sFGMsvHDIa .dropdown-item:focus {
  background: #161be7 !important;
  color: white !important;
}
.cid-sFGMsvHDIa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFGMsvHDIa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFGMsvHDIa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFGMsvHDIa .nav-link {
  position: relative;
}
.cid-sFGMsvHDIa .container {
  display: flex;
  margin: auto;
}
.cid-sFGMsvHDIa .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFGMsvHDIa .dropdown-menu,
.cid-sFGMsvHDIa .navbar.opened {
  background: #ff9966 !important;
}
.cid-sFGMsvHDIa .nav-item:focus,
.cid-sFGMsvHDIa .nav-link:focus {
  outline: none;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFGMsvHDIa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFGMsvHDIa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFGMsvHDIa .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff9966;
}
.cid-sFGMsvHDIa .navbar.opened {
  transition: all 0.3s;
}
.cid-sFGMsvHDIa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFGMsvHDIa .navbar .navbar-logo img {
  width: auto;
}
.cid-sFGMsvHDIa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFGMsvHDIa .navbar.collapsed {
  justify-content: center;
}
.cid-sFGMsvHDIa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFGMsvHDIa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFGMsvHDIa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFGMsvHDIa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFGMsvHDIa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFGMsvHDIa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFGMsvHDIa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFGMsvHDIa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFGMsvHDIa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFGMsvHDIa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFGMsvHDIa .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFGMsvHDIa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFGMsvHDIa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFGMsvHDIa .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFGMsvHDIa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFGMsvHDIa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFGMsvHDIa .dropdown-item.active,
.cid-sFGMsvHDIa .dropdown-item:active {
  background-color: transparent;
}
.cid-sFGMsvHDIa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFGMsvHDIa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-sFGMsvHDIa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFGMsvHDIa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFGMsvHDIa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFGMsvHDIa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFGMsvHDIa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sFGMsvHDIa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar {
    height: 70px;
  }
  .cid-sFGMsvHDIa .navbar.opened {
    height: auto;
  }
  .cid-sFGMsvHDIa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucCT1OLbbL {
  background-image: url("../../../assets/images/foto-5.jpg");
}
.cid-ucCT1OLbbL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucCT1OLbbL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucCT1OLbbL .mbr-section-title {
  text-align: left;
}
.cid-ucCT40s1mm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucCT40s1mm .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-ucCT40s1mm .mbr-text {
  color: #000000;
}
.cid-ue5bQYLY23 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-ue5bQYLY23 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue5bQYLY23 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ue5bQYLY23 .google-map {
  height: 30rem;
  position: relative;
}
.cid-ue5bQYLY23 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ue5bQYLY23 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ue5bQYLY23 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ue5bQYLY23 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucCDjx4OdK {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ff9966;
}
.cid-ucCDjx4OdK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucCDjx4OdK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucCDjx4OdK .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ucCDjx4OdK .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ucCDjx4OdK .row {
    text-align: center;
  }
  .cid-ucCDjx4OdK .row > div {
    margin: auto;
  }
  .cid-ucCDjx4OdK .social-row {
    justify-content: center;
  }
}
.cid-ucCDjx4OdK .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ucCDjx4OdK .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ucCDjx4OdK .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ucCDjx4OdK .list {
    margin-bottom: 0rem;
  }
}
.cid-ucCDjx4OdK .mbr-text {
  color: #000000;
}
.cid-ucCDjx4OdK .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-ucCDjx4OdK .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-ucCDjx4OdK div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ucCDjx4OdK H5 {
  color: #000000;
}
.cid-ucCTyp5Nvk .navbar-dropdown {
  position: relative !important;
}
.cid-ucCTyp5Nvk .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-ucCTyp5Nvk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucCTyp5Nvk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ucCTyp5Nvk .dropdown-item:hover,
.cid-ucCTyp5Nvk .dropdown-item:focus {
  background: #161be7 !important;
  color: white !important;
}
.cid-ucCTyp5Nvk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucCTyp5Nvk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucCTyp5Nvk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucCTyp5Nvk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucCTyp5Nvk .nav-link {
  position: relative;
}
.cid-ucCTyp5Nvk .container {
  display: flex;
  margin: auto;
}
.cid-ucCTyp5Nvk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ucCTyp5Nvk .dropdown-menu,
.cid-ucCTyp5Nvk .navbar.opened {
  background: #ff9966 !important;
}
.cid-ucCTyp5Nvk .nav-item:focus,
.cid-ucCTyp5Nvk .nav-link:focus {
  outline: none;
}
.cid-ucCTyp5Nvk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucCTyp5Nvk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucCTyp5Nvk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucCTyp5Nvk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucCTyp5Nvk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucCTyp5Nvk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucCTyp5Nvk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff9966;
}
.cid-ucCTyp5Nvk .navbar.opened {
  transition: all 0.3s;
}
.cid-ucCTyp5Nvk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucCTyp5Nvk .navbar .navbar-logo img {
  width: auto;
}
.cid-ucCTyp5Nvk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucCTyp5Nvk .navbar.collapsed {
  justify-content: center;
}
.cid-ucCTyp5Nvk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucCTyp5Nvk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucCTyp5Nvk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-ucCTyp5Nvk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucCTyp5Nvk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucCTyp5Nvk .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-ucCTyp5Nvk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucCTyp5Nvk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucCTyp5Nvk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucCTyp5Nvk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucCTyp5Nvk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucCTyp5Nvk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucCTyp5Nvk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucCTyp5Nvk .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-ucCTyp5Nvk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucCTyp5Nvk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucCTyp5Nvk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucCTyp5Nvk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucCTyp5Nvk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucCTyp5Nvk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ucCTyp5Nvk .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucCTyp5Nvk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucCTyp5Nvk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucCTyp5Nvk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucCTyp5Nvk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucCTyp5Nvk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucCTyp5Nvk .dropdown-item.active,
.cid-ucCTyp5Nvk .dropdown-item:active {
  background-color: transparent;
}
.cid-ucCTyp5Nvk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucCTyp5Nvk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucCTyp5Nvk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucCTyp5Nvk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-ucCTyp5Nvk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucCTyp5Nvk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucCTyp5Nvk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucCTyp5Nvk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucCTyp5Nvk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucCTyp5Nvk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ucCTyp5Nvk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucCTyp5Nvk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucCTyp5Nvk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucCTyp5Nvk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucCTyp5Nvk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucCTyp5Nvk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucCTyp5Nvk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucCTyp5Nvk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucCTyp5Nvk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ucCTyp5Nvk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucCTyp5Nvk .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-ucCTyp5Nvk .navbar {
    height: 70px;
  }
  .cid-ucCTyp5Nvk .navbar.opened {
    height: auto;
  }
  .cid-ucCTyp5Nvk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucCTypK7qI {
  background-image: url("../../../assets/images/roofers-performing-a-common-commercial-roof-repair.-.jpg");
}
.cid-ucCTypK7qI .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucCTypK7qI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucCTypK7qI .mbr-section-title {
  text-align: left;
}
.cid-ucCTyqdWFB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucCTyqdWFB .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-ucCTyqdWFB .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-ue5bEXfaRQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-ue5bEXfaRQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue5bEXfaRQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ue5bEXfaRQ .google-map {
  height: 30rem;
  position: relative;
}
.cid-ue5bEXfaRQ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ue5bEXfaRQ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ue5bEXfaRQ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ue5bEXfaRQ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucCTyqAUua {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ff9966;
}
.cid-ucCTyqAUua .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucCTyqAUua .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucCTyqAUua .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ucCTyqAUua .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ucCTyqAUua .row {
    text-align: center;
  }
  .cid-ucCTyqAUua .row > div {
    margin: auto;
  }
  .cid-ucCTyqAUua .social-row {
    justify-content: center;
  }
}
.cid-ucCTyqAUua .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ucCTyqAUua .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ucCTyqAUua .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ucCTyqAUua .list {
    margin-bottom: 0rem;
  }
}
.cid-ucCTyqAUua .mbr-text {
  color: #000000;
}
.cid-ucCTyqAUua .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-ucCTyqAUua .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-ucCTyqAUua div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ucCTyqAUua H5 {
  color: #000000;
}
.cid-ue5bUl4TPb .navbar-dropdown {
  position: relative !important;
}
.cid-ue5bUl4TPb .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-ue5bUl4TPb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ue5bUl4TPb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ue5bUl4TPb .dropdown-item:hover,
.cid-ue5bUl4TPb .dropdown-item:focus {
  background: #161be7 !important;
  color: white !important;
}
.cid-ue5bUl4TPb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ue5bUl4TPb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ue5bUl4TPb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ue5bUl4TPb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ue5bUl4TPb .nav-link {
  position: relative;
}
.cid-ue5bUl4TPb .container {
  display: flex;
  margin: auto;
}
.cid-ue5bUl4TPb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ue5bUl4TPb .dropdown-menu,
.cid-ue5bUl4TPb .navbar.opened {
  background: #ff9966 !important;
}
.cid-ue5bUl4TPb .nav-item:focus,
.cid-ue5bUl4TPb .nav-link:focus {
  outline: none;
}
.cid-ue5bUl4TPb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ue5bUl4TPb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ue5bUl4TPb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ue5bUl4TPb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ue5bUl4TPb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ue5bUl4TPb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ue5bUl4TPb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff9966;
}
.cid-ue5bUl4TPb .navbar.opened {
  transition: all 0.3s;
}
.cid-ue5bUl4TPb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ue5bUl4TPb .navbar .navbar-logo img {
  width: auto;
}
.cid-ue5bUl4TPb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ue5bUl4TPb .navbar.collapsed {
  justify-content: center;
}
.cid-ue5bUl4TPb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ue5bUl4TPb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ue5bUl4TPb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-ue5bUl4TPb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ue5bUl4TPb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ue5bUl4TPb .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-ue5bUl4TPb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ue5bUl4TPb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ue5bUl4TPb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ue5bUl4TPb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ue5bUl4TPb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ue5bUl4TPb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ue5bUl4TPb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ue5bUl4TPb .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-ue5bUl4TPb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ue5bUl4TPb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ue5bUl4TPb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ue5bUl4TPb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ue5bUl4TPb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ue5bUl4TPb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ue5bUl4TPb .navbar.navbar-short {
  min-height: 60px;
}
.cid-ue5bUl4TPb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ue5bUl4TPb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ue5bUl4TPb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ue5bUl4TPb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ue5bUl4TPb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ue5bUl4TPb .dropdown-item.active,
.cid-ue5bUl4TPb .dropdown-item:active {
  background-color: transparent;
}
.cid-ue5bUl4TPb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ue5bUl4TPb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ue5bUl4TPb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ue5bUl4TPb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-ue5bUl4TPb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ue5bUl4TPb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ue5bUl4TPb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ue5bUl4TPb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ue5bUl4TPb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ue5bUl4TPb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ue5bUl4TPb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ue5bUl4TPb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ue5bUl4TPb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ue5bUl4TPb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ue5bUl4TPb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ue5bUl4TPb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ue5bUl4TPb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ue5bUl4TPb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ue5bUl4TPb .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ue5bUl4TPb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ue5bUl4TPb .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-ue5bUl4TPb .navbar {
    height: 70px;
  }
  .cid-ue5bUl4TPb .navbar.opened {
    height: auto;
  }
  .cid-ue5bUl4TPb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ue5bUlQxM6 {
  padding-top: 17rem;
  padding-bottom: 16rem;
  background-image: url("../../../assets/images/1.jpg");
}
.cid-ue5bUlQxM6 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-ue5bUlQxM6 .mbr-text,
.cid-ue5bUlQxM6 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ue5bUmBk40 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ue5bUmBk40 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-ue5bUmBk40 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-ue5bUmBk40 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #ff9966;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-ue5bUn3enf {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ff9966;
}
.cid-ue5bUn3enf .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-ue5bUn3enf .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ue5bUn3enf .mbr-iconfont {
  font-size: 4rem;
  color: #4d6d9a;
  padding-right: 1.5rem;
}
.cid-ue5bUn3enf .card-title {
  text-align: center;
}
.cid-ue5bUnTqQf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ue5bUnTqQf .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-ue5bUnTqQf .mbr-text {
  text-align: left;
}
.cid-ue5bUomkdr {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ff9966;
}
.cid-ue5bUomkdr .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-ue5bUomkdr .card {
    margin-bottom: 2rem!important;
  }
  .cid-ue5bUomkdr .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ue5bUomkdr .link-wrap {
    align-items: center;
  }
}
.cid-ue5bUomkdr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ue5bUoU2ir {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-ue5bUoU2ir img,
.cid-ue5bUoU2ir .item-img {
  width: 100%;
}
.cid-ue5bUoU2ir .item:focus,
.cid-ue5bUoU2ir span:focus {
  outline: none;
}
.cid-ue5bUoU2ir .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ue5bUoU2ir .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ff9966;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ue5bUoU2ir .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ue5bUoU2ir .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ue5bUoU2ir .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ue5bUoU2ir .mbr-section-title {
  color: #232323;
}
.cid-ue5bUoU2ir .mbr-text,
.cid-ue5bUoU2ir .mbr-section-btn {
  text-align: left;
  color: #5f6366;
}
.cid-ue5bUoU2ir .item-title {
  text-align: center;
}
.cid-ue5bUoU2ir .item-subtitle {
  text-align: left;
}
.cid-ue5bUoU2ir .item-title DIV {
  text-align: center;
}
.cid-ue5bUpKYck {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ue5bUpKYck .mbr-section-subtitle {
  text-align: center;
}
.cid-ue5bUs8od8 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ff9966;
}
.cid-ue5bUs8od8 .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-ue5bUs8od8 .currentcost {
  color: #232323;
}
.cid-ue5bUs8od8 .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-ue5bUs8od8 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ue5bUs8od8 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ue5bUs8od8 .text-box {
    padding: 1rem;
  }
}
.cid-ue5bUs8od8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ue5bUs8od8 H5 {
  text-align: center;
}
.cid-ue5bUs8od8 .mbr-text,
.cid-ue5bUs8od8 .cost,
.cid-ue5bUs8od8 .mbr-section-btn {
  text-align: center;
}
.cid-ue5bUvhPfz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ue5bUvhPfz .mbr-section-subtitle {
  text-align: center;
}
.cid-ue5bUwTH6M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ff9966;
}
.cid-ue5bUwTH6M .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue5bUwTH6M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ue5bUwTH6M .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ue5bUwTH6M .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-ue5bUwTH6M .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-ue5bUwTH6M .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-ue5bUwTH6M .container {
    padding: 0 12px;
  }
}
.cid-ue5bUwTH6M .title-wrapper {
  padding: 64px;
  background-color: #000000;
  border-radius: 32px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ue5bUwTH6M .title-wrapper {
    margin-bottom: 32px;
    height: auto;
    padding: 24px;
  }
}
.cid-ue5bUwTH6M .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-ue5bUwTH6M .title-wrapper .mbr-text {
  margin-bottom: 0;
  opacity: .6;
}
.cid-ue5bUwTH6M .panel-group {
  padding: 64px;
  background-color: #000000;
  border-radius: 32px;
}
@media (max-width: 992px) {
  .cid-ue5bUwTH6M .panel-group {
    padding: 24px;
  }
}
.cid-ue5bUwTH6M .panel-group .card {
  border: 1px solid #ffffff;
  border-radius: 32px !important;
  background-color: #ff9966;
  margin-bottom: 32px;
}
.cid-ue5bUwTH6M .panel-group .card .card-header {
  padding: 32px;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ue5bUwTH6M .panel-group .card .card-header {
    padding: 24px;
  }
}
.cid-ue5bUwTH6M .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ue5bUwTH6M .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(90deg);
}
.cid-ue5bUwTH6M .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-ue5bUwTH6M .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  background-color: #ffffff;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  font-size: 23px;
  color: #1d1d1f;
}
.cid-ue5bUwTH6M .panel-group .card .panel-collapse .panel-body {
  padding: 0 32px 32px;
}
@media (max-width: 992px) {
  .cid-ue5bUwTH6M .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 24px;
  }
}
.cid-ue5bUwTH6M .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  opacity: .6;
}
.cid-ue5bUwTH6M .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ue5bUwTH6M .mbr-text {
  color: #ffffff;
}
.cid-ue5bUwTH6M .panel-title-edit {
  color: #000000;
}
.cid-ue5bUwTH6M .panel-text {
  color: #ffffff;
}
.cid-ue5bUyugo6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ue5bUyugo6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue5bUyugo6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ue5bUyugo6 .card-wrapper {
  background: #ff9966;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ue5bUyugo6 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ue5bUyugo6 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ue5bUyugo6 .card-wrapper {
    padding: 4rem;
  }
}
.cid-ue5bUyugo6 .mbr-text,
.cid-ue5bUyugo6 .mbr-section-btn {
  color: #000000;
}
.cid-ue5bUyugo6 .card-title,
.cid-ue5bUyugo6 .card-box {
  text-align: center;
  color: #000000;
}
.cid-ue5bUAGmzY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ff9966;
  overflow: hidden;
}
.cid-ue5bUAGmzY .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue5bUAGmzY .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-ue5bUAGmzY .container {
    padding: 0 22px;
  }
}
.cid-ue5bUAGmzY .card {
  justify-content: center;
}
.cid-ue5bUAGmzY .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-ue5bUAGmzY .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-ue5bUAGmzY .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ue5bUAGmzY .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ue5bUAGmzY .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-ue5bUAGmzY .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #ffffff;
}
@media (max-width: 1440px) {
  .cid-ue5bUAGmzY .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-ue5bUAGmzY .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-ue5bUAGmzY .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-ue5bUAGmzY .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-ue5bUAGmzY .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ue5bUAGmzY .mbr-text {
  color: #000000;
}
.cid-ue5bUCfUSa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ue5bUCfUSa .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue5bUCfUSa .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-ue5bUCfUSa .container {
    padding: 0 30px;
  }
}
.cid-ue5bUCfUSa .row {
  justify-content: center;
}
.cid-ue5bUCfUSa .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ue5bUCfUSa .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ue5bUCfUSa .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-ue5bUCfUSa .video-block .video-wrapper .app-video-wrapper::before {
  color: #212529;
  text-shadow: none;
}
.cid-ue5bUCfUSa .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ue5bUCfUSa .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-ue5bUCfUSa .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-ue5bUDzo47 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ff9966;
}
.cid-ue5bUDzo47 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue5bUDzo47 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ue5bUDzo47 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ue5bUDzo47 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ue5bUDzo47 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ue5bUDzo47 .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ue5bUDzo47 .container {
    padding: 0 16px;
  }
}
.cid-ue5bUDzo47 .row {
  justify-content: center;
}
.cid-ue5bUDzo47 .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-ue5bUDzo47 .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-ue5bUDzo47 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ue5bUDzo47 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ue5bUDzo47 .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-ue5bUDzo47 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ue5dzYvo7r {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ue5dzYvo7r .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue5dzYvo7r .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-ue5dzYvo7r .container {
    padding: 0 30px;
  }
}
.cid-ue5dzYvo7r .row {
  justify-content: center;
}
.cid-ue5dzYvo7r .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ue5dzYvo7r .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ue5dzYvo7r .panel-group .card {
  border-radius: 2rem 0 2rem 0 !important;
  border: 1px solid #22654e;
  margin-bottom: 24px;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-ue5dzYvo7r .panel-group .card {
    padding: 30px 20px;
  }
}
.cid-ue5dzYvo7r .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-ue5dzYvo7r .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-ue5dzYvo7r .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-ue5dzYvo7r .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  transition: all 0.3s ease-in-out;
  color: #c7fcb5;
  background-color: #22654e;
  border-radius: 100%;
  margin-left: 20px;
}
.cid-ue5dzYvo7r .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-ue5dzYvo7r .panel-group .card .panel-collapse .panel-body {
  padding-top: 30px;
}
.cid-ue5dzYvo7r .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-ue5dzYvo7r .mbr-section-title {
  color: #22654E;
  text-align: center;
}
.cid-ue5dzYvo7r .panel-title-edit {
  color: #22654E;
}
.cid-ue5dzYvo7r .panel-text {
  color: #144031;
}
.cid-ue5bUGdZuA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-ue5bUGdZuA .google-map {
  height: 30rem;
  position: relative;
}
.cid-ue5bUGdZuA .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ue5bUGdZuA .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ue5bUGdZuA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ue5bUGdZuA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ue5bUMnQH9 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ff9966;
}
.cid-ue5bUMnQH9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue5bUMnQH9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ue5bUMnQH9 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ue5bUMnQH9 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ue5bUMnQH9 .row {
    text-align: center;
  }
  .cid-ue5bUMnQH9 .row > div {
    margin: auto;
  }
  .cid-ue5bUMnQH9 .social-row {
    justify-content: center;
  }
}
.cid-ue5bUMnQH9 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ue5bUMnQH9 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ue5bUMnQH9 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ue5bUMnQH9 .list {
    margin-bottom: 0rem;
  }
}
.cid-ue5bUMnQH9 .mbr-text {
  color: #000000;
}
.cid-ue5bUMnQH9 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-ue5bUMnQH9 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-ue5bUMnQH9 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ue5bUMnQH9 H5 {
  color: #000000;
}
.cid-ue5ijP7eTI .navbar-dropdown {
  position: relative !important;
}
.cid-ue5ijP7eTI .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-ue5ijP7eTI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ue5ijP7eTI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ue5ijP7eTI .dropdown-item:hover,
.cid-ue5ijP7eTI .dropdown-item:focus {
  background: #161be7 !important;
  color: white !important;
}
.cid-ue5ijP7eTI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ue5ijP7eTI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ue5ijP7eTI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ue5ijP7eTI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ue5ijP7eTI .nav-link {
  position: relative;
}
.cid-ue5ijP7eTI .container {
  display: flex;
  margin: auto;
}
.cid-ue5ijP7eTI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ue5ijP7eTI .dropdown-menu,
.cid-ue5ijP7eTI .navbar.opened {
  background: #ff9966 !important;
}
.cid-ue5ijP7eTI .nav-item:focus,
.cid-ue5ijP7eTI .nav-link:focus {
  outline: none;
}
.cid-ue5ijP7eTI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ue5ijP7eTI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ue5ijP7eTI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ue5ijP7eTI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ue5ijP7eTI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ue5ijP7eTI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ue5ijP7eTI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff9966;
}
.cid-ue5ijP7eTI .navbar.opened {
  transition: all 0.3s;
}
.cid-ue5ijP7eTI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ue5ijP7eTI .navbar .navbar-logo img {
  width: auto;
}
.cid-ue5ijP7eTI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ue5ijP7eTI .navbar.collapsed {
  justify-content: center;
}
.cid-ue5ijP7eTI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ue5ijP7eTI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ue5ijP7eTI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-ue5ijP7eTI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ue5ijP7eTI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ue5ijP7eTI .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-ue5ijP7eTI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ue5ijP7eTI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ue5ijP7eTI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ue5ijP7eTI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ue5ijP7eTI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ue5ijP7eTI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ue5ijP7eTI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ue5ijP7eTI .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-ue5ijP7eTI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ue5ijP7eTI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ue5ijP7eTI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ue5ijP7eTI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ue5ijP7eTI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ue5ijP7eTI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ue5ijP7eTI .navbar.navbar-short {
  min-height: 60px;
}
.cid-ue5ijP7eTI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ue5ijP7eTI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ue5ijP7eTI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ue5ijP7eTI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ue5ijP7eTI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ue5ijP7eTI .dropdown-item.active,
.cid-ue5ijP7eTI .dropdown-item:active {
  background-color: transparent;
}
.cid-ue5ijP7eTI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ue5ijP7eTI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ue5ijP7eTI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ue5ijP7eTI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-ue5ijP7eTI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ue5ijP7eTI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ue5ijP7eTI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ue5ijP7eTI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ue5ijP7eTI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ue5ijP7eTI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ue5ijP7eTI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ue5ijP7eTI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ue5ijP7eTI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ue5ijP7eTI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ue5ijP7eTI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ue5ijP7eTI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ue5ijP7eTI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ue5ijP7eTI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ue5ijP7eTI .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ue5ijP7eTI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ue5ijP7eTI .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-ue5ijP7eTI .navbar {
    height: 70px;
  }
  .cid-ue5ijP7eTI .navbar.opened {
    height: auto;
  }
  .cid-ue5ijP7eTI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ue5ijR9Xcc {
  padding-top: 17rem;
  padding-bottom: 16rem;
  background-image: url("../../../assets/images/4.jpg");
}
.cid-ue5ijR9Xcc .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-ue5ijR9Xcc .mbr-text,
.cid-ue5ijR9Xcc .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ue5ijS2zu4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ue5ijS2zu4 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-ue5ijS2zu4 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-ue5ijS2zu4 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #ff9966;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-ue5ijSDzOa {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ff9966;
}
.cid-ue5ijSDzOa .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-ue5ijSDzOa .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ue5ijSDzOa .mbr-iconfont {
  font-size: 4rem;
  color: #4d6d9a;
  padding-right: 1.5rem;
}
.cid-ue5ijSDzOa .card-title {
  text-align: center;
}
.cid-ue5ijTHdKj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ue5ijTHdKj .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-ue5ijTHdKj .mbr-text {
  text-align: left;
}
.cid-ue5ijUjCLZ {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ff9966;
}
.cid-ue5ijUjCLZ .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-ue5ijUjCLZ .card {
    margin-bottom: 2rem!important;
  }
  .cid-ue5ijUjCLZ .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ue5ijUjCLZ .link-wrap {
    align-items: center;
  }
}
.cid-ue5ijUjCLZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ue5ijUVHrk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-ue5ijUVHrk img,
.cid-ue5ijUVHrk .item-img {
  width: 100%;
}
.cid-ue5ijUVHrk .item:focus,
.cid-ue5ijUVHrk span:focus {
  outline: none;
}
.cid-ue5ijUVHrk .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ue5ijUVHrk .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ff9966;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ue5ijUVHrk .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ue5ijUVHrk .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ue5ijUVHrk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ue5ijUVHrk .mbr-section-title {
  color: #232323;
}
.cid-ue5ijUVHrk .mbr-text,
.cid-ue5ijUVHrk .mbr-section-btn {
  text-align: left;
  color: #5f6366;
}
.cid-ue5ijUVHrk .item-title {
  text-align: center;
}
.cid-ue5ijUVHrk .item-subtitle {
  text-align: left;
}
.cid-ue5ijUVHrk .item-title DIV {
  text-align: center;
}
.cid-ue5ijW51u7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ue5ijW51u7 .mbr-section-subtitle {
  text-align: center;
}
.cid-ue5ijWGyxV {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ff9966;
}
.cid-ue5ijWGyxV .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-ue5ijWGyxV .currentcost {
  color: #232323;
}
.cid-ue5ijWGyxV .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-ue5ijWGyxV .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ue5ijWGyxV .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ue5ijWGyxV .text-box {
    padding: 1rem;
  }
}
.cid-ue5ijWGyxV .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ue5ijWGyxV H5 {
  text-align: center;
}
.cid-ue5ijWGyxV .mbr-text,
.cid-ue5ijWGyxV .cost,
.cid-ue5ijWGyxV .mbr-section-btn {
  text-align: center;
}
.cid-ue5ijXsOTv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ue5ijXsOTv .mbr-section-subtitle {
  text-align: center;
}
.cid-ue5ijY6f5J {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ff9966;
}
.cid-ue5ijY6f5J .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue5ijY6f5J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ue5ijY6f5J .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ue5ijY6f5J .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-ue5ijY6f5J .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-ue5ijY6f5J .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-ue5ijY6f5J .container {
    padding: 0 12px;
  }
}
.cid-ue5ijY6f5J .title-wrapper {
  padding: 64px;
  background-color: #000000;
  border-radius: 32px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ue5ijY6f5J .title-wrapper {
    margin-bottom: 32px;
    height: auto;
    padding: 24px;
  }
}
.cid-ue5ijY6f5J .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-ue5ijY6f5J .title-wrapper .mbr-text {
  margin-bottom: 0;
  opacity: .6;
}
.cid-ue5ijY6f5J .panel-group {
  padding: 64px;
  background-color: #000000;
  border-radius: 32px;
}
@media (max-width: 992px) {
  .cid-ue5ijY6f5J .panel-group {
    padding: 24px;
  }
}
.cid-ue5ijY6f5J .panel-group .card {
  border: 1px solid #ffffff;
  border-radius: 32px !important;
  background-color: #ff9966;
  margin-bottom: 32px;
}
.cid-ue5ijY6f5J .panel-group .card .card-header {
  padding: 32px;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ue5ijY6f5J .panel-group .card .card-header {
    padding: 24px;
  }
}
.cid-ue5ijY6f5J .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ue5ijY6f5J .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(90deg);
}
.cid-ue5ijY6f5J .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-ue5ijY6f5J .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  background-color: #ffffff;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  font-size: 23px;
  color: #1d1d1f;
}
.cid-ue5ijY6f5J .panel-group .card .panel-collapse .panel-body {
  padding: 0 32px 32px;
}
@media (max-width: 992px) {
  .cid-ue5ijY6f5J .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 24px;
  }
}
.cid-ue5ijY6f5J .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  opacity: .6;
}
.cid-ue5ijY6f5J .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ue5ijY6f5J .mbr-text {
  color: #ffffff;
}
.cid-ue5ijY6f5J .panel-title-edit {
  color: #000000;
}
.cid-ue5ijY6f5J .panel-text {
  color: #ffffff;
}
.cid-ue5ijZaKqu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ue5ijZaKqu .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue5ijZaKqu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ue5ijZaKqu .card-wrapper {
  background: #ff9966;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ue5ijZaKqu .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ue5ijZaKqu .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ue5ijZaKqu .card-wrapper {
    padding: 4rem;
  }
}
.cid-ue5ijZaKqu .mbr-text,
.cid-ue5ijZaKqu .mbr-section-btn {
  color: #000000;
}
.cid-ue5ijZaKqu .card-title,
.cid-ue5ijZaKqu .card-box {
  text-align: center;
  color: #000000;
}
.cid-ue5ik014Q3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ff9966;
  overflow: hidden;
}
.cid-ue5ik014Q3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue5ik014Q3 .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-ue5ik014Q3 .container {
    padding: 0 22px;
  }
}
.cid-ue5ik014Q3 .card {
  justify-content: center;
}
.cid-ue5ik014Q3 .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-ue5ik014Q3 .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-ue5ik014Q3 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ue5ik014Q3 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ue5ik014Q3 .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-ue5ik014Q3 .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #ffffff;
}
@media (max-width: 1440px) {
  .cid-ue5ik014Q3 .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-ue5ik014Q3 .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-ue5ik014Q3 .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-ue5ik014Q3 .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-ue5ik014Q3 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ue5ik014Q3 .mbr-text {
  color: #000000;
}
.cid-ue5ik0InDz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ue5ik0InDz .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue5ik0InDz .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-ue5ik0InDz .container {
    padding: 0 30px;
  }
}
.cid-ue5ik0InDz .row {
  justify-content: center;
}
.cid-ue5ik0InDz .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ue5ik0InDz .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ue5ik0InDz .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-ue5ik0InDz .video-block .video-wrapper .app-video-wrapper::before {
  color: #212529;
  text-shadow: none;
}
.cid-ue5ik0InDz .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ue5ik0InDz .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-ue5ik0InDz .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-ue5ik1sGU5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ff9966;
}
.cid-ue5ik1sGU5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue5ik1sGU5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ue5ik1sGU5 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ue5ik1sGU5 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ue5ik1sGU5 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ue5ik1sGU5 .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ue5ik1sGU5 .container {
    padding: 0 16px;
  }
}
.cid-ue5ik1sGU5 .row {
  justify-content: center;
}
.cid-ue5ik1sGU5 .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-ue5ik1sGU5 .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-ue5ik1sGU5 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ue5ik1sGU5 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ue5ik1sGU5 .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-ue5ik1sGU5 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ue5ik2cLl8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ue5ik2cLl8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue5ik2cLl8 .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-ue5ik2cLl8 .container {
    padding: 0 30px;
  }
}
.cid-ue5ik2cLl8 .row {
  justify-content: center;
}
.cid-ue5ik2cLl8 .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ue5ik2cLl8 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ue5ik2cLl8 .panel-group .card {
  border-radius: 2rem 0 2rem 0 !important;
  border: 1px solid #22654e;
  margin-bottom: 24px;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-ue5ik2cLl8 .panel-group .card {
    padding: 30px 20px;
  }
}
.cid-ue5ik2cLl8 .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-ue5ik2cLl8 .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-ue5ik2cLl8 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-ue5ik2cLl8 .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  transition: all 0.3s ease-in-out;
  color: #c7fcb5;
  background-color: #22654e;
  border-radius: 100%;
  margin-left: 20px;
}
.cid-ue5ik2cLl8 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-ue5ik2cLl8 .panel-group .card .panel-collapse .panel-body {
  padding-top: 30px;
}
.cid-ue5ik2cLl8 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-ue5ik2cLl8 .mbr-section-title {
  color: #22654E;
  text-align: center;
}
.cid-ue5ik2cLl8 .panel-title-edit {
  color: #22654E;
}
.cid-ue5ik2cLl8 .panel-text {
  color: #144031;
}
.cid-ue5ik2ZlwI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-ue5ik2ZlwI .google-map {
  height: 30rem;
  position: relative;
}
.cid-ue5ik2ZlwI .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ue5ik2ZlwI .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ue5ik2ZlwI .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ue5ik2ZlwI .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ue5ik3Lauv {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ff9966;
}
.cid-ue5ik3Lauv .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue5ik3Lauv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ue5ik3Lauv .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ue5ik3Lauv .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ue5ik3Lauv .row {
    text-align: center;
  }
  .cid-ue5ik3Lauv .row > div {
    margin: auto;
  }
  .cid-ue5ik3Lauv .social-row {
    justify-content: center;
  }
}
.cid-ue5ik3Lauv .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ue5ik3Lauv .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ue5ik3Lauv .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ue5ik3Lauv .list {
    margin-bottom: 0rem;
  }
}
.cid-ue5ik3Lauv .mbr-text {
  color: #000000;
}
.cid-ue5ik3Lauv .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-ue5ik3Lauv .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-ue5ik3Lauv div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ue5ik3Lauv H5 {
  color: #000000;
}
.cid-ue5lS7Sd2F .navbar-dropdown {
  position: relative !important;
}
.cid-ue5lS7Sd2F .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-ue5lS7Sd2F .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ue5lS7Sd2F .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ue5lS7Sd2F .dropdown-item:hover,
.cid-ue5lS7Sd2F .dropdown-item:focus {
  background: #161be7 !important;
  color: white !important;
}
.cid-ue5lS7Sd2F .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ue5lS7Sd2F .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ue5lS7Sd2F .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ue5lS7Sd2F .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ue5lS7Sd2F .nav-link {
  position: relative;
}
.cid-ue5lS7Sd2F .container {
  display: flex;
  margin: auto;
}
.cid-ue5lS7Sd2F .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ue5lS7Sd2F .dropdown-menu,
.cid-ue5lS7Sd2F .navbar.opened {
  background: #ff9966 !important;
}
.cid-ue5lS7Sd2F .nav-item:focus,
.cid-ue5lS7Sd2F .nav-link:focus {
  outline: none;
}
.cid-ue5lS7Sd2F .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ue5lS7Sd2F .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ue5lS7Sd2F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ue5lS7Sd2F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ue5lS7Sd2F .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ue5lS7Sd2F .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ue5lS7Sd2F .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ff9966;
}
.cid-ue5lS7Sd2F .navbar.opened {
  transition: all 0.3s;
}
.cid-ue5lS7Sd2F .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ue5lS7Sd2F .navbar .navbar-logo img {
  width: auto;
}
.cid-ue5lS7Sd2F .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ue5lS7Sd2F .navbar.collapsed {
  justify-content: center;
}
.cid-ue5lS7Sd2F .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ue5lS7Sd2F .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ue5lS7Sd2F .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-ue5lS7Sd2F .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ue5lS7Sd2F .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ue5lS7Sd2F .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-ue5lS7Sd2F .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ue5lS7Sd2F .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ue5lS7Sd2F .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ue5lS7Sd2F .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ue5lS7Sd2F .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ue5lS7Sd2F .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ue5lS7Sd2F .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ue5lS7Sd2F .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-ue5lS7Sd2F .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ue5lS7Sd2F .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ue5lS7Sd2F .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ue5lS7Sd2F .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ue5lS7Sd2F .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ue5lS7Sd2F .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ue5lS7Sd2F .navbar.navbar-short {
  min-height: 60px;
}
.cid-ue5lS7Sd2F .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ue5lS7Sd2F .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ue5lS7Sd2F .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ue5lS7Sd2F .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ue5lS7Sd2F .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ue5lS7Sd2F .dropdown-item.active,
.cid-ue5lS7Sd2F .dropdown-item:active {
  background-color: transparent;
}
.cid-ue5lS7Sd2F .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ue5lS7Sd2F .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ue5lS7Sd2F .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ue5lS7Sd2F .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ff9966;
}
.cid-ue5lS7Sd2F .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ue5lS7Sd2F .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ue5lS7Sd2F ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ue5lS7Sd2F .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ue5lS7Sd2F button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ue5lS7Sd2F button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ue5lS7Sd2F button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ue5lS7Sd2F button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ue5lS7Sd2F button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ue5lS7Sd2F button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ue5lS7Sd2F nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ue5lS7Sd2F nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ue5lS7Sd2F nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ue5lS7Sd2F nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ue5lS7Sd2F .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ue5lS7Sd2F a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ue5lS7Sd2F .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-ue5lS7Sd2F .navbar {
    height: 70px;
  }
  .cid-ue5lS7Sd2F .navbar.opened {
    height: auto;
  }
  .cid-ue5lS7Sd2F .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ue5lS97T3c {
  padding-top: 17rem;
  padding-bottom: 16rem;
  background-image: url("../../../assets/images/9.jpg");
}
.cid-ue5lS97T3c .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-ue5lS97T3c .mbr-text,
.cid-ue5lS97T3c .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ue5lS9XYPl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ue5lS9XYPl .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-ue5lS9XYPl .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-ue5lS9XYPl .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #ff9966;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-ue5lSaofYh {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ff9966;
}
.cid-ue5lSaofYh .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-ue5lSaofYh .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ue5lSaofYh .mbr-iconfont {
  font-size: 4rem;
  color: #4d6d9a;
  padding-right: 1.5rem;
}
.cid-ue5lSaofYh .card-title {
  text-align: center;
}
.cid-ue5lSbmRnv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ue5lSbmRnv .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-ue5lSbmRnv .mbr-text {
  text-align: left;
  color: #1d1d1f;
}
.cid-ue5lSbUv0S {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ff9966;
}
.cid-ue5lSbUv0S .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-ue5lSbUv0S .card {
    margin-bottom: 2rem!important;
  }
  .cid-ue5lSbUv0S .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ue5lSbUv0S .link-wrap {
    align-items: center;
  }
}
.cid-ue5lSbUv0S .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ue5lScSudl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-ue5lScSudl img,
.cid-ue5lScSudl .item-img {
  width: 100%;
}
.cid-ue5lScSudl .item:focus,
.cid-ue5lScSudl span:focus {
  outline: none;
}
.cid-ue5lScSudl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ue5lScSudl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ff9966;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ue5lScSudl .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ue5lScSudl .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ue5lScSudl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ue5lScSudl .mbr-section-title {
  color: #232323;
}
.cid-ue5lScSudl .mbr-text,
.cid-ue5lScSudl .mbr-section-btn {
  text-align: left;
  color: #5f6366;
}
.cid-ue5lScSudl .item-title {
  text-align: center;
}
.cid-ue5lScSudl .item-subtitle {
  text-align: left;
}
.cid-ue5lScSudl .item-title DIV {
  text-align: center;
}
.cid-ue5lSdVCLe {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ue5lSdVCLe .mbr-section-subtitle {
  text-align: center;
}
.cid-ue5lSeLyzl {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ff9966;
}
.cid-ue5lSeLyzl .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-ue5lSeLyzl .currentcost {
  color: #232323;
}
.cid-ue5lSeLyzl .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-ue5lSeLyzl .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ue5lSeLyzl .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ue5lSeLyzl .text-box {
    padding: 1rem;
  }
}
.cid-ue5lSeLyzl .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ue5lSeLyzl H5 {
  text-align: center;
}
.cid-ue5lSeLyzl .mbr-text,
.cid-ue5lSeLyzl .cost,
.cid-ue5lSeLyzl .mbr-section-btn {
  text-align: center;
}
.cid-ue5lSfFZIm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ue5lSfFZIm .mbr-section-subtitle {
  text-align: center;
}
.cid-ue5lSggfVh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ff9966;
}
.cid-ue5lSggfVh .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue5lSggfVh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ue5lSggfVh .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ue5lSggfVh .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-ue5lSggfVh .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-ue5lSggfVh .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-ue5lSggfVh .container {
    padding: 0 12px;
  }
}
.cid-ue5lSggfVh .title-wrapper {
  padding: 64px;
  background-color: #000000;
  border-radius: 32px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ue5lSggfVh .title-wrapper {
    margin-bottom: 32px;
    height: auto;
    padding: 24px;
  }
}
.cid-ue5lSggfVh .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-ue5lSggfVh .title-wrapper .mbr-text {
  margin-bottom: 0;
  opacity: .6;
}
.cid-ue5lSggfVh .panel-group {
  padding: 64px;
  background-color: #000000;
  border-radius: 32px;
}
@media (max-width: 992px) {
  .cid-ue5lSggfVh .panel-group {
    padding: 24px;
  }
}
.cid-ue5lSggfVh .panel-group .card {
  border: 1px solid #ffffff;
  border-radius: 32px !important;
  background-color: #ff9966;
  margin-bottom: 32px;
}
.cid-ue5lSggfVh .panel-group .card .card-header {
  padding: 32px;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-ue5lSggfVh .panel-group .card .card-header {
    padding: 24px;
  }
}
.cid-ue5lSggfVh .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ue5lSggfVh .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(90deg);
}
.cid-ue5lSggfVh .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-ue5lSggfVh .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  background-color: #ffffff;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  font-size: 23px;
  color: #1d1d1f;
}
.cid-ue5lSggfVh .panel-group .card .panel-collapse .panel-body {
  padding: 0 32px 32px;
}
@media (max-width: 992px) {
  .cid-ue5lSggfVh .panel-group .card .panel-collapse .panel-body {
    padding: 0 24px 24px;
  }
}
.cid-ue5lSggfVh .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  opacity: .6;
}
.cid-ue5lSggfVh .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ue5lSggfVh .mbr-text {
  color: #ffffff;
}
.cid-ue5lSggfVh .panel-title-edit {
  color: #000000;
}
.cid-ue5lSggfVh .panel-text {
  color: #ffffff;
}
.cid-ue5lShsrYI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ue5lShsrYI .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue5lShsrYI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ue5lShsrYI .card-wrapper {
  background: #ff9966;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ue5lShsrYI .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ue5lShsrYI .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ue5lShsrYI .card-wrapper {
    padding: 4rem;
  }
}
.cid-ue5lShsrYI .mbr-text,
.cid-ue5lShsrYI .mbr-section-btn {
  color: #000000;
}
.cid-ue5lShsrYI .card-title,
.cid-ue5lShsrYI .card-box {
  text-align: center;
  color: #000000;
}
.cid-ue5lSig0zm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ff9966;
  overflow: hidden;
}
.cid-ue5lSig0zm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue5lSig0zm .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-ue5lSig0zm .container {
    padding: 0 22px;
  }
}
.cid-ue5lSig0zm .card {
  justify-content: center;
}
.cid-ue5lSig0zm .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-ue5lSig0zm .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-ue5lSig0zm .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ue5lSig0zm .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ue5lSig0zm .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-ue5lSig0zm .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #ffffff;
}
@media (max-width: 1440px) {
  .cid-ue5lSig0zm .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-ue5lSig0zm .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-ue5lSig0zm .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-ue5lSig0zm .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-ue5lSig0zm .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ue5lSig0zm .mbr-text {
  color: #000000;
}
.cid-ue5lSj12ez {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ue5lSj12ez .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue5lSj12ez .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-ue5lSj12ez .container {
    padding: 0 30px;
  }
}
.cid-ue5lSj12ez .row {
  justify-content: center;
}
.cid-ue5lSj12ez .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ue5lSj12ez .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ue5lSj12ez .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-ue5lSj12ez .video-block .video-wrapper .app-video-wrapper::before {
  color: #212529;
  text-shadow: none;
}
.cid-ue5lSj12ez .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ue5lSj12ez .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-ue5lSj12ez .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-ue5lSjK1pq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ff9966;
}
.cid-ue5lSjK1pq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue5lSjK1pq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ue5lSjK1pq .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ue5lSjK1pq .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ue5lSjK1pq .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ue5lSjK1pq .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ue5lSjK1pq .container {
    padding: 0 16px;
  }
}
.cid-ue5lSjK1pq .row {
  justify-content: center;
}
.cid-ue5lSjK1pq .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-ue5lSjK1pq .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-ue5lSjK1pq .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ue5lSjK1pq .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ue5lSjK1pq .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-ue5lSjK1pq .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ue5lSkoZP4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ue5lSkoZP4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue5lSkoZP4 .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-ue5lSkoZP4 .container {
    padding: 0 30px;
  }
}
.cid-ue5lSkoZP4 .row {
  justify-content: center;
}
.cid-ue5lSkoZP4 .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ue5lSkoZP4 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ue5lSkoZP4 .panel-group .card {
  border-radius: 2rem 0 2rem 0 !important;
  border: 1px solid #22654e;
  margin-bottom: 24px;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-ue5lSkoZP4 .panel-group .card {
    padding: 30px 20px;
  }
}
.cid-ue5lSkoZP4 .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-ue5lSkoZP4 .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-ue5lSkoZP4 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-ue5lSkoZP4 .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  transition: all 0.3s ease-in-out;
  color: #c7fcb5;
  background-color: #22654e;
  border-radius: 100%;
  margin-left: 20px;
}
.cid-ue5lSkoZP4 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-ue5lSkoZP4 .panel-group .card .panel-collapse .panel-body {
  padding-top: 30px;
}
.cid-ue5lSkoZP4 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-ue5lSkoZP4 .mbr-section-title {
  color: #22654E;
  text-align: center;
}
.cid-ue5lSkoZP4 .panel-title-edit {
  color: #22654E;
}
.cid-ue5lSkoZP4 .panel-text {
  color: #144031;
}
.cid-ue5lSleWyp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-ue5lSleWyp .google-map {
  height: 30rem;
  position: relative;
}
.cid-ue5lSleWyp .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ue5lSleWyp .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ue5lSleWyp .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ue5lSleWyp .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ue5lSlYYPf {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ff9966;
}
.cid-ue5lSlYYPf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ue5lSlYYPf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ue5lSlYYPf .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ue5lSlYYPf .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ue5lSlYYPf .row {
    text-align: center;
  }
  .cid-ue5lSlYYPf .row > div {
    margin: auto;
  }
  .cid-ue5lSlYYPf .social-row {
    justify-content: center;
  }
}
.cid-ue5lSlYYPf .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ue5lSlYYPf .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ue5lSlYYPf .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ue5lSlYYPf .list {
    margin-bottom: 0rem;
  }
}
.cid-ue5lSlYYPf .mbr-text {
  color: #000000;
}
.cid-ue5lSlYYPf .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-ue5lSlYYPf .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-ue5lSlYYPf div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ue5lSlYYPf H5 {
  color: #000000;
}
