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: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.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.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .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: #6592e6 !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: #6592e6 !important;
  border-color: #6592e6 !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: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !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: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !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: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !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: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !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: #ff6666 !important;
  border-color: #ff6666 !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: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !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: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !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: #6592e6;
}
.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: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #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: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !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: #ff6666 !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='%236592e6' %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-uIUEP2Xdk5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uIUEP2Xdk5 nav.navbar {
  position: fixed;
}
.cid-uIUEP2Xdk5 .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-uIUEP2Xdk5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uIUEP2Xdk5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uIUEP2Xdk5 .dropdown-item:hover,
.cid-uIUEP2Xdk5 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uIUEP2Xdk5 .dropdown-item:hover span {
  color: white;
}
.cid-uIUEP2Xdk5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uIUEP2Xdk5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uIUEP2Xdk5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uIUEP2Xdk5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uIUEP2Xdk5 .nav-link {
  position: relative;
}
.cid-uIUEP2Xdk5 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uIUEP2Xdk5 .container {
    flex-wrap: wrap;
  }
}
.cid-uIUEP2Xdk5 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uIUEP2Xdk5 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uIUEP2Xdk5 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIUEP2Xdk5 .dropdown-menu,
.cid-uIUEP2Xdk5 .navbar.opened {
  background: #a6b1d8 !important;
}
.cid-uIUEP2Xdk5 .nav-item:focus,
.cid-uIUEP2Xdk5 .nav-link:focus {
  outline: none;
}
.cid-uIUEP2Xdk5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIUEP2Xdk5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIUEP2Xdk5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIUEP2Xdk5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIUEP2Xdk5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIUEP2Xdk5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIUEP2Xdk5 .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: #a6b1d8;
}
.cid-uIUEP2Xdk5 .navbar.opened {
  transition: all 0.3s;
}
.cid-uIUEP2Xdk5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIUEP2Xdk5 .navbar .navbar-logo img {
  width: auto;
}
.cid-uIUEP2Xdk5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uIUEP2Xdk5 .navbar.collapsed {
  justify-content: center;
}
.cid-uIUEP2Xdk5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIUEP2Xdk5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIUEP2Xdk5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIUEP2Xdk5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIUEP2Xdk5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIUEP2Xdk5 .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-uIUEP2Xdk5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIUEP2Xdk5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIUEP2Xdk5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uIUEP2Xdk5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIUEP2Xdk5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIUEP2Xdk5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIUEP2Xdk5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIUEP2Xdk5 .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-uIUEP2Xdk5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uIUEP2Xdk5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uIUEP2Xdk5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIUEP2Xdk5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uIUEP2Xdk5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIUEP2Xdk5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uIUEP2Xdk5 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uIUEP2Xdk5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uIUEP2Xdk5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uIUEP2Xdk5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uIUEP2Xdk5 .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-uIUEP2Xdk5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIUEP2Xdk5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIUEP2Xdk5 .dropdown-item.active,
.cid-uIUEP2Xdk5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uIUEP2Xdk5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIUEP2Xdk5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIUEP2Xdk5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIUEP2Xdk5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a6b1d8;
}
.cid-uIUEP2Xdk5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uIUEP2Xdk5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uIUEP2Xdk5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIUEP2Xdk5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uIUEP2Xdk5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIUEP2Xdk5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIUEP2Xdk5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIUEP2Xdk5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIUEP2Xdk5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIUEP2Xdk5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIUEP2Xdk5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIUEP2Xdk5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIUEP2Xdk5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIUEP2Xdk5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIUEP2Xdk5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uIUEP2Xdk5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIUEP2Xdk5 .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-uIUEP2Xdk5 .navbar {
    height: 70px;
  }
  .cid-uIUEP2Xdk5 .navbar.opened {
    height: auto;
  }
  .cid-uIUEP2Xdk5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIUEPX9PKj {
  background-image: url("../../../assets/images/door-repair-burlington-1600x1067.jpg");
}
.cid-uIUEPX9PKj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIUEPX9PKj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIUESUFb1P {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uIUESUFb1P .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uIUESUFb1P .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uIUESUFb1P .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #a6b1d8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  border-radius: 0;
  content: "✓";
}
.cid-uIUESUFb1P .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uIUESUFb1P .mbr-text {
  color: #000000;
}
.cid-uIUF6j9ovk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a6b1d8;
}
.cid-uIUF6j9ovk blockquote {
  border-color: #ffffff;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-uIUF1XpMBN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIUF1XpMBN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIUF1XpMBN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIUF1XpMBN .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uIUF1XpMBN .card-wrap:first-child {
    padding-right: 110px;
  }
}
@media (max-width: 992px) {
  .cid-uIUF1XpMBN .title-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 425px) {
  .cid-uIUF1XpMBN .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uIUF1XpMBN .title-wrapper .mbr-section-title {
  margin-bottom: 25px;
}
.cid-uIUF1XpMBN .title-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uIUF1XpMBN .title-wrapper .mbr-text {
  margin-bottom: 27px;
}
.cid-uIUF1XpMBN .panel-group .card {
  border-bottom: 1px solid #e2e2e2;
  border-radius: 0;
}
.cid-uIUF1XpMBN .panel-group .card .card-header {
  padding: 15px 10px 15px 5px;
  background-color: transparent;
  border: none;
}
.cid-uIUF1XpMBN .panel-group .card .card-header .panel-title {
  display: flex;
}
.cid-uIUF1XpMBN .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont,
.cid-uIUF1XpMBN .panel-group .card .card-header .panel-title:hover .icon-wrapper .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uIUF1XpMBN .panel-group .card .card-header .panel-title .icon-wrapper {
  min-width: 36px;
  width: 36px;
  height: 36px;
  background-color: #a6b1d8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-uIUF1XpMBN .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #ffffff;
  transition: all .3s ease;
}
.cid-uIUF1XpMBN .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-left: 26px;
  margin-bottom: 0;
}
.cid-uIUF1XpMBN .panel-group .card .panel-collapse .panel-body {
  padding: 0 0 30px 66px;
}
.cid-uIUF1XpMBN .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uIUF1XpMBN .mbr-section-title {
  color: #E0BDB6;
}
.cid-uIUF1XpMBN .mbr-section-subtitle {
  color: #747474;
}
.cid-uIUF1XpMBN .mbr-text {
  color: #747474;
}
.cid-uIUF1XpMBN .panel-title-edit {
  color: #5189b8;
}
.cid-uIUF1XpMBN .panel-text {
  color: #747474;
}
.cid-uIUF1XpMBN .mbr-section-title,
.cid-uIUF1XpMBN .mbr-section-btn {
  color: #000000;
}
.cid-uIUF2yv4EC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIUF2yv4EC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIUF2yv4EC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIUF2yv4EC .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uIUF2yv4EC .card-wrap:first-child {
    padding-right: 110px;
  }
}
@media (max-width: 992px) {
  .cid-uIUF2yv4EC .title-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 425px) {
  .cid-uIUF2yv4EC .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uIUF2yv4EC .title-wrapper .mbr-section-title {
  margin-bottom: 25px;
}
.cid-uIUF2yv4EC .title-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uIUF2yv4EC .title-wrapper .mbr-text {
  margin-bottom: 27px;
}
.cid-uIUF2yv4EC .panel-group .card {
  border-bottom: 1px solid #e2e2e2;
  border-radius: 0;
}
.cid-uIUF2yv4EC .panel-group .card .card-header {
  padding: 15px 10px 15px 5px;
  background-color: transparent;
  border: none;
}
.cid-uIUF2yv4EC .panel-group .card .card-header .panel-title {
  display: flex;
}
.cid-uIUF2yv4EC .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont,
.cid-uIUF2yv4EC .panel-group .card .card-header .panel-title:hover .icon-wrapper .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uIUF2yv4EC .panel-group .card .card-header .panel-title .icon-wrapper {
  min-width: 36px;
  width: 36px;
  height: 36px;
  background-color: #a6b1d8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-uIUF2yv4EC .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #ffffff;
  transition: all .3s ease;
}
.cid-uIUF2yv4EC .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-left: 26px;
  margin-bottom: 0;
}
.cid-uIUF2yv4EC .panel-group .card .panel-collapse .panel-body {
  padding: 0 0 30px 66px;
}
.cid-uIUF2yv4EC .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uIUF2yv4EC .mbr-section-title {
  color: #E0BDB6;
}
.cid-uIUF2yv4EC .mbr-section-subtitle {
  color: #747474;
}
.cid-uIUF2yv4EC .mbr-text {
  color: #747474;
}
.cid-uIUF2yv4EC .panel-title-edit {
  color: #5189b8;
}
.cid-uIUF2yv4EC .panel-text {
  color: #747474;
}
.cid-uIUF2yv4EC .mbr-section-title,
.cid-uIUF2yv4EC .mbr-section-btn {
  color: #000000;
}
.cid-uIZOHRE5ro {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIZOHRE5ro .mbr-text {
  color: #747474;
}
.cid-uIUOhuBNJc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #a6b1d8;
}
.cid-uIUOhuBNJc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIUOhuBNJc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIUOhuBNJc .card-title,
.cid-uIUOhuBNJc .card-box {
  text-align: center;
  color: #ffffff;
}
.cid-uIZOInr6p9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIZOInr6p9 .mbr-text {
  color: #747474;
}
.cid-uIUF3X82pv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIUF3X82pv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIUF3X82pv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIUF3X82pv .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uIUF3X82pv .card-wrap:first-child {
    padding-right: 110px;
  }
}
@media (max-width: 992px) {
  .cid-uIUF3X82pv .title-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 425px) {
  .cid-uIUF3X82pv .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uIUF3X82pv .title-wrapper .mbr-section-title {
  margin-bottom: 25px;
}
.cid-uIUF3X82pv .title-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uIUF3X82pv .title-wrapper .mbr-text {
  margin-bottom: 27px;
}
.cid-uIUF3X82pv .panel-group .card {
  border-bottom: 1px solid #e2e2e2;
  border-radius: 0;
}
.cid-uIUF3X82pv .panel-group .card .card-header {
  padding: 15px 10px 15px 5px;
  background-color: transparent;
  border: none;
}
.cid-uIUF3X82pv .panel-group .card .card-header .panel-title {
  display: flex;
}
.cid-uIUF3X82pv .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont,
.cid-uIUF3X82pv .panel-group .card .card-header .panel-title:hover .icon-wrapper .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uIUF3X82pv .panel-group .card .card-header .panel-title .icon-wrapper {
  min-width: 36px;
  width: 36px;
  height: 36px;
  background-color: #a6b1d8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-uIUF3X82pv .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #ffffff;
  transition: all .3s ease;
}
.cid-uIUF3X82pv .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-left: 26px;
  margin-bottom: 0;
}
.cid-uIUF3X82pv .panel-group .card .panel-collapse .panel-body {
  padding: 0 0 30px 66px;
}
.cid-uIUF3X82pv .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uIUF3X82pv .mbr-section-title {
  color: #E0BDB6;
}
.cid-uIUF3X82pv .mbr-section-subtitle {
  color: #747474;
}
.cid-uIUF3X82pv .mbr-text {
  color: #747474;
}
.cid-uIUF3X82pv .panel-title-edit {
  color: #5189b8;
}
.cid-uIUF3X82pv .panel-text {
  color: #747474;
}
.cid-uIUF3X82pv .mbr-section-title,
.cid-uIUF3X82pv .mbr-section-btn {
  color: #000000;
}
.cid-uIZOY8G0fg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uIZOY8G0fg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZOY8G0fg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZOY8G0fg .video-wrapper iframe {
  width: 100%;
}
.cid-uIZOY8G0fg .mbr-section-title,
.cid-uIZOY8G0fg .mbr-section-subtitle,
.cid-uIZOY8G0fg .mbr-text {
  text-align: center;
}
.cid-uIZOY8G0fg .mbr-section-subtitle {
  color: #747474;
}
.cid-uIZZAA8orn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uIZZAA8orn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZZAA8orn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZZAA8orn .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uIZZAA8orn .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uIZZAA8orn .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #6592e6;
}
.cid-uIZZAA8orn .panel-body,
.cid-uIZZAA8orn .card-header {
  padding: 1rem 0;
}
.cid-uIZZAA8orn .panel-title-edit {
  color: #000000;
}
.cid-uIUOKD8KFU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a6b1d8;
}
.cid-uIUOKD8KFU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIUOKD8KFU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIUOKD8KFU .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uIUOKD8KFU .google-map {
    margin-bottom: 48px;
  }
}
.cid-uIUOKD8KFU .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uIUOKD8KFU .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uIUOKD8KFU .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-uIUOKD8KFU .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uIUOKD8KFU .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uIUOKD8KFU .list-wrapper .list .item-wrap:hover,
.cid-uIUOKD8KFU .list-wrapper .list .item-wrap:focus {
  color: #bff747;
}
.cid-uIUOKD8KFU .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uIUOKD8KFU .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uIUOKD8KFU .social-wrapper {
    text-align: left;
  }
}
.cid-uIUOKD8KFU .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uIUOKD8KFU .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uIUOKD8KFU .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uIUOKD8KFU .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #4b4b4b;
  color: #bff747;
}
.cid-uIUOKD8KFU .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #fdfde1;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uIUOKD8KFU .list,
.cid-uIUOKD8KFU .item-wrap,
.cid-uIUOKD8KFU .social-wrapper {
  color: #fdfde1;
}
.cid-uIUPdIlM8p {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uIUPdIlM8p .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-uIUPdIlM8p .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-uIUPdIlM8p .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-uIUPdIlM8p .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-uIUPdIlM8p a {
  background-image: none !important;
}
.cid-uIUPdIlM8p .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-uIUPdIlM8p .container {
  padding: 5rem 1rem;
}
.cid-uIUPdIlM8p p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-uIUPdIlM8p p {
    text-align: center !important;
  }
}
.cid-uIUPdIlM8p .media-container-row .mbr-text2,
.cid-uIUPdIlM8p .line {
  color: #232323;
  text-align: left;
}
.cid-uIUPf1BamC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #a6b1d8;
  overflow: hidden;
}
.cid-uIUQz1S9VK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uIUQz1S9VK nav.navbar {
  position: fixed;
}
.cid-uIUQz1S9VK .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-uIUQz1S9VK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uIUQz1S9VK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uIUQz1S9VK .dropdown-item:hover,
.cid-uIUQz1S9VK .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uIUQz1S9VK .dropdown-item:hover span {
  color: white;
}
.cid-uIUQz1S9VK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uIUQz1S9VK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uIUQz1S9VK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uIUQz1S9VK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uIUQz1S9VK .nav-link {
  position: relative;
}
.cid-uIUQz1S9VK .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uIUQz1S9VK .container {
    flex-wrap: wrap;
  }
}
.cid-uIUQz1S9VK .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uIUQz1S9VK .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uIUQz1S9VK .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIUQz1S9VK .dropdown-menu,
.cid-uIUQz1S9VK .navbar.opened {
  background: #a6b1d8 !important;
}
.cid-uIUQz1S9VK .nav-item:focus,
.cid-uIUQz1S9VK .nav-link:focus {
  outline: none;
}
.cid-uIUQz1S9VK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIUQz1S9VK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIUQz1S9VK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIUQz1S9VK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIUQz1S9VK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIUQz1S9VK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIUQz1S9VK .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: #a6b1d8;
}
.cid-uIUQz1S9VK .navbar.opened {
  transition: all 0.3s;
}
.cid-uIUQz1S9VK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIUQz1S9VK .navbar .navbar-logo img {
  width: auto;
}
.cid-uIUQz1S9VK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uIUQz1S9VK .navbar.collapsed {
  justify-content: center;
}
.cid-uIUQz1S9VK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIUQz1S9VK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIUQz1S9VK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIUQz1S9VK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIUQz1S9VK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIUQz1S9VK .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-uIUQz1S9VK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIUQz1S9VK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIUQz1S9VK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uIUQz1S9VK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIUQz1S9VK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIUQz1S9VK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIUQz1S9VK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIUQz1S9VK .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-uIUQz1S9VK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uIUQz1S9VK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uIUQz1S9VK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIUQz1S9VK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uIUQz1S9VK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIUQz1S9VK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uIUQz1S9VK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uIUQz1S9VK .navbar.navbar-short {
  min-height: 60px;
}
.cid-uIUQz1S9VK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uIUQz1S9VK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uIUQz1S9VK .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-uIUQz1S9VK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIUQz1S9VK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIUQz1S9VK .dropdown-item.active,
.cid-uIUQz1S9VK .dropdown-item:active {
  background-color: transparent;
}
.cid-uIUQz1S9VK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIUQz1S9VK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIUQz1S9VK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIUQz1S9VK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a6b1d8;
}
.cid-uIUQz1S9VK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uIUQz1S9VK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uIUQz1S9VK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIUQz1S9VK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uIUQz1S9VK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIUQz1S9VK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIUQz1S9VK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIUQz1S9VK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIUQz1S9VK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIUQz1S9VK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIUQz1S9VK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIUQz1S9VK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIUQz1S9VK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIUQz1S9VK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIUQz1S9VK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uIUQz1S9VK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIUQz1S9VK .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-uIUQz1S9VK .navbar {
    height: 70px;
  }
  .cid-uIUQz1S9VK .navbar.opened {
    height: auto;
  }
  .cid-uIUQz1S9VK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIUQz2CpkT {
  background-image: url("../../../assets/images/screendoor-istock-907768888-scaled.jpg.optimal-2000x1334.jpg");
}
.cid-uIUQz2CpkT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIUQz2CpkT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIUQz2CpkT .mbr-section-title {
  color: #fafafa;
}
.cid-uIUQz38Pl0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a6b1d8;
}
.cid-uIUQz38Pl0 blockquote {
  border-color: #ffffff;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-uIUQz5siHr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a6b1d8;
}
.cid-uIUQz5siHr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIUQz5siHr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIUQz5siHr .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uIUQz5siHr .google-map {
    margin-bottom: 48px;
  }
}
.cid-uIUQz5siHr .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uIUQz5siHr .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uIUQz5siHr .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-uIUQz5siHr .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uIUQz5siHr .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uIUQz5siHr .list-wrapper .list .item-wrap:hover,
.cid-uIUQz5siHr .list-wrapper .list .item-wrap:focus {
  color: #bff747;
}
.cid-uIUQz5siHr .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uIUQz5siHr .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uIUQz5siHr .social-wrapper {
    text-align: left;
  }
}
.cid-uIUQz5siHr .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uIUQz5siHr .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uIUQz5siHr .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uIUQz5siHr .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #4b4b4b;
  color: #bff747;
}
.cid-uIUQz5siHr .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #fdfde1;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uIUQz5siHr .list,
.cid-uIUQz5siHr .item-wrap,
.cid-uIUQz5siHr .social-wrapper {
  color: #fdfde1;
}
.cid-uIUQz7boC5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uIUQz7boC5 .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-uIUQz7boC5 .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-uIUQz7boC5 .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-uIUQz7boC5 .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-uIUQz7boC5 a {
  background-image: none !important;
}
.cid-uIUQz7boC5 .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-uIUQz7boC5 .container {
  padding: 5rem 1rem;
}
.cid-uIUQz7boC5 p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-uIUQz7boC5 p {
    text-align: center !important;
  }
}
.cid-uIUQz7boC5 .media-container-row .mbr-text2,
.cid-uIUQz7boC5 .line {
  color: #232323;
  text-align: left;
}
.cid-uIUQz7DsPX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #a6b1d8;
  overflow: hidden;
}
.cid-uIUQdnKJGh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uIUQdnKJGh nav.navbar {
  position: fixed;
}
.cid-uIUQdnKJGh .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-uIUQdnKJGh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uIUQdnKJGh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uIUQdnKJGh .dropdown-item:hover,
.cid-uIUQdnKJGh .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uIUQdnKJGh .dropdown-item:hover span {
  color: white;
}
.cid-uIUQdnKJGh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uIUQdnKJGh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uIUQdnKJGh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uIUQdnKJGh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uIUQdnKJGh .nav-link {
  position: relative;
}
.cid-uIUQdnKJGh .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uIUQdnKJGh .container {
    flex-wrap: wrap;
  }
}
.cid-uIUQdnKJGh .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uIUQdnKJGh .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uIUQdnKJGh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIUQdnKJGh .dropdown-menu,
.cid-uIUQdnKJGh .navbar.opened {
  background: #a6b1d8 !important;
}
.cid-uIUQdnKJGh .nav-item:focus,
.cid-uIUQdnKJGh .nav-link:focus {
  outline: none;
}
.cid-uIUQdnKJGh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIUQdnKJGh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIUQdnKJGh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIUQdnKJGh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIUQdnKJGh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIUQdnKJGh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIUQdnKJGh .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: #a6b1d8;
}
.cid-uIUQdnKJGh .navbar.opened {
  transition: all 0.3s;
}
.cid-uIUQdnKJGh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIUQdnKJGh .navbar .navbar-logo img {
  width: auto;
}
.cid-uIUQdnKJGh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uIUQdnKJGh .navbar.collapsed {
  justify-content: center;
}
.cid-uIUQdnKJGh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIUQdnKJGh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIUQdnKJGh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIUQdnKJGh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIUQdnKJGh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIUQdnKJGh .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-uIUQdnKJGh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIUQdnKJGh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIUQdnKJGh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uIUQdnKJGh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIUQdnKJGh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIUQdnKJGh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIUQdnKJGh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIUQdnKJGh .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-uIUQdnKJGh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uIUQdnKJGh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uIUQdnKJGh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIUQdnKJGh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uIUQdnKJGh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIUQdnKJGh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uIUQdnKJGh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uIUQdnKJGh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uIUQdnKJGh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uIUQdnKJGh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uIUQdnKJGh .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-uIUQdnKJGh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIUQdnKJGh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIUQdnKJGh .dropdown-item.active,
.cid-uIUQdnKJGh .dropdown-item:active {
  background-color: transparent;
}
.cid-uIUQdnKJGh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIUQdnKJGh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIUQdnKJGh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIUQdnKJGh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a6b1d8;
}
.cid-uIUQdnKJGh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uIUQdnKJGh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uIUQdnKJGh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIUQdnKJGh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uIUQdnKJGh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIUQdnKJGh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIUQdnKJGh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIUQdnKJGh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIUQdnKJGh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIUQdnKJGh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIUQdnKJGh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIUQdnKJGh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIUQdnKJGh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIUQdnKJGh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIUQdnKJGh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uIUQdnKJGh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIUQdnKJGh .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-uIUQdnKJGh .navbar {
    height: 70px;
  }
  .cid-uIUQdnKJGh .navbar.opened {
    height: auto;
  }
  .cid-uIUQdnKJGh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIUQdomOiu {
  background-image: url("../../../assets/images/how-to-fix-an-interior-door-step-2-1025x625.jpg");
}
.cid-uIUQdomOiu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIUQdomOiu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIUQdpeYrw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a6b1d8;
}
.cid-uIUQdpeYrw blockquote {
  border-color: #ffffff;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-uIUQdtVKBb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a6b1d8;
}
.cid-uIUQdtVKBb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIUQdtVKBb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIUQdtVKBb .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uIUQdtVKBb .google-map {
    margin-bottom: 48px;
  }
}
.cid-uIUQdtVKBb .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uIUQdtVKBb .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uIUQdtVKBb .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-uIUQdtVKBb .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uIUQdtVKBb .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uIUQdtVKBb .list-wrapper .list .item-wrap:hover,
.cid-uIUQdtVKBb .list-wrapper .list .item-wrap:focus {
  color: #bff747;
}
.cid-uIUQdtVKBb .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uIUQdtVKBb .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uIUQdtVKBb .social-wrapper {
    text-align: left;
  }
}
.cid-uIUQdtVKBb .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uIUQdtVKBb .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uIUQdtVKBb .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uIUQdtVKBb .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #4b4b4b;
  color: #bff747;
}
.cid-uIUQdtVKBb .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #fdfde1;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uIUQdtVKBb .list,
.cid-uIUQdtVKBb .item-wrap,
.cid-uIUQdtVKBb .social-wrapper {
  color: #fdfde1;
}
.cid-uIUQduNCuP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uIUQduNCuP .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-uIUQduNCuP .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-uIUQduNCuP .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-uIUQduNCuP .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-uIUQduNCuP a {
  background-image: none !important;
}
.cid-uIUQduNCuP .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-uIUQduNCuP .container {
  padding: 5rem 1rem;
}
.cid-uIUQduNCuP p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-uIUQduNCuP p {
    text-align: center !important;
  }
}
.cid-uIUQduNCuP .media-container-row .mbr-text2,
.cid-uIUQduNCuP .line {
  color: #232323;
  text-align: left;
}
.cid-uIUQdvdCoc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #a6b1d8;
  overflow: hidden;
}
.cid-uIZP3WpgOK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uIZP3WpgOK nav.navbar {
  position: fixed;
}
.cid-uIZP3WpgOK .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-uIZP3WpgOK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uIZP3WpgOK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uIZP3WpgOK .dropdown-item:hover,
.cid-uIZP3WpgOK .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uIZP3WpgOK .dropdown-item:hover span {
  color: white;
}
.cid-uIZP3WpgOK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uIZP3WpgOK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uIZP3WpgOK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uIZP3WpgOK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uIZP3WpgOK .nav-link {
  position: relative;
}
.cid-uIZP3WpgOK .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uIZP3WpgOK .container {
    flex-wrap: wrap;
  }
}
.cid-uIZP3WpgOK .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uIZP3WpgOK .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uIZP3WpgOK .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIZP3WpgOK .dropdown-menu,
.cid-uIZP3WpgOK .navbar.opened {
  background: #a6b1d8 !important;
}
.cid-uIZP3WpgOK .nav-item:focus,
.cid-uIZP3WpgOK .nav-link:focus {
  outline: none;
}
.cid-uIZP3WpgOK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIZP3WpgOK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIZP3WpgOK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIZP3WpgOK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIZP3WpgOK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIZP3WpgOK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIZP3WpgOK .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: #a6b1d8;
}
.cid-uIZP3WpgOK .navbar.opened {
  transition: all 0.3s;
}
.cid-uIZP3WpgOK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIZP3WpgOK .navbar .navbar-logo img {
  width: auto;
}
.cid-uIZP3WpgOK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uIZP3WpgOK .navbar.collapsed {
  justify-content: center;
}
.cid-uIZP3WpgOK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIZP3WpgOK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIZP3WpgOK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIZP3WpgOK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIZP3WpgOK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIZP3WpgOK .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-uIZP3WpgOK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIZP3WpgOK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIZP3WpgOK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uIZP3WpgOK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIZP3WpgOK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIZP3WpgOK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIZP3WpgOK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIZP3WpgOK .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-uIZP3WpgOK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uIZP3WpgOK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uIZP3WpgOK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIZP3WpgOK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uIZP3WpgOK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIZP3WpgOK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uIZP3WpgOK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uIZP3WpgOK .navbar.navbar-short {
  min-height: 60px;
}
.cid-uIZP3WpgOK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uIZP3WpgOK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uIZP3WpgOK .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-uIZP3WpgOK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIZP3WpgOK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIZP3WpgOK .dropdown-item.active,
.cid-uIZP3WpgOK .dropdown-item:active {
  background-color: transparent;
}
.cid-uIZP3WpgOK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIZP3WpgOK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIZP3WpgOK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIZP3WpgOK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a6b1d8;
}
.cid-uIZP3WpgOK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uIZP3WpgOK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uIZP3WpgOK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIZP3WpgOK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uIZP3WpgOK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIZP3WpgOK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIZP3WpgOK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIZP3WpgOK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIZP3WpgOK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIZP3WpgOK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIZP3WpgOK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIZP3WpgOK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIZP3WpgOK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIZP3WpgOK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIZP3WpgOK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uIZP3WpgOK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIZP3WpgOK .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-uIZP3WpgOK .navbar {
    height: 70px;
  }
  .cid-uIZP3WpgOK .navbar.opened {
    height: auto;
  }
  .cid-uIZP3WpgOK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIZP3WWqig {
  background-image: url("../../../assets/images/door-repair-62fe061103838-2000x959.jpg");
}
.cid-uIZP3WWqig .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZP3WWqig .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZP3Xvk7D {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uIZP3Xvk7D .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uIZP3Xvk7D .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uIZP3Xvk7D .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #a6b1d8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  border-radius: 0;
  content: "✓";
}
.cid-uIZP3Xvk7D .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uIZP3Xvk7D .mbr-text {
  color: #000000;
}
.cid-uIZP3XLeuD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a6b1d8;
}
.cid-uIZP3XLeuD blockquote {
  border-color: #ffffff;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-uIZP3Y3tVC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIZP3Y3tVC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZP3Y3tVC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZP3Y3tVC .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uIZP3Y3tVC .card-wrap:first-child {
    padding-right: 110px;
  }
}
@media (max-width: 992px) {
  .cid-uIZP3Y3tVC .title-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 425px) {
  .cid-uIZP3Y3tVC .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uIZP3Y3tVC .title-wrapper .mbr-section-title {
  margin-bottom: 25px;
}
.cid-uIZP3Y3tVC .title-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uIZP3Y3tVC .title-wrapper .mbr-text {
  margin-bottom: 27px;
}
.cid-uIZP3Y3tVC .panel-group .card {
  border-bottom: 1px solid #e2e2e2;
  border-radius: 0;
}
.cid-uIZP3Y3tVC .panel-group .card .card-header {
  padding: 15px 10px 15px 5px;
  background-color: transparent;
  border: none;
}
.cid-uIZP3Y3tVC .panel-group .card .card-header .panel-title {
  display: flex;
}
.cid-uIZP3Y3tVC .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont,
.cid-uIZP3Y3tVC .panel-group .card .card-header .panel-title:hover .icon-wrapper .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uIZP3Y3tVC .panel-group .card .card-header .panel-title .icon-wrapper {
  min-width: 36px;
  width: 36px;
  height: 36px;
  background-color: #a6b1d8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-uIZP3Y3tVC .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #ffffff;
  transition: all .3s ease;
}
.cid-uIZP3Y3tVC .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-left: 26px;
  margin-bottom: 0;
}
.cid-uIZP3Y3tVC .panel-group .card .panel-collapse .panel-body {
  padding: 0 0 30px 66px;
}
.cid-uIZP3Y3tVC .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uIZP3Y3tVC .mbr-section-title {
  color: #E0BDB6;
}
.cid-uIZP3Y3tVC .mbr-section-subtitle {
  color: #747474;
}
.cid-uIZP3Y3tVC .mbr-text {
  color: #747474;
}
.cid-uIZP3Y3tVC .panel-title-edit {
  color: #5189b8;
}
.cid-uIZP3Y3tVC .panel-text {
  color: #747474;
}
.cid-uIZP3Y3tVC .mbr-section-title,
.cid-uIZP3Y3tVC .mbr-section-btn {
  color: #000000;
}
.cid-uIZP3YHSKB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIZP3YHSKB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZP3YHSKB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZP3YHSKB .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uIZP3YHSKB .card-wrap:first-child {
    padding-right: 110px;
  }
}
@media (max-width: 992px) {
  .cid-uIZP3YHSKB .title-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 425px) {
  .cid-uIZP3YHSKB .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uIZP3YHSKB .title-wrapper .mbr-section-title {
  margin-bottom: 25px;
}
.cid-uIZP3YHSKB .title-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uIZP3YHSKB .title-wrapper .mbr-text {
  margin-bottom: 27px;
}
.cid-uIZP3YHSKB .panel-group .card {
  border-bottom: 1px solid #e2e2e2;
  border-radius: 0;
}
.cid-uIZP3YHSKB .panel-group .card .card-header {
  padding: 15px 10px 15px 5px;
  background-color: transparent;
  border: none;
}
.cid-uIZP3YHSKB .panel-group .card .card-header .panel-title {
  display: flex;
}
.cid-uIZP3YHSKB .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont,
.cid-uIZP3YHSKB .panel-group .card .card-header .panel-title:hover .icon-wrapper .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uIZP3YHSKB .panel-group .card .card-header .panel-title .icon-wrapper {
  min-width: 36px;
  width: 36px;
  height: 36px;
  background-color: #a6b1d8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-uIZP3YHSKB .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #ffffff;
  transition: all .3s ease;
}
.cid-uIZP3YHSKB .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-left: 26px;
  margin-bottom: 0;
}
.cid-uIZP3YHSKB .panel-group .card .panel-collapse .panel-body {
  padding: 0 0 30px 66px;
}
.cid-uIZP3YHSKB .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uIZP3YHSKB .mbr-section-title {
  color: #E0BDB6;
}
.cid-uIZP3YHSKB .mbr-section-subtitle {
  color: #747474;
}
.cid-uIZP3YHSKB .mbr-text {
  color: #747474;
}
.cid-uIZP3YHSKB .panel-title-edit {
  color: #5189b8;
}
.cid-uIZP3YHSKB .panel-text {
  color: #747474;
}
.cid-uIZP3YHSKB .mbr-section-title,
.cid-uIZP3YHSKB .mbr-section-btn {
  color: #000000;
}
.cid-uIZP3Zgacv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIZP3Zgacv .mbr-text {
  color: #747474;
}
.cid-uIZP3ZzRkk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #a6b1d8;
}
.cid-uIZP3ZzRkk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZP3ZzRkk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZP3ZzRkk .card-title,
.cid-uIZP3ZzRkk .card-box {
  text-align: center;
  color: #ffffff;
}
.cid-uIZP40eIqo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIZP40eIqo .mbr-text {
  color: #747474;
}
.cid-uIZP40xAz6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIZP40xAz6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZP40xAz6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZP40xAz6 .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uIZP40xAz6 .card-wrap:first-child {
    padding-right: 110px;
  }
}
@media (max-width: 992px) {
  .cid-uIZP40xAz6 .title-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 425px) {
  .cid-uIZP40xAz6 .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uIZP40xAz6 .title-wrapper .mbr-section-title {
  margin-bottom: 25px;
}
.cid-uIZP40xAz6 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uIZP40xAz6 .title-wrapper .mbr-text {
  margin-bottom: 27px;
}
.cid-uIZP40xAz6 .panel-group .card {
  border-bottom: 1px solid #e2e2e2;
  border-radius: 0;
}
.cid-uIZP40xAz6 .panel-group .card .card-header {
  padding: 15px 10px 15px 5px;
  background-color: transparent;
  border: none;
}
.cid-uIZP40xAz6 .panel-group .card .card-header .panel-title {
  display: flex;
}
.cid-uIZP40xAz6 .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont,
.cid-uIZP40xAz6 .panel-group .card .card-header .panel-title:hover .icon-wrapper .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uIZP40xAz6 .panel-group .card .card-header .panel-title .icon-wrapper {
  min-width: 36px;
  width: 36px;
  height: 36px;
  background-color: #a6b1d8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-uIZP40xAz6 .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #ffffff;
  transition: all .3s ease;
}
.cid-uIZP40xAz6 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-left: 26px;
  margin-bottom: 0;
}
.cid-uIZP40xAz6 .panel-group .card .panel-collapse .panel-body {
  padding: 0 0 30px 66px;
}
.cid-uIZP40xAz6 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uIZP40xAz6 .mbr-section-title {
  color: #E0BDB6;
}
.cid-uIZP40xAz6 .mbr-section-subtitle {
  color: #747474;
}
.cid-uIZP40xAz6 .mbr-text {
  color: #747474;
  text-align: left;
}
.cid-uIZP40xAz6 .panel-title-edit {
  color: #5189b8;
}
.cid-uIZP40xAz6 .panel-text {
  color: #747474;
}
.cid-uIZP40xAz6 .mbr-section-title,
.cid-uIZP40xAz6 .mbr-section-btn {
  color: #000000;
}
.cid-uIZP418hZ6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uIZP418hZ6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZP418hZ6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZP418hZ6 .video-wrapper iframe {
  width: 100%;
}
.cid-uIZP418hZ6 .mbr-section-title,
.cid-uIZP418hZ6 .mbr-section-subtitle,
.cid-uIZP418hZ6 .mbr-text {
  text-align: center;
}
.cid-uIZP418hZ6 .mbr-section-subtitle {
  color: #747474;
}
.cid-uIZZVh2nSk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uIZZVh2nSk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZZVh2nSk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZZVh2nSk .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uIZZVh2nSk .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uIZZVh2nSk .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #6592e6;
}
.cid-uIZZVh2nSk .panel-body,
.cid-uIZZVh2nSk .card-header {
  padding: 1rem 0;
}
.cid-uIZZVh2nSk .panel-title-edit {
  color: #000000;
}
.cid-uJ0iZ2YV5Z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a6b1d8;
}
.cid-uJ0iZ2YV5Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ0iZ2YV5Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ0iZ2YV5Z .title-wrapper {
  padding-left: 35%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uJ0iZ2YV5Z .title-wrapper {
    padding-left: 0;
  }
}
.cid-uJ0iZ2YV5Z .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-uJ0iZ2YV5Z .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ0iZ2YV5Z .mbr-section-btn {
  padding-left: 35%;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-uJ0iZ2YV5Z .mbr-section-btn {
    padding-left: 0;
    margin-top: 20px;
  }
}
.cid-uJ0iZ2YV5Z .mbr-section-btn .btn::after,
.cid-uJ0iZ2YV5Z .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-uJ0iZ2YV5Z .mbr-section-btn .btn:hover,
.cid-uJ0iZ2YV5Z .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-uJ0iZ2YV5Z .mbr-section-btn .btn:hover::after,
.cid-uJ0iZ2YV5Z .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-uJ0iZ2YV5Z .panel-group .card {
  position: relative;
  padding: 40px 0;
  background-color: transparent;
  border-bottom: 2px solid #ffffff;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uJ0iZ2YV5Z .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uJ0iZ2YV5Z .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0 !important;
  padding: 0;
}
.cid-uJ0iZ2YV5Z .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}
.cid-uJ0iZ2YV5Z .panel-group .card .card-header .panel-title .panel-number {
  position: absolute;
  left: 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uJ0iZ2YV5Z .panel-group .card .card-header .panel-title .panel-number {
    display: none;
  }
}
.cid-uJ0iZ2YV5Z .panel-group .card .card-header .panel-title .panel-title-edit {
  padding-left: 35%;
  padding-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uJ0iZ2YV5Z .panel-group .card .card-header .panel-title .panel-title-edit {
    padding-left: 0;
  }
}
.cid-uJ0iZ2YV5Z .panel-group .card .card-header .panel-title .arrow-wrapper {
  position: absolute;
  right: 0;
  width: 10px;
  height: 10px;
  background-image: linear-gradient(135deg, transparent 50%, #ffffff 50%);
  transition: all .3s ease;
}
.cid-uJ0iZ2YV5Z .panel-group .card .card-header .panel-title:not(.collapsed) .arrow-wrapper {
  background-image: linear-gradient(45deg, transparent 50%, #ffffff 50%);
}
.cid-uJ0iZ2YV5Z .panel-group .card .panel-collapse .panel-body {
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-uJ0iZ2YV5Z .panel-group .card .panel-collapse .panel-body {
    margin-top: 20px;
  }
}
.cid-uJ0iZ2YV5Z .panel-group .card .panel-collapse .panel-body .panel-text {
  padding-left: 35%;
  display: inline-block;
  margin-bottom: 0;
  width: 90%;
}
@media (max-width: 992px) {
  .cid-uJ0iZ2YV5Z .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
    padding-left: 0;
  }
}
.cid-uJ0iZ2YV5Z .mbr-section-title {
  color: #ffffff;
}
.cid-uJ0iZ2YV5Z .mbr-tag {
  color: #adadad;
}
.cid-uJ0iZ2YV5Z .panel-number {
  color: #ffffff;
}
.cid-uJ0iZ2YV5Z .panel-title-edit {
  color: #ffffff;
}
.cid-uJ0iZ2YV5Z .panel-text {
  color: #c7c7c7;
}
.cid-uJ0iZ2YV5Z .mbr-section-title,
.cid-uJ0iZ2YV5Z .mbr-section-btn {
  text-align: left;
}
.cid-uJ0iZ2YV5Z .panel-text,
.cid-uJ0iZ2YV5Z .panel-body {
  color: #ffffff;
}
.cid-uIZP41zeEo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a6b1d8;
}
.cid-uIZP41zeEo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZP41zeEo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZP41zeEo .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uIZP41zeEo .google-map {
    margin-bottom: 48px;
  }
}
.cid-uIZP41zeEo .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uIZP41zeEo .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uIZP41zeEo .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-uIZP41zeEo .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uIZP41zeEo .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uIZP41zeEo .list-wrapper .list .item-wrap:hover,
.cid-uIZP41zeEo .list-wrapper .list .item-wrap:focus {
  color: #bff747;
}
.cid-uIZP41zeEo .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uIZP41zeEo .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uIZP41zeEo .social-wrapper {
    text-align: left;
  }
}
.cid-uIZP41zeEo .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uIZP41zeEo .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uIZP41zeEo .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uIZP41zeEo .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #4b4b4b;
  color: #bff747;
}
.cid-uIZP41zeEo .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #fdfde1;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uIZP41zeEo .list,
.cid-uIZP41zeEo .item-wrap,
.cid-uIZP41zeEo .social-wrapper {
  color: #fdfde1;
}
.cid-uJ55kYsYGz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uJ55kYsYGz .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-uJ55kYsYGz .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-uJ55kYsYGz .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-uJ55kYsYGz .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-uJ55kYsYGz a {
  background-image: none !important;
}
.cid-uJ55kYsYGz .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-uJ55kYsYGz .container {
  padding: 5rem 1rem;
}
.cid-uJ55kYsYGz p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-uJ55kYsYGz p {
    text-align: center !important;
  }
}
.cid-uJ55kYsYGz .media-container-row .mbr-text2,
.cid-uJ55kYsYGz .line {
  color: #232323;
  text-align: left;
}
.cid-uIZP42zsxh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #a6b1d8;
  overflow: hidden;
}
.cid-uIZPF5Wqsw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uIZPF5Wqsw nav.navbar {
  position: fixed;
}
.cid-uIZPF5Wqsw .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-uIZPF5Wqsw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uIZPF5Wqsw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uIZPF5Wqsw .dropdown-item:hover,
.cid-uIZPF5Wqsw .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uIZPF5Wqsw .dropdown-item:hover span {
  color: white;
}
.cid-uIZPF5Wqsw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uIZPF5Wqsw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uIZPF5Wqsw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uIZPF5Wqsw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uIZPF5Wqsw .nav-link {
  position: relative;
}
.cid-uIZPF5Wqsw .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uIZPF5Wqsw .container {
    flex-wrap: wrap;
  }
}
.cid-uIZPF5Wqsw .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uIZPF5Wqsw .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uIZPF5Wqsw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIZPF5Wqsw .dropdown-menu,
.cid-uIZPF5Wqsw .navbar.opened {
  background: #a6b1d8 !important;
}
.cid-uIZPF5Wqsw .nav-item:focus,
.cid-uIZPF5Wqsw .nav-link:focus {
  outline: none;
}
.cid-uIZPF5Wqsw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIZPF5Wqsw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIZPF5Wqsw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIZPF5Wqsw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIZPF5Wqsw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIZPF5Wqsw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIZPF5Wqsw .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: #a6b1d8;
}
.cid-uIZPF5Wqsw .navbar.opened {
  transition: all 0.3s;
}
.cid-uIZPF5Wqsw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIZPF5Wqsw .navbar .navbar-logo img {
  width: auto;
}
.cid-uIZPF5Wqsw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uIZPF5Wqsw .navbar.collapsed {
  justify-content: center;
}
.cid-uIZPF5Wqsw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIZPF5Wqsw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIZPF5Wqsw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIZPF5Wqsw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIZPF5Wqsw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIZPF5Wqsw .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-uIZPF5Wqsw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIZPF5Wqsw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIZPF5Wqsw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uIZPF5Wqsw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIZPF5Wqsw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIZPF5Wqsw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIZPF5Wqsw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIZPF5Wqsw .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-uIZPF5Wqsw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uIZPF5Wqsw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uIZPF5Wqsw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIZPF5Wqsw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uIZPF5Wqsw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIZPF5Wqsw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uIZPF5Wqsw .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uIZPF5Wqsw .navbar.navbar-short {
  min-height: 60px;
}
.cid-uIZPF5Wqsw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uIZPF5Wqsw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uIZPF5Wqsw .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-uIZPF5Wqsw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIZPF5Wqsw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIZPF5Wqsw .dropdown-item.active,
.cid-uIZPF5Wqsw .dropdown-item:active {
  background-color: transparent;
}
.cid-uIZPF5Wqsw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIZPF5Wqsw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIZPF5Wqsw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIZPF5Wqsw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a6b1d8;
}
.cid-uIZPF5Wqsw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uIZPF5Wqsw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uIZPF5Wqsw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIZPF5Wqsw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uIZPF5Wqsw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIZPF5Wqsw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIZPF5Wqsw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIZPF5Wqsw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIZPF5Wqsw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIZPF5Wqsw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIZPF5Wqsw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIZPF5Wqsw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIZPF5Wqsw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIZPF5Wqsw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIZPF5Wqsw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uIZPF5Wqsw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIZPF5Wqsw .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-uIZPF5Wqsw .navbar {
    height: 70px;
  }
  .cid-uIZPF5Wqsw .navbar.opened {
    height: auto;
  }
  .cid-uIZPF5Wqsw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIZPF6A5gA {
  background-image: url("../../../assets/images/surefix-home-improvements-door-repair-in-waterlooville-hampshire-2000x1334.jpg");
}
.cid-uIZPF6A5gA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZPF6A5gA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZPF7181R {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uIZPF7181R .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uIZPF7181R .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uIZPF7181R .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #a6b1d8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  border-radius: 0;
  content: "✓";
}
.cid-uIZPF7181R .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uIZPF7181R .mbr-text {
  color: #000000;
}
.cid-uIZPF7kCek {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a6b1d8;
}
.cid-uIZPF7kCek blockquote {
  border-color: #ffffff;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-uIZPF7D2vC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIZPF7D2vC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZPF7D2vC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZPF7D2vC .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uIZPF7D2vC .card-wrap:first-child {
    padding-right: 110px;
  }
}
@media (max-width: 992px) {
  .cid-uIZPF7D2vC .title-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 425px) {
  .cid-uIZPF7D2vC .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uIZPF7D2vC .title-wrapper .mbr-section-title {
  margin-bottom: 25px;
}
.cid-uIZPF7D2vC .title-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uIZPF7D2vC .title-wrapper .mbr-text {
  margin-bottom: 27px;
}
.cid-uIZPF7D2vC .panel-group .card {
  border-bottom: 1px solid #e2e2e2;
  border-radius: 0;
}
.cid-uIZPF7D2vC .panel-group .card .card-header {
  padding: 15px 10px 15px 5px;
  background-color: transparent;
  border: none;
}
.cid-uIZPF7D2vC .panel-group .card .card-header .panel-title {
  display: flex;
}
.cid-uIZPF7D2vC .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont,
.cid-uIZPF7D2vC .panel-group .card .card-header .panel-title:hover .icon-wrapper .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uIZPF7D2vC .panel-group .card .card-header .panel-title .icon-wrapper {
  min-width: 36px;
  width: 36px;
  height: 36px;
  background-color: #a6b1d8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-uIZPF7D2vC .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #ffffff;
  transition: all .3s ease;
}
.cid-uIZPF7D2vC .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-left: 26px;
  margin-bottom: 0;
}
.cid-uIZPF7D2vC .panel-group .card .panel-collapse .panel-body {
  padding: 0 0 30px 66px;
}
.cid-uIZPF7D2vC .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uIZPF7D2vC .mbr-section-title {
  color: #E0BDB6;
}
.cid-uIZPF7D2vC .mbr-section-subtitle {
  color: #747474;
}
.cid-uIZPF7D2vC .mbr-text {
  color: #747474;
}
.cid-uIZPF7D2vC .panel-title-edit {
  color: #5189b8;
}
.cid-uIZPF7D2vC .panel-text {
  color: #747474;
}
.cid-uIZPF7D2vC .mbr-section-title,
.cid-uIZPF7D2vC .mbr-section-btn {
  color: #000000;
}
.cid-uIZPF8hKSS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIZPF8hKSS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZPF8hKSS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZPF8hKSS .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uIZPF8hKSS .card-wrap:first-child {
    padding-right: 110px;
  }
}
@media (max-width: 992px) {
  .cid-uIZPF8hKSS .title-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 425px) {
  .cid-uIZPF8hKSS .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uIZPF8hKSS .title-wrapper .mbr-section-title {
  margin-bottom: 25px;
}
.cid-uIZPF8hKSS .title-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uIZPF8hKSS .title-wrapper .mbr-text {
  margin-bottom: 27px;
}
.cid-uIZPF8hKSS .panel-group .card {
  border-bottom: 1px solid #e2e2e2;
  border-radius: 0;
}
.cid-uIZPF8hKSS .panel-group .card .card-header {
  padding: 15px 10px 15px 5px;
  background-color: transparent;
  border: none;
}
.cid-uIZPF8hKSS .panel-group .card .card-header .panel-title {
  display: flex;
}
.cid-uIZPF8hKSS .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont,
.cid-uIZPF8hKSS .panel-group .card .card-header .panel-title:hover .icon-wrapper .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uIZPF8hKSS .panel-group .card .card-header .panel-title .icon-wrapper {
  min-width: 36px;
  width: 36px;
  height: 36px;
  background-color: #a6b1d8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-uIZPF8hKSS .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #ffffff;
  transition: all .3s ease;
}
.cid-uIZPF8hKSS .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-left: 26px;
  margin-bottom: 0;
}
.cid-uIZPF8hKSS .panel-group .card .panel-collapse .panel-body {
  padding: 0 0 30px 66px;
}
.cid-uIZPF8hKSS .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uIZPF8hKSS .mbr-section-title {
  color: #E0BDB6;
}
.cid-uIZPF8hKSS .mbr-section-subtitle {
  color: #747474;
}
.cid-uIZPF8hKSS .mbr-text {
  color: #747474;
}
.cid-uIZPF8hKSS .panel-title-edit {
  color: #5189b8;
}
.cid-uIZPF8hKSS .panel-text {
  color: #747474;
}
.cid-uIZPF8hKSS .mbr-section-title,
.cid-uIZPF8hKSS .mbr-section-btn {
  color: #000000;
}
.cid-uIZPF8Qw45 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIZPF8Qw45 .mbr-text {
  color: #747474;
}
.cid-uIZPF98c2X {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #a6b1d8;
}
.cid-uIZPF98c2X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZPF98c2X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZPF98c2X .card-title,
.cid-uIZPF98c2X .card-box {
  text-align: center;
  color: #ffffff;
}
.cid-uIZPFajwde {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIZPFajwde .mbr-text {
  color: #747474;
}
.cid-uIZPFb8eKv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIZPFb8eKv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZPFb8eKv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZPFb8eKv .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uIZPFb8eKv .card-wrap:first-child {
    padding-right: 110px;
  }
}
@media (max-width: 992px) {
  .cid-uIZPFb8eKv .title-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 425px) {
  .cid-uIZPFb8eKv .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uIZPFb8eKv .title-wrapper .mbr-section-title {
  margin-bottom: 25px;
}
.cid-uIZPFb8eKv .title-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uIZPFb8eKv .title-wrapper .mbr-text {
  margin-bottom: 27px;
}
.cid-uIZPFb8eKv .panel-group .card {
  border-bottom: 1px solid #e2e2e2;
  border-radius: 0;
}
.cid-uIZPFb8eKv .panel-group .card .card-header {
  padding: 15px 10px 15px 5px;
  background-color: transparent;
  border: none;
}
.cid-uIZPFb8eKv .panel-group .card .card-header .panel-title {
  display: flex;
}
.cid-uIZPFb8eKv .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont,
.cid-uIZPFb8eKv .panel-group .card .card-header .panel-title:hover .icon-wrapper .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uIZPFb8eKv .panel-group .card .card-header .panel-title .icon-wrapper {
  min-width: 36px;
  width: 36px;
  height: 36px;
  background-color: #a6b1d8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-uIZPFb8eKv .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #ffffff;
  transition: all .3s ease;
}
.cid-uIZPFb8eKv .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-left: 26px;
  margin-bottom: 0;
}
.cid-uIZPFb8eKv .panel-group .card .panel-collapse .panel-body {
  padding: 0 0 30px 66px;
}
.cid-uIZPFb8eKv .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uIZPFb8eKv .mbr-section-title {
  color: #E0BDB6;
}
.cid-uIZPFb8eKv .mbr-section-subtitle {
  color: #747474;
}
.cid-uIZPFb8eKv .mbr-text {
  color: #747474;
}
.cid-uIZPFb8eKv .panel-title-edit {
  color: #5189b8;
}
.cid-uIZPFb8eKv .panel-text {
  color: #747474;
}
.cid-uIZPFb8eKv .mbr-section-title,
.cid-uIZPFb8eKv .mbr-section-btn {
  color: #000000;
}
.cid-uIZPFcLJZK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uIZPFcLJZK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZPFcLJZK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZPFcLJZK .video-wrapper iframe {
  width: 100%;
}
.cid-uIZPFcLJZK .mbr-section-title,
.cid-uIZPFcLJZK .mbr-section-subtitle,
.cid-uIZPFcLJZK .mbr-text {
  text-align: center;
}
.cid-uIZPFcLJZK .mbr-section-subtitle {
  color: #747474;
}
.cid-uIZZXwnRPF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uIZZXwnRPF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZZXwnRPF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZZXwnRPF .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uIZZXwnRPF .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uIZZXwnRPF .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #6592e6;
}
.cid-uIZZXwnRPF .panel-body,
.cid-uIZZXwnRPF .card-header {
  padding: 1rem 0;
}
.cid-uIZZXwnRPF .panel-title-edit {
  color: #000000;
}
.cid-uJ0jGmkOCN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a6b1d8;
}
.cid-uJ0jGmkOCN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ0jGmkOCN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ0jGmkOCN .title-wrapper {
  padding-left: 35%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uJ0jGmkOCN .title-wrapper {
    padding-left: 0;
  }
}
.cid-uJ0jGmkOCN .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-uJ0jGmkOCN .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ0jGmkOCN .mbr-section-btn {
  padding-left: 35%;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-uJ0jGmkOCN .mbr-section-btn {
    padding-left: 0;
    margin-top: 20px;
  }
}
.cid-uJ0jGmkOCN .mbr-section-btn .btn::after,
.cid-uJ0jGmkOCN .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-uJ0jGmkOCN .mbr-section-btn .btn:hover,
.cid-uJ0jGmkOCN .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-uJ0jGmkOCN .mbr-section-btn .btn:hover::after,
.cid-uJ0jGmkOCN .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-uJ0jGmkOCN .panel-group .card {
  position: relative;
  padding: 40px 0;
  background-color: transparent;
  border-bottom: 2px solid #ffffff;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uJ0jGmkOCN .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uJ0jGmkOCN .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0 !important;
  padding: 0;
}
.cid-uJ0jGmkOCN .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}
.cid-uJ0jGmkOCN .panel-group .card .card-header .panel-title .panel-number {
  position: absolute;
  left: 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uJ0jGmkOCN .panel-group .card .card-header .panel-title .panel-number {
    display: none;
  }
}
.cid-uJ0jGmkOCN .panel-group .card .card-header .panel-title .panel-title-edit {
  padding-left: 35%;
  padding-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uJ0jGmkOCN .panel-group .card .card-header .panel-title .panel-title-edit {
    padding-left: 0;
  }
}
.cid-uJ0jGmkOCN .panel-group .card .card-header .panel-title .arrow-wrapper {
  position: absolute;
  right: 0;
  width: 10px;
  height: 10px;
  background-image: linear-gradient(135deg, transparent 50%, #ffffff 50%);
  transition: all .3s ease;
}
.cid-uJ0jGmkOCN .panel-group .card .card-header .panel-title:not(.collapsed) .arrow-wrapper {
  background-image: linear-gradient(45deg, transparent 50%, #ffffff 50%);
}
.cid-uJ0jGmkOCN .panel-group .card .panel-collapse .panel-body {
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-uJ0jGmkOCN .panel-group .card .panel-collapse .panel-body {
    margin-top: 20px;
  }
}
.cid-uJ0jGmkOCN .panel-group .card .panel-collapse .panel-body .panel-text {
  padding-left: 35%;
  display: inline-block;
  margin-bottom: 0;
  width: 90%;
}
@media (max-width: 992px) {
  .cid-uJ0jGmkOCN .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
    padding-left: 0;
  }
}
.cid-uJ0jGmkOCN .mbr-section-title {
  color: #ffffff;
}
.cid-uJ0jGmkOCN .mbr-tag {
  color: #adadad;
}
.cid-uJ0jGmkOCN .panel-number {
  color: #ffffff;
}
.cid-uJ0jGmkOCN .panel-title-edit {
  color: #ffffff;
}
.cid-uJ0jGmkOCN .panel-text {
  color: #c7c7c7;
}
.cid-uJ0jGmkOCN .panel-text,
.cid-uJ0jGmkOCN .panel-body {
  color: #ffffff;
}
.cid-uIZPFdN5Fx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a6b1d8;
}
.cid-uIZPFdN5Fx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZPFdN5Fx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZPFdN5Fx .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uIZPFdN5Fx .google-map {
    margin-bottom: 48px;
  }
}
.cid-uIZPFdN5Fx .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uIZPFdN5Fx .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uIZPFdN5Fx .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-uIZPFdN5Fx .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uIZPFdN5Fx .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uIZPFdN5Fx .list-wrapper .list .item-wrap:hover,
.cid-uIZPFdN5Fx .list-wrapper .list .item-wrap:focus {
  color: #bff747;
}
.cid-uIZPFdN5Fx .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uIZPFdN5Fx .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uIZPFdN5Fx .social-wrapper {
    text-align: left;
  }
}
.cid-uIZPFdN5Fx .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uIZPFdN5Fx .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uIZPFdN5Fx .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uIZPFdN5Fx .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #4b4b4b;
  color: #bff747;
}
.cid-uIZPFdN5Fx .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #fdfde1;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uIZPFdN5Fx .list,
.cid-uIZPFdN5Fx .item-wrap,
.cid-uIZPFdN5Fx .social-wrapper {
  color: #fdfde1;
}
.cid-uIZPFegZet {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uIZPFegZet .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-uIZPFegZet .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-uIZPFegZet .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-uIZPFegZet .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-uIZPFegZet a {
  background-image: none !important;
}
.cid-uIZPFegZet .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-uIZPFegZet .container {
  padding: 5rem 1rem;
}
.cid-uIZPFegZet p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-uIZPFegZet p {
    text-align: center !important;
  }
}
.cid-uIZPFegZet .media-container-row .mbr-text2,
.cid-uIZPFegZet .line {
  color: #232323;
  text-align: left;
}
.cid-uIZPFeMkdX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #a6b1d8;
  overflow: hidden;
}
.cid-uIZTaiWBNr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uIZTaiWBNr nav.navbar {
  position: fixed;
}
.cid-uIZTaiWBNr .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-uIZTaiWBNr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uIZTaiWBNr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uIZTaiWBNr .dropdown-item:hover,
.cid-uIZTaiWBNr .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-uIZTaiWBNr .dropdown-item:hover span {
  color: white;
}
.cid-uIZTaiWBNr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uIZTaiWBNr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uIZTaiWBNr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uIZTaiWBNr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uIZTaiWBNr .nav-link {
  position: relative;
}
.cid-uIZTaiWBNr .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uIZTaiWBNr .container {
    flex-wrap: wrap;
  }
}
.cid-uIZTaiWBNr .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uIZTaiWBNr .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uIZTaiWBNr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIZTaiWBNr .dropdown-menu,
.cid-uIZTaiWBNr .navbar.opened {
  background: #a6b1d8 !important;
}
.cid-uIZTaiWBNr .nav-item:focus,
.cid-uIZTaiWBNr .nav-link:focus {
  outline: none;
}
.cid-uIZTaiWBNr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIZTaiWBNr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIZTaiWBNr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIZTaiWBNr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIZTaiWBNr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIZTaiWBNr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIZTaiWBNr .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: #a6b1d8;
}
.cid-uIZTaiWBNr .navbar.opened {
  transition: all 0.3s;
}
.cid-uIZTaiWBNr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIZTaiWBNr .navbar .navbar-logo img {
  width: auto;
}
.cid-uIZTaiWBNr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uIZTaiWBNr .navbar.collapsed {
  justify-content: center;
}
.cid-uIZTaiWBNr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIZTaiWBNr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIZTaiWBNr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIZTaiWBNr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIZTaiWBNr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIZTaiWBNr .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-uIZTaiWBNr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIZTaiWBNr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIZTaiWBNr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uIZTaiWBNr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIZTaiWBNr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIZTaiWBNr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIZTaiWBNr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIZTaiWBNr .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-uIZTaiWBNr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uIZTaiWBNr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uIZTaiWBNr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIZTaiWBNr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uIZTaiWBNr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIZTaiWBNr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uIZTaiWBNr .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uIZTaiWBNr .navbar.navbar-short {
  min-height: 60px;
}
.cid-uIZTaiWBNr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uIZTaiWBNr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uIZTaiWBNr .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-uIZTaiWBNr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIZTaiWBNr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIZTaiWBNr .dropdown-item.active,
.cid-uIZTaiWBNr .dropdown-item:active {
  background-color: transparent;
}
.cid-uIZTaiWBNr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIZTaiWBNr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIZTaiWBNr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIZTaiWBNr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a6b1d8;
}
.cid-uIZTaiWBNr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uIZTaiWBNr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uIZTaiWBNr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIZTaiWBNr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uIZTaiWBNr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIZTaiWBNr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIZTaiWBNr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIZTaiWBNr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIZTaiWBNr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIZTaiWBNr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIZTaiWBNr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIZTaiWBNr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIZTaiWBNr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIZTaiWBNr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIZTaiWBNr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uIZTaiWBNr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIZTaiWBNr .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-uIZTaiWBNr .navbar {
    height: 70px;
  }
  .cid-uIZTaiWBNr .navbar.opened {
    height: auto;
  }
  .cid-uIZTaiWBNr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIZTajIyf2 {
  background-image: url("../../../assets/images/sliding-door-repair-in-toronto-jpg-1200x675-1.webp");
}
.cid-uIZTajIyf2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZTajIyf2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZTakfl8z {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uIZTakfl8z .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uIZTakfl8z .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uIZTakfl8z .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #a6b1d8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  border-radius: 0;
  content: "✓";
}
.cid-uIZTakfl8z .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uIZTakfl8z .mbr-text {
  color: #000000;
}
.cid-uIZTakyCpk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a6b1d8;
}
.cid-uIZTakyCpk blockquote {
  border-color: #ffffff;
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-uIZTakVsfP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIZTakVsfP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZTakVsfP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZTakVsfP .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uIZTakVsfP .card-wrap:first-child {
    padding-right: 110px;
  }
}
@media (max-width: 992px) {
  .cid-uIZTakVsfP .title-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 425px) {
  .cid-uIZTakVsfP .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uIZTakVsfP .title-wrapper .mbr-section-title {
  margin-bottom: 25px;
}
.cid-uIZTakVsfP .title-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uIZTakVsfP .title-wrapper .mbr-text {
  margin-bottom: 27px;
}
.cid-uIZTakVsfP .panel-group .card {
  border-bottom: 1px solid #e2e2e2;
  border-radius: 0;
}
.cid-uIZTakVsfP .panel-group .card .card-header {
  padding: 15px 10px 15px 5px;
  background-color: transparent;
  border: none;
}
.cid-uIZTakVsfP .panel-group .card .card-header .panel-title {
  display: flex;
}
.cid-uIZTakVsfP .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont,
.cid-uIZTakVsfP .panel-group .card .card-header .panel-title:hover .icon-wrapper .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uIZTakVsfP .panel-group .card .card-header .panel-title .icon-wrapper {
  min-width: 36px;
  width: 36px;
  height: 36px;
  background-color: #a6b1d8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-uIZTakVsfP .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #ffffff;
  transition: all .3s ease;
}
.cid-uIZTakVsfP .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-left: 26px;
  margin-bottom: 0;
}
.cid-uIZTakVsfP .panel-group .card .panel-collapse .panel-body {
  padding: 0 0 30px 66px;
}
.cid-uIZTakVsfP .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uIZTakVsfP .mbr-section-title {
  color: #E0BDB6;
}
.cid-uIZTakVsfP .mbr-section-subtitle {
  color: #747474;
}
.cid-uIZTakVsfP .mbr-text {
  color: #747474;
}
.cid-uIZTakVsfP .panel-title-edit {
  color: #5189b8;
}
.cid-uIZTakVsfP .panel-text {
  color: #747474;
}
.cid-uIZTakVsfP .mbr-section-title,
.cid-uIZTakVsfP .mbr-section-btn {
  color: #000000;
}
.cid-uIZTalF79k {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIZTalF79k .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZTalF79k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZTalF79k .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uIZTalF79k .card-wrap:first-child {
    padding-right: 110px;
  }
}
@media (max-width: 992px) {
  .cid-uIZTalF79k .title-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 425px) {
  .cid-uIZTalF79k .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uIZTalF79k .title-wrapper .mbr-section-title {
  margin-bottom: 25px;
}
.cid-uIZTalF79k .title-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uIZTalF79k .title-wrapper .mbr-text {
  margin-bottom: 27px;
}
.cid-uIZTalF79k .panel-group .card {
  border-bottom: 1px solid #e2e2e2;
  border-radius: 0;
}
.cid-uIZTalF79k .panel-group .card .card-header {
  padding: 15px 10px 15px 5px;
  background-color: transparent;
  border: none;
}
.cid-uIZTalF79k .panel-group .card .card-header .panel-title {
  display: flex;
}
.cid-uIZTalF79k .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont,
.cid-uIZTalF79k .panel-group .card .card-header .panel-title:hover .icon-wrapper .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uIZTalF79k .panel-group .card .card-header .panel-title .icon-wrapper {
  min-width: 36px;
  width: 36px;
  height: 36px;
  background-color: #a6b1d8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-uIZTalF79k .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #ffffff;
  transition: all .3s ease;
}
.cid-uIZTalF79k .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-left: 26px;
  margin-bottom: 0;
}
.cid-uIZTalF79k .panel-group .card .panel-collapse .panel-body {
  padding: 0 0 30px 66px;
}
.cid-uIZTalF79k .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uIZTalF79k .mbr-section-title {
  color: #E0BDB6;
}
.cid-uIZTalF79k .mbr-section-subtitle {
  color: #747474;
}
.cid-uIZTalF79k .mbr-text {
  color: #747474;
}
.cid-uIZTalF79k .panel-title-edit {
  color: #5189b8;
}
.cid-uIZTalF79k .panel-text {
  color: #747474;
}
.cid-uIZTalF79k .mbr-section-title,
.cid-uIZTalF79k .mbr-section-btn {
  color: #000000;
}
.cid-uIZTamf2tZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIZTamf2tZ .mbr-text {
  color: #747474;
}
.cid-uIZTamziTi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #a6b1d8;
}
.cid-uIZTamziTi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZTamziTi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZTamziTi .card-title,
.cid-uIZTamziTi .card-box {
  text-align: center;
  color: #ffffff;
}
.cid-uIZTanbg9Y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIZTanbg9Y .mbr-text {
  color: #747474;
}
.cid-uIZTantipB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIZTantipB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZTantipB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZTantipB .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uIZTantipB .card-wrap:first-child {
    padding-right: 110px;
  }
}
@media (max-width: 992px) {
  .cid-uIZTantipB .title-wrapper {
    margin-bottom: 70px;
  }
}
@media (max-width: 425px) {
  .cid-uIZTantipB .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uIZTantipB .title-wrapper .mbr-section-title {
  margin-bottom: 25px;
}
.cid-uIZTantipB .title-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uIZTantipB .title-wrapper .mbr-text {
  margin-bottom: 27px;
}
.cid-uIZTantipB .panel-group .card {
  border-bottom: 1px solid #e2e2e2;
  border-radius: 0;
}
.cid-uIZTantipB .panel-group .card .card-header {
  padding: 15px 10px 15px 5px;
  background-color: transparent;
  border: none;
}
.cid-uIZTantipB .panel-group .card .card-header .panel-title {
  display: flex;
}
.cid-uIZTantipB .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont,
.cid-uIZTantipB .panel-group .card .card-header .panel-title:hover .icon-wrapper .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uIZTantipB .panel-group .card .card-header .panel-title .icon-wrapper {
  min-width: 36px;
  width: 36px;
  height: 36px;
  background-color: #a6b1d8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-uIZTantipB .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #ffffff;
  transition: all .3s ease;
}
.cid-uIZTantipB .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-left: 26px;
  margin-bottom: 0;
}
.cid-uIZTantipB .panel-group .card .panel-collapse .panel-body {
  padding: 0 0 30px 66px;
}
.cid-uIZTantipB .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uIZTantipB .mbr-section-title {
  color: #E0BDB6;
}
.cid-uIZTantipB .mbr-section-subtitle {
  color: #747474;
}
.cid-uIZTantipB .mbr-text {
  color: #747474;
}
.cid-uIZTantipB .panel-title-edit {
  color: #5189b8;
}
.cid-uIZTantipB .panel-text {
  color: #747474;
}
.cid-uIZTantipB .mbr-section-title,
.cid-uIZTantipB .mbr-section-btn {
  color: #000000;
}
.cid-uIZTao1WY0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uIZTao1WY0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZTao1WY0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZTao1WY0 .video-wrapper iframe {
  width: 100%;
}
.cid-uIZTao1WY0 .mbr-section-title,
.cid-uIZTao1WY0 .mbr-section-subtitle,
.cid-uIZTao1WY0 .mbr-text {
  text-align: center;
}
.cid-uIZTao1WY0 .mbr-section-subtitle {
  color: #747474;
}
.cid-uJ001b94CS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uJ001b94CS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ001b94CS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ001b94CS .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uJ001b94CS .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uJ001b94CS .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #6592e6;
}
.cid-uJ001b94CS .panel-body,
.cid-uJ001b94CS .card-header {
  padding: 1rem 0;
}
.cid-uJ001b94CS .panel-title-edit {
  color: #000000;
}
.cid-uJ0keDjhBD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a6b1d8;
}
.cid-uJ0keDjhBD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ0keDjhBD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ0keDjhBD .title-wrapper {
  padding-left: 35%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uJ0keDjhBD .title-wrapper {
    padding-left: 0;
  }
}
.cid-uJ0keDjhBD .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-uJ0keDjhBD .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ0keDjhBD .mbr-section-btn {
  padding-left: 35%;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-uJ0keDjhBD .mbr-section-btn {
    padding-left: 0;
    margin-top: 20px;
  }
}
.cid-uJ0keDjhBD .mbr-section-btn .btn::after,
.cid-uJ0keDjhBD .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-uJ0keDjhBD .mbr-section-btn .btn:hover,
.cid-uJ0keDjhBD .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-uJ0keDjhBD .mbr-section-btn .btn:hover::after,
.cid-uJ0keDjhBD .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-uJ0keDjhBD .panel-group .card {
  position: relative;
  padding: 40px 0;
  background-color: transparent;
  border-bottom: 2px solid #ffffff;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uJ0keDjhBD .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uJ0keDjhBD .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0 !important;
  padding: 0;
}
.cid-uJ0keDjhBD .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}
.cid-uJ0keDjhBD .panel-group .card .card-header .panel-title .panel-number {
  position: absolute;
  left: 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uJ0keDjhBD .panel-group .card .card-header .panel-title .panel-number {
    display: none;
  }
}
.cid-uJ0keDjhBD .panel-group .card .card-header .panel-title .panel-title-edit {
  padding-left: 35%;
  padding-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uJ0keDjhBD .panel-group .card .card-header .panel-title .panel-title-edit {
    padding-left: 0;
  }
}
.cid-uJ0keDjhBD .panel-group .card .card-header .panel-title .arrow-wrapper {
  position: absolute;
  right: 0;
  width: 10px;
  height: 10px;
  background-image: linear-gradient(135deg, transparent 50%, #ffffff 50%);
  transition: all .3s ease;
}
.cid-uJ0keDjhBD .panel-group .card .card-header .panel-title:not(.collapsed) .arrow-wrapper {
  background-image: linear-gradient(45deg, transparent 50%, #ffffff 50%);
}
.cid-uJ0keDjhBD .panel-group .card .panel-collapse .panel-body {
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-uJ0keDjhBD .panel-group .card .panel-collapse .panel-body {
    margin-top: 20px;
  }
}
.cid-uJ0keDjhBD .panel-group .card .panel-collapse .panel-body .panel-text {
  padding-left: 35%;
  display: inline-block;
  margin-bottom: 0;
  width: 90%;
}
@media (max-width: 992px) {
  .cid-uJ0keDjhBD .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
    padding-left: 0;
  }
}
.cid-uJ0keDjhBD .mbr-section-title {
  color: #ffffff;
}
.cid-uJ0keDjhBD .mbr-tag {
  color: #adadad;
}
.cid-uJ0keDjhBD .panel-number {
  color: #ffffff;
}
.cid-uJ0keDjhBD .panel-title-edit {
  color: #ffffff;
}
.cid-uJ0keDjhBD .panel-text {
  color: #c7c7c7;
}
.cid-uJ0keDjhBD .panel-text,
.cid-uJ0keDjhBD .panel-body {
  color: #ffffff;
}
.cid-uIZTaoG35e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #a6b1d8;
}
.cid-uIZTaoG35e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIZTaoG35e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIZTaoG35e .google-map {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uIZTaoG35e .google-map {
    margin-bottom: 48px;
  }
}
.cid-uIZTaoG35e .google-map iframe {
  height: 480px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uIZTaoG35e .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uIZTaoG35e .list-wrapper {
    margin-bottom: 36px;
  }
}
.cid-uIZTaoG35e .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uIZTaoG35e .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cid-uIZTaoG35e .list-wrapper .list .item-wrap:hover,
.cid-uIZTaoG35e .list-wrapper .list .item-wrap:focus {
  color: #bff747;
}
.cid-uIZTaoG35e .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uIZTaoG35e .social-wrapper {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uIZTaoG35e .social-wrapper {
    text-align: left;
  }
}
.cid-uIZTaoG35e .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uIZTaoG35e .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uIZTaoG35e .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uIZTaoG35e .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #4b4b4b;
  color: #bff747;
}
.cid-uIZTaoG35e .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #fdfde1;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uIZTaoG35e .list,
.cid-uIZTaoG35e .item-wrap,
.cid-uIZTaoG35e .social-wrapper {
  color: #fdfde1;
}
.cid-uIZTapf5tN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uIZTapf5tN .media-container-row .mbr-text {
  color: #aaaaaa;
  text-align: left;
}
.cid-uIZTapf5tN .media-container-row .mbr-text2 {
  color: #232323;
}
.cid-uIZTapf5tN .media-container-row .mbr-text1 {
  color: #232323;
  text-align: left;
}
.cid-uIZTapf5tN .media-container-row .mbr-text3 {
  color: #232323;
  text-align: right;
}
.cid-uIZTapf5tN a {
  background-image: none !important;
}
.cid-uIZTapf5tN .line {
  width: 100%;
  height: 1px;
  background: currentColor;
}
.cid-uIZTapf5tN .container {
  padding: 5rem 1rem;
}
.cid-uIZTapf5tN p {
  padding: 0.5rem 0;
}
@media (max-width: 992px) {
  .cid-uIZTapf5tN p {
    text-align: center !important;
  }
}
.cid-uIZTapf5tN .media-container-row .mbr-text2,
.cid-uIZTapf5tN .line {
  color: #232323;
  text-align: left;
}
.cid-uIZTapF5gj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #a6b1d8;
  overflow: hidden;
}
