body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.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.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.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.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- 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.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((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.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))));
  }
  .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: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((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: #be2626 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #be2626 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #be2626 !important;
  border-color: #be2626 !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: #761818 !important;
  border-color: #761818 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #761818 !important;
  border-color: #761818 !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: #be2626 !important;
  border-color: #be2626 !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: #761818 !important;
  border-color: #761818 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #761818 !important;
  border-color: #761818 !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: #be2626;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #761818 !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: #be2626 !important;
  border-color: #be2626 !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: #be2626;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #761818 !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: #be2626 !important;
  border-color: #be2626 !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: #be2626 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #be2626 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #691515 !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: #691515 !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: #be2626;
}
.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: #be2626;
}
.mbr-gallery-filter li.active .btn {
  background-color: #be2626;
  border-color: #be2626;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #be2626;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e57e7e;
}
.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: #e57e7e;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #be2626 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #be2626;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #be2626;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #be2626;
}
.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: #be2626;
  border-bottom-color: #be2626;
}
.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: #be2626 !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='%23be2626' %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-tZrHyXp0qZ {
  background-color: transparent;
}
.cid-tZrHyXp0qZ .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tZrHyXp0qZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tZrHyXp0qZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZrHyXp0qZ .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tZrHyXp0qZ .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tZrHyXp0qZ .menu_box .navbar.opened,
  .cid-tZrHyXp0qZ .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tZrHyXp0qZ .navbar-dropdown {
  position: relative !important;
}
.cid-tZrHyXp0qZ .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tZrHyXp0qZ .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tZrHyXp0qZ .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tZrHyXp0qZ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tZrHyXp0qZ .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tZrHyXp0qZ .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #f1f1f1;
  }
  .cid-tZrHyXp0qZ .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tZrHyXp0qZ .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tZrHyXp0qZ .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tZrHyXp0qZ .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tZrHyXp0qZ .offcanvas-body .mbr-text,
  .cid-tZrHyXp0qZ .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tZrHyXp0qZ .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tZrHyXp0qZ .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tZrHyXp0qZ .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #01004c;
  }
  .cid-tZrHyXp0qZ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tZrHyXp0qZ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tZrHyXp0qZ .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tZrHyXp0qZ .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tZrHyXp0qZ ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tZrHyXp0qZ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tZrHyXp0qZ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tZrHyXp0qZ .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tZrHyXp0qZ li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tZrHyXp0qZ .lg_brand {
    margin: 0 1rem;
  }
  .cid-tZrHyXp0qZ .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-tZrHyXp0qZ .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tZrHyXp0qZ .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tZrHyXp0qZ .nav-item {
    margin: 0 !important;
  }
}
.cid-tZrHyXp0qZ .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-tZrHyXp0qZ .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #01004c;
  transition: all 0.3s ease-in-out;
}
.cid-tZrHyXp0qZ .nav-item .nav-link:hover:before,
.cid-tZrHyXp0qZ .nav-item .nav-link:focus:before {
  width: 100%;
}
.cid-tZrHyXp0qZ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tZrHyXp0qZ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tZrHyXp0qZ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tZrHyXp0qZ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tZrHyXp0qZ .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tZrHyXp0qZ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tZrHyXp0qZ .offcanvas_box {
    display: none;
  }
}
.cid-tZrHyXp0qZ .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tZrHyXp0qZ .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tZrHyXp0qZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tZrHyXp0qZ .container {
  display: flex;
  margin: auto;
}
.cid-tZrHyXp0qZ .iconfont-wrapper {
  color: #01004c;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tZrHyXp0qZ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tZrHyXp0qZ .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tZrHyXp0qZ .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tZrHyXp0qZ .navbar-nav {
    margin: 0;
  }
}
.cid-tZrHyXp0qZ .dropdown-menu,
.cid-tZrHyXp0qZ .navbar.opened {
  background-color: false !important;
}
.cid-tZrHyXp0qZ .nav-item:focus,
.cid-tZrHyXp0qZ .nav-link:focus {
  outline: none;
}
.cid-tZrHyXp0qZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tZrHyXp0qZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZrHyXp0qZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tZrHyXp0qZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tZrHyXp0qZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZrHyXp0qZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZrHyXp0qZ .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tZrHyXp0qZ .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tZrHyXp0qZ .navbar.opened {
  transition: all 0.3s;
}
.cid-tZrHyXp0qZ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tZrHyXp0qZ .navbar .navbar-logo img {
  max-width: 80px;
  min-height: 80px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-tZrHyXp0qZ .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tZrHyXp0qZ .navbar.collapsed {
  justify-content: center;
}
.cid-tZrHyXp0qZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZrHyXp0qZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZrHyXp0qZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZrHyXp0qZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZrHyXp0qZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZrHyXp0qZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tZrHyXp0qZ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tZrHyXp0qZ .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tZrHyXp0qZ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-tZrHyXp0qZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZrHyXp0qZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZrHyXp0qZ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tZrHyXp0qZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZrHyXp0qZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tZrHyXp0qZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tZrHyXp0qZ .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tZrHyXp0qZ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tZrHyXp0qZ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tZrHyXp0qZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tZrHyXp0qZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tZrHyXp0qZ .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tZrHyXp0qZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tZrHyXp0qZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tZrHyXp0qZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tZrHyXp0qZ .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-tZrHyXp0qZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tZrHyXp0qZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZrHyXp0qZ .dropdown-item.active,
.cid-tZrHyXp0qZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tZrHyXp0qZ .navbar-expand-lg .navbar-nav .nav-link {
  margin: 4px 12px !important;
}
.cid-tZrHyXp0qZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZrHyXp0qZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZrHyXp0qZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tZrHyXp0qZ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tZrHyXp0qZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tZrHyXp0qZ button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #f1f1f1;
}
.cid-tZrHyXp0qZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #01004c;
}
.cid-tZrHyXp0qZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tZrHyXp0qZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZrHyXp0qZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZrHyXp0qZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tZrHyXp0qZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZrHyXp0qZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tZrHyXp0qZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tZrHyXp0qZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZrHyXp0qZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tZrHyXp0qZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZrHyXp0qZ .navbar {
    height: 70px;
  }
  .cid-tZrHyXp0qZ .navbar.opened {
    height: auto;
  }
  .cid-tZrHyXp0qZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZrHyXp0qZ .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tZrHyXp0qZ .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-tZrHyXp0qZ .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tZrHyXp0qZ .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tZrHyXp0qZ .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 200px;
}
.cid-tZrHyXp0qZ .navbar-caption:hover {
  color: #be2626;
}
@media (min-width: 992px) {
  .cid-tZrHyXp0qZ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tZrHyXp0qZ .text_widget {
  margin-bottom: 32px;
}
.cid-tZrHyXp0qZ .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tZrHyXp0qZ .text_widget a:hover,
.cid-tZrHyXp0qZ .text_widget a:focus {
  opacity: .8;
}
.cid-tZrHyXp0qZ .contacts-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  min-width: 32%;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-tZrHyXp0qZ .contacts-wrapper {
    display: none;
  }
}
.cid-tZrHyXp0qZ .contacts-wrapper a .mbr-contact {
  margin: 8px 20px;
  position: relative;
}
.cid-tZrHyXp0qZ .contacts-wrapper a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #01004c;
  transition: all 0.3s ease-in-out;
}
.cid-tZrHyXp0qZ .contacts-wrapper a .mbr-contact:hover:before,
.cid-tZrHyXp0qZ .contacts-wrapper a .mbr-contact:focus:before {
  width: 100%;
}
.cid-tZrHyXp0qZ .mbr-section-subtitle {
  color: #01004c;
  text-align: center;
}
.cid-tZrHyXp0qZ .navbar-caption {
  color: #01004c;
}
.cid-tZrHyXp0qZ .mbr-text {
  color: #01004c;
  text-align: center;
}
.cid-tZrHyXp0qZ .mbr-section-subtitle,
.cid-tZrHyXp0qZ .text_widget,
.cid-tZrHyXp0qZ .mbr-section-btn {
  text-align: center;
}
.cid-tZrHyXp0qZ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tZCQBB6e9t {
  background-image: url("../../../assets/images/4.jpeg");
}
.cid-tZCQBB6e9t .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZCQBB6e9t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZCQBB6e9t .mbr-text,
.cid-tZCQBB6e9t .mbr-section-btn {
  color: #ffffff;
}
.cid-tZCQBB6e9t .mbr-section-title {
  color: #ffffff;
}
.cid-tZCQVLk9jY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tZCQVLk9jY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZCQVLk9jY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tZCQVLk9jY .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tZCQVLk9jY .container {
    padding: 0 12px;
  }
}
.cid-tZCQVLk9jY .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tZCQVLk9jY .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tZCQVLk9jY .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tZCQVLk9jY .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #e1e1e1;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tZCQVLk9jY .mbr-section-title {
  color: #222222;
}
.cid-tXKFJDVUBD {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tXKFJDVUBD .line {
  background-color: #ffe161;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tXKFJDVUBD .mbr-text {
  text-align: left;
}
.cid-tXIStW90xV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tXIStW90xV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXIStW90xV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXIStW90xV .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tXIStW90xV .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXIStW90xV .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tXIStW90xV .mbr-section-title {
  color: #131313;
}
.cid-tXIStW90xV .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tXIStW90xV .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tXIStW90xV .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tXIStW90xV .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  background: #e1e1e1;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tXIStW90xV .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tXIStW90xV .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tXIStW90xV .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tXIStW90xV .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tXIStW90xV .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tXIStW90xV .card-title {
  color: #131313;
}
.cid-tXIStW90xV .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tXIStW90xV .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXIStW90xV .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tXIStW90xV .card-link {
    margin-top: 15px;
  }
}
.cid-tXIStW90xV .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tXIStW90xV .card-title,
.cid-tXIStW90xV .iconfont-wrapper {
  text-align: center;
}
.cid-tZDLT9dWAg {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #e1e1e1;
}
.cid-tZDLT9dWAg .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tZDLT9dWAg .currentcost {
  color: #232323;
}
.cid-tZDLT9dWAg .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-tZDLT9dWAg .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tZDLT9dWAg .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tZDLT9dWAg .text-box {
    padding: 1rem;
  }
}
.cid-tZDLT9dWAg .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tXISuAabfk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tXISuAabfk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXISuAabfk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXISuAabfk .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tXISuAabfk .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXISuAabfk .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tXISuAabfk .mbr-section-title {
  color: #131313;
}
.cid-tXISuAabfk .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tXISuAabfk .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tXISuAabfk .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tXISuAabfk .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tXISuAabfk .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tXISuAabfk .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tXISuAabfk .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tXISuAabfk .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tXISuAabfk .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tXISuAabfk .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tXISuAabfk .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tXISuAabfk .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tXISuAabfk .content-wrap {
    margin-top: 0;
  }
}
.cid-tXISuAabfk .card-title {
  color: #131313;
}
.cid-tXISuAabfk .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXISuAabfk .card-text {
    margin-top: 15px;
  }
}
.cid-tXISuAabfk .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXISuAabfk .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tXISuAabfk .card-link {
    margin-top: 15px;
  }
}
.cid-tXISuAabfk .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tXISuAabfk .card-title,
.cid-tXISuAabfk .iconfont-wrapper {
  text-align: center;
}
.cid-tXKFKSo4N1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e1e1e1;
}
.cid-tXKFKSo4N1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXKFKSo4N1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXKFKSo4N1 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tXKFKSo4N1 .mbr-section-subtitle {
  text-align: left;
}
.cid-tXISvqYzWQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tXISvqYzWQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXISvqYzWQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXISvqYzWQ .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tXISvqYzWQ .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXISvqYzWQ .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tXISvqYzWQ .mbr-section-title {
  color: #131313;
}
.cid-tXISvqYzWQ .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tXISvqYzWQ .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tXISvqYzWQ .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tXISvqYzWQ .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tXISvqYzWQ .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tXISvqYzWQ .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tXISvqYzWQ .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tXISvqYzWQ .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tXISvqYzWQ .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tXISvqYzWQ .card-title {
  color: #131313;
}
.cid-tXISvqYzWQ .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tXISvqYzWQ .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXISvqYzWQ .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tXISvqYzWQ .card-link {
    margin-top: 15px;
  }
}
.cid-tXISvqYzWQ .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tXISvqYzWQ .card-title,
.cid-tXISvqYzWQ .iconfont-wrapper {
  text-align: center;
}
.cid-tXKFLnPhFr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e1e1e1;
}
.cid-tXKFLnPhFr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXKFLnPhFr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXKFLnPhFr .mbr-section-subtitle {
  text-align: left;
}
.cid-tXIVXoSeJl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tXIVXoSeJl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXIVXoSeJl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXIVXoSeJl .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tXIVXoSeJl .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXIVXoSeJl .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tXIVXoSeJl .mbr-section-title {
  color: #131313;
}
.cid-tXIVXoSeJl .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tXIVXoSeJl .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tXIVXoSeJl .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tXIVXoSeJl .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tXIVXoSeJl .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tXIVXoSeJl .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tXIVXoSeJl .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tXIVXoSeJl .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tXIVXoSeJl .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tXIVXoSeJl .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tXIVXoSeJl .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tXIVXoSeJl .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tXIVXoSeJl .content-wrap {
    margin-top: 0;
  }
}
.cid-tXIVXoSeJl .card-title {
  color: #131313;
}
.cid-tXIVXoSeJl .card-text {
  margin-top: 24px;
  color: #131313;
  text-align: center;
}
@media (max-width: 1199px) {
  .cid-tXIVXoSeJl .card-text {
    margin-top: 15px;
  }
}
.cid-tXIVXoSeJl .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXIVXoSeJl .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tXIVXoSeJl .card-link {
    margin-top: 15px;
  }
}
.cid-tXIVXoSeJl .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tXIVXoSeJl .card-title,
.cid-tXIVXoSeJl .iconfont-wrapper {
  text-align: center;
}
.cid-tZqLuHRIw3 {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #e1e1e1;
}
@media (max-width: 992px) {
  .cid-tZqLuHRIw3 .container {
    padding: 0 25px;
  }
}
.cid-tZqLuHRIw3 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tZqLuHRIw3 .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tZqLuHRIw3 .panel-group {
  border-bottom: 2px solid #000000;
}
.cid-tZqLuHRIw3 .panel-group .card {
  border-top: 2px solid #000000;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tZqLuHRIw3 .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tZqLuHRIw3 .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tZqLuHRIw3 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #ffffff;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tZqLuHRIw3 .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #ffffff;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tZqLuHRIw3 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tZqLuHRIw3 .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #ffffff;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tZqLuHRIw3 .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tZqLuHRIw3 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tZqLuHRIw3 .mbr-section-title {
  color: #000000;
}
.cid-tZqLuHRIw3 .panel-title-edit {
  color: #000000;
}
.cid-tZqLuHRIw3 .panel-text {
  color: #000000;
}
.cid-tZyo7PgeFT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tZyo7PgeFT .date__block {
  margin-bottom: 17px;
}
.cid-tZyo7PgeFT .date__article {
  display: inline-block;
  margin: 0;
  padding: 0 7.5px;
  color: #be2626;
}
.cid-tZyo7PgeFT .dot {
  display: inline-block;
  vertical-align: super;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #40b0bf;
}
.cid-tZyo7PgeFT .date__d {
  display: inline-block;
  margin: 0;
  padding: 0 7.5px;
  color: #689bb2;
}
.cid-tZyo7PgeFT .title__block {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 91px;
}
.cid-tZyo7PgeFT .mbr-section-title {
  margin-bottom: 18px;
}
.cid-tZyo7PgeFT .mbr-text {
  margin-bottom: 20px;
}
.cid-tZyo7PgeFT .link {
  display: block;
  margin-bottom: 0;
  white-space: nowrap;
}
.cid-tZyo7PgeFT .link a {
  font-weight: 700;
}
.cid-tZyo7PgeFT .link span {
  display: inline-block !important;
  transition: all 0.3s ease;
  margin-left: 13px;
}
.cid-tZyo7PgeFT .link:hover span {
  transform: translateX(9px);
}
.cid-tZyo7PgeFT .image__block {
  margin-bottom: -144px;
  padding-top: 121px;
  position: relative;
}
.cid-tZyo7PgeFT .image__block:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #ffffff;
}
.cid-tZyo7PgeFT .image {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tZyo7PgeFT .image:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 575px;
  background-color: #e1e1e1;
}
.cid-tZyo7PgeFT .image img {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translatex(-50%);
}
.cid-tZyo7PgeFT .content__wrap {
  position: relative;
  z-index: 2;
  margin-bottom: 95px;
}
.cid-tZyo7PgeFT .content__wrap:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 15px;
  right: 15px;
  height: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #e1e1e1;
}
@media (max-width: 991px) {
  .cid-tZyo7PgeFT .title__block {
    padding: 25px 30px 55px;
  }
  .cid-tZyo7PgeFT .content__wrap {
    margin-bottom: 90px;
  }
  .cid-tZyo7PgeFT .date__block {
    padding-top: 22px;
    margin-bottom: 17px;
  }
  .cid-tZyo7PgeFT .mbr-section-title {
    margin-bottom: 15px;
  }
  .cid-tZyo7PgeFT .mbr-text {
    margin-bottom: 11px;
  }
  .cid-tZyo7PgeFT .image__block {
    min-height: 150px;
    padding-top: 68px;
    margin-bottom: 0;
  }
  .cid-tZyo7PgeFT .image:before {
    padding-top: 375px;
  }
}
.cid-tZyo7PgeFT .mbr-section-title,
.cid-tZyo7PgeFT .date__block {
  color: #000000;
}
.cid-tZyo7PgeFT .mbr-text,
.cid-tZyo7PgeFT .link {
  color: #000000;
  text-align: left;
}
.cid-tZyocWc9b8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e1e1e1;
}
.cid-tZyocWc9b8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZyocWc9b8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZyocWc9b8 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tZyocWc9b8 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tZyocWc9b8 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tZyocWc9b8 .card-wrapper {
    padding: 4rem;
  }
}
.cid-tZyocWc9b8 .mbr-text,
.cid-tZyocWc9b8 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tZyocWc9b8 .card-title,
.cid-tZyocWc9b8 .card-box {
  text-align: center;
  color: #000000;
}
.cid-tZysV4HlzP {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-tZysV4HlzP .container {
    max-width: 1400px;
  }
}
.cid-tZysV4HlzP .mbr-text,
.cid-tZysV4HlzP .mbr-section-btn {
  color: #999999;
}
.cid-tZysV4HlzP .quote {
  color: #505574;
}
.cid-tZysV4HlzP .mbr-text {
  color: #000000;
}
.cid-tXJ1Yd4WQe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tXJ1Yd4WQe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXJ1Yd4WQe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXJ1Yd4WQe .google-map {
  height: 30rem;
  position: relative;
}
.cid-tXJ1Yd4WQe .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tXJ1Yd4WQe .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tXJ1Yd4WQe .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tXJ1Yd4WQe .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tXIRwocShk {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #e1e1e1;
}
.cid-tXIRwocShk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXIRwocShk .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tXIRwocShk .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXIRwocShk .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tXIRwocShk a {
  font-weight: 600;
}
.cid-tXIRwocShk a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tXIRwocShk .col-lg-3,
  .cid-tXIRwocShk .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tXIRwocShk .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tXIRwocShk .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tXIRwocShk h5 {
  margin: 0;
}
.cid-tXIRwocShk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXIRwocShk .iconfont-wrapper {
  position: relative;
}
.cid-tXIRwocShk .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tXIRwocShk .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tXIRwocShk .sociconfont-wrapper {
  display: flex;
}
.cid-tXIRwocShk .card-title,
.cid-tXIRwocShk .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tXIRwocShk .card-text {
  color: #000000;
}
.cid-tXIRwocShk .mbr-section-title {
  color: #000000;
}
.cid-tXIRwocShk .main-title,
.cid-tXIRwocShk .iconfont-wrapper {
  text-align: left;
}
.cid-tXKGhKMDKr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e1e1e1;
  overflow: hidden;
}
.cid-tXKGhKMDKr .media-container-row .mbr-text {
  color: #000000;
}
.cid-tZCSyiI8Bt {
  background-color: transparent;
}
.cid-tZCSyiI8Bt .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tZCSyiI8Bt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tZCSyiI8Bt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZCSyiI8Bt .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tZCSyiI8Bt .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tZCSyiI8Bt .menu_box .navbar.opened,
  .cid-tZCSyiI8Bt .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tZCSyiI8Bt .navbar-dropdown {
  position: relative !important;
}
.cid-tZCSyiI8Bt .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tZCSyiI8Bt .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tZCSyiI8Bt .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tZCSyiI8Bt .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tZCSyiI8Bt .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tZCSyiI8Bt .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #f1f1f1;
  }
  .cid-tZCSyiI8Bt .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tZCSyiI8Bt .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tZCSyiI8Bt .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tZCSyiI8Bt .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tZCSyiI8Bt .offcanvas-body .mbr-text,
  .cid-tZCSyiI8Bt .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tZCSyiI8Bt .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tZCSyiI8Bt .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tZCSyiI8Bt .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #01004c;
  }
  .cid-tZCSyiI8Bt .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tZCSyiI8Bt .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tZCSyiI8Bt .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tZCSyiI8Bt .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tZCSyiI8Bt ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tZCSyiI8Bt .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tZCSyiI8Bt .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tZCSyiI8Bt .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tZCSyiI8Bt li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tZCSyiI8Bt .lg_brand {
    margin: 0 1rem;
  }
  .cid-tZCSyiI8Bt .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-tZCSyiI8Bt .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tZCSyiI8Bt .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tZCSyiI8Bt .nav-item {
    margin: 0 !important;
  }
}
.cid-tZCSyiI8Bt .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-tZCSyiI8Bt .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #01004c;
  transition: all 0.3s ease-in-out;
}
.cid-tZCSyiI8Bt .nav-item .nav-link:hover:before,
.cid-tZCSyiI8Bt .nav-item .nav-link:focus:before {
  width: 100%;
}
.cid-tZCSyiI8Bt .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tZCSyiI8Bt .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tZCSyiI8Bt .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tZCSyiI8Bt .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tZCSyiI8Bt .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tZCSyiI8Bt .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tZCSyiI8Bt .offcanvas_box {
    display: none;
  }
}
.cid-tZCSyiI8Bt .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tZCSyiI8Bt .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tZCSyiI8Bt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tZCSyiI8Bt .container {
  display: flex;
  margin: auto;
}
.cid-tZCSyiI8Bt .iconfont-wrapper {
  color: #01004c;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tZCSyiI8Bt .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tZCSyiI8Bt .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tZCSyiI8Bt .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tZCSyiI8Bt .navbar-nav {
    margin: 0;
  }
}
.cid-tZCSyiI8Bt .dropdown-menu,
.cid-tZCSyiI8Bt .navbar.opened {
  background-color: false !important;
}
.cid-tZCSyiI8Bt .nav-item:focus,
.cid-tZCSyiI8Bt .nav-link:focus {
  outline: none;
}
.cid-tZCSyiI8Bt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tZCSyiI8Bt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZCSyiI8Bt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tZCSyiI8Bt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tZCSyiI8Bt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZCSyiI8Bt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZCSyiI8Bt .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tZCSyiI8Bt .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tZCSyiI8Bt .navbar.opened {
  transition: all 0.3s;
}
.cid-tZCSyiI8Bt .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tZCSyiI8Bt .navbar .navbar-logo img {
  max-width: 80px;
  min-height: 80px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-tZCSyiI8Bt .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tZCSyiI8Bt .navbar.collapsed {
  justify-content: center;
}
.cid-tZCSyiI8Bt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZCSyiI8Bt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZCSyiI8Bt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZCSyiI8Bt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZCSyiI8Bt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZCSyiI8Bt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tZCSyiI8Bt .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tZCSyiI8Bt .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tZCSyiI8Bt .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-tZCSyiI8Bt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZCSyiI8Bt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZCSyiI8Bt .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tZCSyiI8Bt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZCSyiI8Bt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tZCSyiI8Bt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tZCSyiI8Bt .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tZCSyiI8Bt .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tZCSyiI8Bt .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tZCSyiI8Bt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tZCSyiI8Bt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tZCSyiI8Bt .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tZCSyiI8Bt .navbar.navbar-short {
  min-height: 60px;
}
.cid-tZCSyiI8Bt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tZCSyiI8Bt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tZCSyiI8Bt .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-tZCSyiI8Bt .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tZCSyiI8Bt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZCSyiI8Bt .dropdown-item.active,
.cid-tZCSyiI8Bt .dropdown-item:active {
  background-color: transparent;
}
.cid-tZCSyiI8Bt .navbar-expand-lg .navbar-nav .nav-link {
  margin: 4px 12px !important;
}
.cid-tZCSyiI8Bt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZCSyiI8Bt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZCSyiI8Bt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tZCSyiI8Bt ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tZCSyiI8Bt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tZCSyiI8Bt button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #f1f1f1;
}
.cid-tZCSyiI8Bt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #01004c;
}
.cid-tZCSyiI8Bt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tZCSyiI8Bt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZCSyiI8Bt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZCSyiI8Bt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tZCSyiI8Bt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZCSyiI8Bt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tZCSyiI8Bt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tZCSyiI8Bt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZCSyiI8Bt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tZCSyiI8Bt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZCSyiI8Bt .navbar {
    height: 70px;
  }
  .cid-tZCSyiI8Bt .navbar.opened {
    height: auto;
  }
  .cid-tZCSyiI8Bt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZCSyiI8Bt .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tZCSyiI8Bt .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-tZCSyiI8Bt .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tZCSyiI8Bt .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tZCSyiI8Bt .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 200px;
}
.cid-tZCSyiI8Bt .navbar-caption:hover {
  color: #be2626;
}
@media (min-width: 992px) {
  .cid-tZCSyiI8Bt .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tZCSyiI8Bt .text_widget {
  margin-bottom: 32px;
}
.cid-tZCSyiI8Bt .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tZCSyiI8Bt .text_widget a:hover,
.cid-tZCSyiI8Bt .text_widget a:focus {
  opacity: .8;
}
.cid-tZCSyiI8Bt .contacts-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  min-width: 32%;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-tZCSyiI8Bt .contacts-wrapper {
    display: none;
  }
}
.cid-tZCSyiI8Bt .contacts-wrapper a .mbr-contact {
  margin: 8px 20px;
  position: relative;
}
.cid-tZCSyiI8Bt .contacts-wrapper a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #01004c;
  transition: all 0.3s ease-in-out;
}
.cid-tZCSyiI8Bt .contacts-wrapper a .mbr-contact:hover:before,
.cid-tZCSyiI8Bt .contacts-wrapper a .mbr-contact:focus:before {
  width: 100%;
}
.cid-tZCSyiI8Bt .mbr-section-subtitle {
  color: #01004c;
  text-align: center;
}
.cid-tZCSyiI8Bt .navbar-caption {
  color: #01004c;
}
.cid-tZCSyiI8Bt .mbr-text {
  color: #01004c;
  text-align: center;
}
.cid-tZCSyiI8Bt .mbr-section-subtitle,
.cid-tZCSyiI8Bt .text_widget,
.cid-tZCSyiI8Bt .mbr-section-btn {
  text-align: center;
}
.cid-tZCSyiI8Bt a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tZCSyjIfYY {
  background-image: url("../../../assets/images/1dd318eca137f7bac0f2a947c6ebe9cf.jpg");
}
.cid-tZCSyjIfYY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZCSyjIfYY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZCSyliIJ0 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tZCSyliIJ0 .line {
  background-color: #e1e1e1;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tZCSyliIJ0 .mbr-text {
  text-align: left;
}
.cid-tZCSyvTi5w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tZCSyvTi5w .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZCSyvTi5w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZCSyvTi5w .google-map {
  height: 30rem;
  position: relative;
}
.cid-tZCSyvTi5w .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tZCSyvTi5w .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tZCSyvTi5w .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tZCSyvTi5w .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tZCSywM0xQ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #e1e1e1;
}
.cid-tZCSywM0xQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZCSywM0xQ .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tZCSywM0xQ .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tZCSywM0xQ .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tZCSywM0xQ a {
  font-weight: 600;
}
.cid-tZCSywM0xQ a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tZCSywM0xQ .col-lg-3,
  .cid-tZCSywM0xQ .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tZCSywM0xQ .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tZCSywM0xQ .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tZCSywM0xQ h5 {
  margin: 0;
}
.cid-tZCSywM0xQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZCSywM0xQ .iconfont-wrapper {
  position: relative;
}
.cid-tZCSywM0xQ .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tZCSywM0xQ .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tZCSywM0xQ .sociconfont-wrapper {
  display: flex;
}
.cid-tZCSywM0xQ .card-title,
.cid-tZCSywM0xQ .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tZCSywM0xQ .card-text {
  color: #000000;
}
.cid-tZCSywM0xQ .mbr-section-title {
  color: #000000;
}
.cid-tZCSywM0xQ .main-title,
.cid-tZCSywM0xQ .iconfont-wrapper {
  text-align: left;
}
.cid-tZCSyyiDli {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffe161;
  overflow: hidden;
}
.cid-tZCSyyiDli .media-container-row .mbr-text {
  color: #000000;
}
.cid-tZCTcj2HTb {
  background-color: transparent;
}
.cid-tZCTcj2HTb .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tZCTcj2HTb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tZCTcj2HTb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZCTcj2HTb .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tZCTcj2HTb .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tZCTcj2HTb .menu_box .navbar.opened,
  .cid-tZCTcj2HTb .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tZCTcj2HTb .navbar-dropdown {
  position: relative !important;
}
.cid-tZCTcj2HTb .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tZCTcj2HTb .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tZCTcj2HTb .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tZCTcj2HTb .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tZCTcj2HTb .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tZCTcj2HTb .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #f1f1f1;
  }
  .cid-tZCTcj2HTb .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tZCTcj2HTb .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tZCTcj2HTb .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tZCTcj2HTb .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tZCTcj2HTb .offcanvas-body .mbr-text,
  .cid-tZCTcj2HTb .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tZCTcj2HTb .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tZCTcj2HTb .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tZCTcj2HTb .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #01004c;
  }
  .cid-tZCTcj2HTb .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tZCTcj2HTb .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tZCTcj2HTb .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tZCTcj2HTb .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tZCTcj2HTb ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tZCTcj2HTb .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tZCTcj2HTb .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tZCTcj2HTb .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tZCTcj2HTb li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tZCTcj2HTb .lg_brand {
    margin: 0 1rem;
  }
  .cid-tZCTcj2HTb .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-tZCTcj2HTb .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tZCTcj2HTb .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tZCTcj2HTb .nav-item {
    margin: 0 !important;
  }
}
.cid-tZCTcj2HTb .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-tZCTcj2HTb .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #01004c;
  transition: all 0.3s ease-in-out;
}
.cid-tZCTcj2HTb .nav-item .nav-link:hover:before,
.cid-tZCTcj2HTb .nav-item .nav-link:focus:before {
  width: 100%;
}
.cid-tZCTcj2HTb .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tZCTcj2HTb .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tZCTcj2HTb .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tZCTcj2HTb .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tZCTcj2HTb .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tZCTcj2HTb .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tZCTcj2HTb .offcanvas_box {
    display: none;
  }
}
.cid-tZCTcj2HTb .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tZCTcj2HTb .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tZCTcj2HTb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tZCTcj2HTb .container {
  display: flex;
  margin: auto;
}
.cid-tZCTcj2HTb .iconfont-wrapper {
  color: #01004c;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tZCTcj2HTb .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tZCTcj2HTb .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tZCTcj2HTb .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tZCTcj2HTb .navbar-nav {
    margin: 0;
  }
}
.cid-tZCTcj2HTb .dropdown-menu,
.cid-tZCTcj2HTb .navbar.opened {
  background-color: false !important;
}
.cid-tZCTcj2HTb .nav-item:focus,
.cid-tZCTcj2HTb .nav-link:focus {
  outline: none;
}
.cid-tZCTcj2HTb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tZCTcj2HTb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZCTcj2HTb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tZCTcj2HTb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tZCTcj2HTb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZCTcj2HTb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZCTcj2HTb .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tZCTcj2HTb .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tZCTcj2HTb .navbar.opened {
  transition: all 0.3s;
}
.cid-tZCTcj2HTb .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tZCTcj2HTb .navbar .navbar-logo img {
  max-width: 80px;
  min-height: 80px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-tZCTcj2HTb .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tZCTcj2HTb .navbar.collapsed {
  justify-content: center;
}
.cid-tZCTcj2HTb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZCTcj2HTb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZCTcj2HTb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZCTcj2HTb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZCTcj2HTb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZCTcj2HTb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tZCTcj2HTb .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tZCTcj2HTb .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tZCTcj2HTb .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-tZCTcj2HTb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZCTcj2HTb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZCTcj2HTb .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tZCTcj2HTb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZCTcj2HTb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tZCTcj2HTb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tZCTcj2HTb .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tZCTcj2HTb .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tZCTcj2HTb .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tZCTcj2HTb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tZCTcj2HTb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tZCTcj2HTb .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tZCTcj2HTb .navbar.navbar-short {
  min-height: 60px;
}
.cid-tZCTcj2HTb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tZCTcj2HTb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tZCTcj2HTb .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-tZCTcj2HTb .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tZCTcj2HTb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZCTcj2HTb .dropdown-item.active,
.cid-tZCTcj2HTb .dropdown-item:active {
  background-color: transparent;
}
.cid-tZCTcj2HTb .navbar-expand-lg .navbar-nav .nav-link {
  margin: 4px 12px !important;
}
.cid-tZCTcj2HTb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZCTcj2HTb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZCTcj2HTb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tZCTcj2HTb ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tZCTcj2HTb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tZCTcj2HTb button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #f1f1f1;
}
.cid-tZCTcj2HTb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #01004c;
}
.cid-tZCTcj2HTb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tZCTcj2HTb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZCTcj2HTb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZCTcj2HTb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tZCTcj2HTb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZCTcj2HTb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tZCTcj2HTb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tZCTcj2HTb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZCTcj2HTb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tZCTcj2HTb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZCTcj2HTb .navbar {
    height: 70px;
  }
  .cid-tZCTcj2HTb .navbar.opened {
    height: auto;
  }
  .cid-tZCTcj2HTb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZCTcj2HTb .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tZCTcj2HTb .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-tZCTcj2HTb .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tZCTcj2HTb .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tZCTcj2HTb .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 200px;
}
.cid-tZCTcj2HTb .navbar-caption:hover {
  color: #be2626;
}
@media (min-width: 992px) {
  .cid-tZCTcj2HTb .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tZCTcj2HTb .text_widget {
  margin-bottom: 32px;
}
.cid-tZCTcj2HTb .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tZCTcj2HTb .text_widget a:hover,
.cid-tZCTcj2HTb .text_widget a:focus {
  opacity: .8;
}
.cid-tZCTcj2HTb .contacts-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  min-width: 32%;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-tZCTcj2HTb .contacts-wrapper {
    display: none;
  }
}
.cid-tZCTcj2HTb .contacts-wrapper a .mbr-contact {
  margin: 8px 20px;
  position: relative;
}
.cid-tZCTcj2HTb .contacts-wrapper a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #01004c;
  transition: all 0.3s ease-in-out;
}
.cid-tZCTcj2HTb .contacts-wrapper a .mbr-contact:hover:before,
.cid-tZCTcj2HTb .contacts-wrapper a .mbr-contact:focus:before {
  width: 100%;
}
.cid-tZCTcj2HTb .mbr-section-subtitle {
  color: #01004c;
  text-align: center;
}
.cid-tZCTcj2HTb .navbar-caption {
  color: #01004c;
}
.cid-tZCTcj2HTb .mbr-text {
  color: #01004c;
  text-align: center;
}
.cid-tZCTcj2HTb .mbr-section-subtitle,
.cid-tZCTcj2HTb .text_widget,
.cid-tZCTcj2HTb .mbr-section-btn {
  text-align: center;
}
.cid-tZCTcj2HTb a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tZCTcjUR4v {
  background-image: url("../../../assets/images/56.jpg");
}
.cid-tZCTcjUR4v .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZCTcjUR4v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZCTcjUR4v .mbr-section-title {
  color: #000000;
}
.cid-tZCTckG0R7 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tZCTckG0R7 .line {
  background-color: #ffe161;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tZCTckG0R7 .mbr-text {
  text-align: left;
}
.cid-tZCTcld45d {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tZCTcld45d .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZCTcld45d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZCTcld45d .google-map {
  height: 30rem;
  position: relative;
}
.cid-tZCTcld45d .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tZCTcld45d .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tZCTcld45d .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tZCTcld45d .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tZCTcm0swu {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #e1e1e1;
}
.cid-tZCTcm0swu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZCTcm0swu .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tZCTcm0swu .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tZCTcm0swu .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tZCTcm0swu a {
  font-weight: 600;
}
.cid-tZCTcm0swu a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tZCTcm0swu .col-lg-3,
  .cid-tZCTcm0swu .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tZCTcm0swu .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tZCTcm0swu .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tZCTcm0swu h5 {
  margin: 0;
}
.cid-tZCTcm0swu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZCTcm0swu .iconfont-wrapper {
  position: relative;
}
.cid-tZCTcm0swu .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tZCTcm0swu .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tZCTcm0swu .sociconfont-wrapper {
  display: flex;
}
.cid-tZCTcm0swu .card-title,
.cid-tZCTcm0swu .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tZCTcm0swu .card-text {
  color: #000000;
}
.cid-tZCTcm0swu .mbr-section-title {
  color: #000000;
}
.cid-tZCTcm0swu .main-title,
.cid-tZCTcm0swu .iconfont-wrapper {
  text-align: left;
}
.cid-tZCTcmMy1M {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e1e1e1;
  overflow: hidden;
}
.cid-tZCTcmMy1M .media-container-row .mbr-text {
  color: #000000;
}
.cid-tZDPhjISPA {
  background-color: transparent;
}
.cid-tZDPhjISPA .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tZDPhjISPA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tZDPhjISPA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZDPhjISPA .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tZDPhjISPA .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tZDPhjISPA .menu_box .navbar.opened,
  .cid-tZDPhjISPA .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tZDPhjISPA .navbar-dropdown {
  position: relative !important;
}
.cid-tZDPhjISPA .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tZDPhjISPA .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tZDPhjISPA .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tZDPhjISPA .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tZDPhjISPA .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tZDPhjISPA .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #f1f1f1;
  }
  .cid-tZDPhjISPA .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tZDPhjISPA .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tZDPhjISPA .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tZDPhjISPA .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tZDPhjISPA .offcanvas-body .mbr-text,
  .cid-tZDPhjISPA .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tZDPhjISPA .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tZDPhjISPA .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tZDPhjISPA .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #01004c;
  }
  .cid-tZDPhjISPA .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tZDPhjISPA .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tZDPhjISPA .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tZDPhjISPA .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tZDPhjISPA ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tZDPhjISPA .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tZDPhjISPA .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tZDPhjISPA .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tZDPhjISPA li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tZDPhjISPA .lg_brand {
    margin: 0 1rem;
  }
  .cid-tZDPhjISPA .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-tZDPhjISPA .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tZDPhjISPA .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tZDPhjISPA .nav-item {
    margin: 0 !important;
  }
}
.cid-tZDPhjISPA .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-tZDPhjISPA .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #01004c;
  transition: all 0.3s ease-in-out;
}
.cid-tZDPhjISPA .nav-item .nav-link:hover:before,
.cid-tZDPhjISPA .nav-item .nav-link:focus:before {
  width: 100%;
}
.cid-tZDPhjISPA .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tZDPhjISPA .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tZDPhjISPA .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tZDPhjISPA .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tZDPhjISPA .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tZDPhjISPA .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tZDPhjISPA .offcanvas_box {
    display: none;
  }
}
.cid-tZDPhjISPA .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tZDPhjISPA .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tZDPhjISPA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tZDPhjISPA .container {
  display: flex;
  margin: auto;
}
.cid-tZDPhjISPA .iconfont-wrapper {
  color: #01004c;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tZDPhjISPA .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tZDPhjISPA .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tZDPhjISPA .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tZDPhjISPA .navbar-nav {
    margin: 0;
  }
}
.cid-tZDPhjISPA .dropdown-menu,
.cid-tZDPhjISPA .navbar.opened {
  background-color: false !important;
}
.cid-tZDPhjISPA .nav-item:focus,
.cid-tZDPhjISPA .nav-link:focus {
  outline: none;
}
.cid-tZDPhjISPA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tZDPhjISPA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZDPhjISPA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tZDPhjISPA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tZDPhjISPA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZDPhjISPA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZDPhjISPA .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tZDPhjISPA .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tZDPhjISPA .navbar.opened {
  transition: all 0.3s;
}
.cid-tZDPhjISPA .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tZDPhjISPA .navbar .navbar-logo img {
  max-width: 80px;
  min-height: 80px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-tZDPhjISPA .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tZDPhjISPA .navbar.collapsed {
  justify-content: center;
}
.cid-tZDPhjISPA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZDPhjISPA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZDPhjISPA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZDPhjISPA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZDPhjISPA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZDPhjISPA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tZDPhjISPA .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tZDPhjISPA .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tZDPhjISPA .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-tZDPhjISPA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZDPhjISPA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZDPhjISPA .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tZDPhjISPA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZDPhjISPA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tZDPhjISPA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tZDPhjISPA .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tZDPhjISPA .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tZDPhjISPA .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tZDPhjISPA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tZDPhjISPA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tZDPhjISPA .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tZDPhjISPA .navbar.navbar-short {
  min-height: 60px;
}
.cid-tZDPhjISPA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tZDPhjISPA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tZDPhjISPA .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-tZDPhjISPA .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tZDPhjISPA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZDPhjISPA .dropdown-item.active,
.cid-tZDPhjISPA .dropdown-item:active {
  background-color: transparent;
}
.cid-tZDPhjISPA .navbar-expand-lg .navbar-nav .nav-link {
  margin: 4px 12px !important;
}
.cid-tZDPhjISPA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZDPhjISPA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZDPhjISPA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tZDPhjISPA ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tZDPhjISPA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tZDPhjISPA button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #f1f1f1;
}
.cid-tZDPhjISPA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #01004c;
}
.cid-tZDPhjISPA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tZDPhjISPA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZDPhjISPA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZDPhjISPA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tZDPhjISPA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZDPhjISPA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tZDPhjISPA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tZDPhjISPA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZDPhjISPA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tZDPhjISPA .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZDPhjISPA .navbar {
    height: 70px;
  }
  .cid-tZDPhjISPA .navbar.opened {
    height: auto;
  }
  .cid-tZDPhjISPA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZDPhjISPA .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tZDPhjISPA .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-tZDPhjISPA .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tZDPhjISPA .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tZDPhjISPA .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 200px;
}
.cid-tZDPhjISPA .navbar-caption:hover {
  color: #be2626;
}
@media (min-width: 992px) {
  .cid-tZDPhjISPA .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tZDPhjISPA .text_widget {
  margin-bottom: 32px;
}
.cid-tZDPhjISPA .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tZDPhjISPA .text_widget a:hover,
.cid-tZDPhjISPA .text_widget a:focus {
  opacity: .8;
}
.cid-tZDPhjISPA .contacts-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  min-width: 32%;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-tZDPhjISPA .contacts-wrapper {
    display: none;
  }
}
.cid-tZDPhjISPA .contacts-wrapper a .mbr-contact {
  margin: 8px 20px;
  position: relative;
}
.cid-tZDPhjISPA .contacts-wrapper a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #01004c;
  transition: all 0.3s ease-in-out;
}
.cid-tZDPhjISPA .contacts-wrapper a .mbr-contact:hover:before,
.cid-tZDPhjISPA .contacts-wrapper a .mbr-contact:focus:before {
  width: 100%;
}
.cid-tZDPhjISPA .mbr-section-subtitle {
  color: #01004c;
  text-align: center;
}
.cid-tZDPhjISPA .navbar-caption {
  color: #01004c;
}
.cid-tZDPhjISPA .mbr-text {
  color: #01004c;
  text-align: center;
}
.cid-tZDPhjISPA .mbr-section-subtitle,
.cid-tZDPhjISPA .text_widget,
.cid-tZDPhjISPA .mbr-section-btn {
  text-align: center;
}
.cid-tZDPhjISPA a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tZDPhlqbsO {
  background-image: url("../../../assets/images/52cf7bfaa58fe769c1e89eca80cc210b.jpg");
}
.cid-tZDPhlqbsO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDPhlqbsO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDPhlqbsO .mbr-text,
.cid-tZDPhlqbsO .mbr-section-btn {
  color: #ffffff;
}
.cid-tZDPhlqbsO .mbr-section-title {
  color: #000000;
}
.cid-tZDPhn30KH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tZDPhn30KH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDPhn30KH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tZDPhn30KH .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tZDPhn30KH .container {
    padding: 0 12px;
  }
}
.cid-tZDPhn30KH .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tZDPhn30KH .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tZDPhn30KH .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tZDPhn30KH .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #e1e1e1;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tZDPhn30KH .mbr-section-title {
  color: #222222;
}
.cid-tZDPhoofgD {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tZDPhoofgD .line {
  background-color: #ffe161;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tZDPhoofgD .mbr-text {
  text-align: left;
}
.cid-tZDPhpo2PG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tZDPhpo2PG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDPhpo2PG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDPhpo2PG .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tZDPhpo2PG .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tZDPhpo2PG .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tZDPhpo2PG .mbr-section-title {
  color: #131313;
}
.cid-tZDPhpo2PG .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tZDPhpo2PG .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tZDPhpo2PG .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tZDPhpo2PG .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  background: #e1e1e1;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tZDPhpo2PG .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tZDPhpo2PG .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tZDPhpo2PG .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tZDPhpo2PG .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tZDPhpo2PG .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tZDPhpo2PG .card-title {
  color: #131313;
}
.cid-tZDPhpo2PG .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tZDPhpo2PG .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tZDPhpo2PG .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tZDPhpo2PG .card-link {
    margin-top: 15px;
  }
}
.cid-tZDPhpo2PG .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tZDPhpo2PG .card-title,
.cid-tZDPhpo2PG .iconfont-wrapper {
  text-align: center;
}
.cid-tZDPhqQi2q {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #e1e1e1;
}
.cid-tZDPhqQi2q .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tZDPhqQi2q .currentcost {
  color: #232323;
}
.cid-tZDPhqQi2q .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-tZDPhqQi2q .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tZDPhqQi2q .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tZDPhqQi2q .text-box {
    padding: 1rem;
  }
}
.cid-tZDPhqQi2q .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tZDPhrXcSu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tZDPhrXcSu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDPhrXcSu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDPhrXcSu .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tZDPhrXcSu .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tZDPhrXcSu .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tZDPhrXcSu .mbr-section-title {
  color: #131313;
}
.cid-tZDPhrXcSu .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tZDPhrXcSu .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tZDPhrXcSu .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tZDPhrXcSu .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tZDPhrXcSu .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tZDPhrXcSu .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tZDPhrXcSu .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tZDPhrXcSu .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tZDPhrXcSu .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tZDPhrXcSu .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tZDPhrXcSu .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tZDPhrXcSu .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tZDPhrXcSu .content-wrap {
    margin-top: 0;
  }
}
.cid-tZDPhrXcSu .card-title {
  color: #131313;
}
.cid-tZDPhrXcSu .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tZDPhrXcSu .card-text {
    margin-top: 15px;
  }
}
.cid-tZDPhrXcSu .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tZDPhrXcSu .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tZDPhrXcSu .card-link {
    margin-top: 15px;
  }
}
.cid-tZDPhrXcSu .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tZDPhrXcSu .card-title,
.cid-tZDPhrXcSu .iconfont-wrapper {
  text-align: center;
}
.cid-tZDPhteCfo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e1e1e1;
}
.cid-tZDPhteCfo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDPhteCfo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDPhteCfo .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tZDPhteCfo .mbr-section-subtitle {
  text-align: left;
}
.cid-tZDPhu9XJr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tZDPhu9XJr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDPhu9XJr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDPhu9XJr .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tZDPhu9XJr .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tZDPhu9XJr .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tZDPhu9XJr .mbr-section-title {
  color: #131313;
}
.cid-tZDPhu9XJr .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tZDPhu9XJr .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tZDPhu9XJr .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tZDPhu9XJr .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tZDPhu9XJr .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tZDPhu9XJr .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tZDPhu9XJr .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tZDPhu9XJr .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tZDPhu9XJr .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tZDPhu9XJr .card-title {
  color: #131313;
}
.cid-tZDPhu9XJr .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tZDPhu9XJr .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tZDPhu9XJr .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tZDPhu9XJr .card-link {
    margin-top: 15px;
  }
}
.cid-tZDPhu9XJr .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tZDPhu9XJr .card-title,
.cid-tZDPhu9XJr .iconfont-wrapper {
  text-align: center;
}
.cid-tZDPhvxqsP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e1e1e1;
}
.cid-tZDPhvxqsP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDPhvxqsP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDPhvxqsP .mbr-section-subtitle {
  text-align: left;
}
.cid-tZDPhwBW6k {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tZDPhwBW6k .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDPhwBW6k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDPhwBW6k .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tZDPhwBW6k .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tZDPhwBW6k .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tZDPhwBW6k .mbr-section-title {
  color: #131313;
}
.cid-tZDPhwBW6k .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tZDPhwBW6k .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tZDPhwBW6k .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tZDPhwBW6k .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tZDPhwBW6k .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tZDPhwBW6k .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tZDPhwBW6k .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tZDPhwBW6k .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tZDPhwBW6k .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tZDPhwBW6k .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tZDPhwBW6k .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tZDPhwBW6k .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tZDPhwBW6k .content-wrap {
    margin-top: 0;
  }
}
.cid-tZDPhwBW6k .card-title {
  color: #131313;
}
.cid-tZDPhwBW6k .card-text {
  margin-top: 24px;
  color: #131313;
  text-align: center;
}
@media (max-width: 1199px) {
  .cid-tZDPhwBW6k .card-text {
    margin-top: 15px;
  }
}
.cid-tZDPhwBW6k .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tZDPhwBW6k .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tZDPhwBW6k .card-link {
    margin-top: 15px;
  }
}
.cid-tZDPhwBW6k .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tZDPhwBW6k .card-title,
.cid-tZDPhwBW6k .iconfont-wrapper {
  text-align: center;
}
.cid-tZDPhxIVih {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #e1e1e1;
}
@media (max-width: 992px) {
  .cid-tZDPhxIVih .container {
    padding: 0 25px;
  }
}
.cid-tZDPhxIVih .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tZDPhxIVih .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tZDPhxIVih .panel-group {
  border-bottom: 2px solid #000000;
}
.cid-tZDPhxIVih .panel-group .card {
  border-top: 2px solid #000000;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tZDPhxIVih .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tZDPhxIVih .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tZDPhxIVih .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #ffffff;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tZDPhxIVih .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #ffffff;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tZDPhxIVih .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tZDPhxIVih .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #ffffff;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tZDPhxIVih .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tZDPhxIVih .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tZDPhxIVih .mbr-section-title {
  color: #000000;
}
.cid-tZDPhxIVih .panel-title-edit {
  color: #000000;
}
.cid-tZDPhxIVih .panel-text {
  color: #000000;
}
.cid-tZDPhz12Op {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tZDPhz12Op .date__block {
  margin-bottom: 17px;
}
.cid-tZDPhz12Op .date__article {
  display: inline-block;
  margin: 0;
  padding: 0 7.5px;
  color: #be2626;
}
.cid-tZDPhz12Op .dot {
  display: inline-block;
  vertical-align: super;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #40b0bf;
}
.cid-tZDPhz12Op .date__d {
  display: inline-block;
  margin: 0;
  padding: 0 7.5px;
  color: #689bb2;
}
.cid-tZDPhz12Op .title__block {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 91px;
}
.cid-tZDPhz12Op .mbr-section-title {
  margin-bottom: 18px;
}
.cid-tZDPhz12Op .mbr-text {
  margin-bottom: 20px;
}
.cid-tZDPhz12Op .link {
  display: block;
  margin-bottom: 0;
  white-space: nowrap;
}
.cid-tZDPhz12Op .link a {
  font-weight: 700;
}
.cid-tZDPhz12Op .link span {
  display: inline-block !important;
  transition: all 0.3s ease;
  margin-left: 13px;
}
.cid-tZDPhz12Op .link:hover span {
  transform: translateX(9px);
}
.cid-tZDPhz12Op .image__block {
  margin-bottom: -144px;
  padding-top: 121px;
  position: relative;
}
.cid-tZDPhz12Op .image__block:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #ffffff;
}
.cid-tZDPhz12Op .image {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tZDPhz12Op .image:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 575px;
  background-color: #e1e1e1;
}
.cid-tZDPhz12Op .image img {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translatex(-50%);
}
.cid-tZDPhz12Op .content__wrap {
  position: relative;
  z-index: 2;
  margin-bottom: 95px;
}
.cid-tZDPhz12Op .content__wrap:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 15px;
  right: 15px;
  height: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #e1e1e1;
}
@media (max-width: 991px) {
  .cid-tZDPhz12Op .title__block {
    padding: 25px 30px 55px;
  }
  .cid-tZDPhz12Op .content__wrap {
    margin-bottom: 90px;
  }
  .cid-tZDPhz12Op .date__block {
    padding-top: 22px;
    margin-bottom: 17px;
  }
  .cid-tZDPhz12Op .mbr-section-title {
    margin-bottom: 15px;
  }
  .cid-tZDPhz12Op .mbr-text {
    margin-bottom: 11px;
  }
  .cid-tZDPhz12Op .image__block {
    min-height: 150px;
    padding-top: 68px;
    margin-bottom: 0;
  }
  .cid-tZDPhz12Op .image:before {
    padding-top: 375px;
  }
}
.cid-tZDPhz12Op .mbr-section-title,
.cid-tZDPhz12Op .date__block {
  color: #000000;
}
.cid-tZDPhz12Op .mbr-text,
.cid-tZDPhz12Op .link {
  color: #000000;
  text-align: left;
}
.cid-tZDPhA2H96 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e1e1e1;
}
.cid-tZDPhA2H96 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDPhA2H96 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDPhA2H96 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tZDPhA2H96 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tZDPhA2H96 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tZDPhA2H96 .card-wrapper {
    padding: 4rem;
  }
}
.cid-tZDPhA2H96 .mbr-text,
.cid-tZDPhA2H96 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tZDPhA2H96 .card-title,
.cid-tZDPhA2H96 .card-box {
  text-align: center;
  color: #000000;
}
.cid-tZE0wNnE3P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e1e1e1;
}
.cid-tZE0wNnE3P .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZE0wNnE3P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tZE0wNnE3P .container {
    padding: 0 20px;
  }
}
.cid-tZE0wNnE3P .row {
  margin: 0;
}
.cid-tZE0wNnE3P .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tZE0wNnE3P .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tZE0wNnE3P .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-tZE0wNnE3P .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-tZE0wNnE3P .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tZE0wNnE3P .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-tZE0wNnE3P .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tZDPhBu09P {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-tZDPhBu09P .container {
    max-width: 1400px;
  }
}
.cid-tZDPhBu09P .mbr-text,
.cid-tZDPhBu09P .mbr-section-btn {
  color: #999999;
}
.cid-tZDPhBu09P .quote {
  color: #505574;
}
.cid-tZDPhBu09P .mbr-text {
  color: #000000;
}
.cid-tZDSevODr6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #e1e1e1;
}
.cid-tZDSevODr6 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #0046c7 !important;
  transition: all 0.3s;
  transform: rotate(45deg);
  font-weight: bold;
}
.cid-tZDSevODr6 .panel-group {
  border: none;
}
.cid-tZDSevODr6 .card-header {
  padding: 0.5rem 0.5rem;
}
@media (max-width: 767px) {
  .cid-tZDSevODr6 .card-header {
    padding: 1rem 0rem;
  }
}
.cid-tZDSevODr6 .panel-body {
  padding: 0 0.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tZDSevODr6 .panel-body {
    padding: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-tZDSevODr6 .img-col {
  padding: 0;
}
.cid-tZDSevODr6 .img-item {
  height: 100%;
}
.cid-tZDSevODr6 img {
  height: 100%;
  object-fit: cover;
}
.cid-tZDSevODr6 .collapsed span {
  transform: rotate(0deg);
}
.cid-tZDSevODr6 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tZDSevODr6 p {
  margin-bottom: 0.3rem;
}
.cid-tZDSevODr6 .panel-title-edit {
  color: #e9c0e9;
}
.cid-tZDSevODr6 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-tZDSevODr6 .card {
  background: #ffffff;
  padding: 1rem 2rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-tZDSevODr6 .card {
    padding: 1.5rem;
  }
}
.cid-tZDSevODr6 .panel-text {
  color: #320707;
}
.cid-tZDSevODr6 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tZDSevODr6 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tZDSevODr6 .panel-title-edit,
.cid-tZDSevODr6 .mbr-iconfont {
  color: #000000;
}
.cid-tZDPhCEmb1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tZDPhCEmb1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDPhCEmb1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDPhCEmb1 .google-map {
  height: 30rem;
  position: relative;
}
.cid-tZDPhCEmb1 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tZDPhCEmb1 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tZDPhCEmb1 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tZDPhCEmb1 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tZDPhDYvKt {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #e1e1e1;
}
.cid-tZDPhDYvKt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDPhDYvKt .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tZDPhDYvKt .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tZDPhDYvKt .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tZDPhDYvKt a {
  font-weight: 600;
}
.cid-tZDPhDYvKt a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tZDPhDYvKt .col-lg-3,
  .cid-tZDPhDYvKt .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tZDPhDYvKt .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tZDPhDYvKt .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tZDPhDYvKt h5 {
  margin: 0;
}
.cid-tZDPhDYvKt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDPhDYvKt .iconfont-wrapper {
  position: relative;
}
.cid-tZDPhDYvKt .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tZDPhDYvKt .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tZDPhDYvKt .sociconfont-wrapper {
  display: flex;
}
.cid-tZDPhDYvKt .card-title,
.cid-tZDPhDYvKt .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tZDPhDYvKt .card-text {
  color: #000000;
}
.cid-tZDPhDYvKt .mbr-section-title {
  color: #000000;
}
.cid-tZDPhDYvKt .main-title,
.cid-tZDPhDYvKt .iconfont-wrapper {
  text-align: left;
}
.cid-tZDPhFlIX6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e1e1e1;
  overflow: hidden;
}
.cid-tZDPhFlIX6 .media-container-row .mbr-text {
  color: #000000;
}
.cid-tZDSBM8xiu {
  background-color: transparent;
}
.cid-tZDSBM8xiu .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tZDSBM8xiu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tZDSBM8xiu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZDSBM8xiu .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tZDSBM8xiu .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tZDSBM8xiu .menu_box .navbar.opened,
  .cid-tZDSBM8xiu .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tZDSBM8xiu .navbar-dropdown {
  position: relative !important;
}
.cid-tZDSBM8xiu .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tZDSBM8xiu .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tZDSBM8xiu .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tZDSBM8xiu .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tZDSBM8xiu .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tZDSBM8xiu .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #f1f1f1;
  }
  .cid-tZDSBM8xiu .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tZDSBM8xiu .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tZDSBM8xiu .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tZDSBM8xiu .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tZDSBM8xiu .offcanvas-body .mbr-text,
  .cid-tZDSBM8xiu .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tZDSBM8xiu .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tZDSBM8xiu .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tZDSBM8xiu .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #01004c;
  }
  .cid-tZDSBM8xiu .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tZDSBM8xiu .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tZDSBM8xiu .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tZDSBM8xiu .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tZDSBM8xiu ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tZDSBM8xiu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tZDSBM8xiu .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tZDSBM8xiu .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tZDSBM8xiu li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tZDSBM8xiu .lg_brand {
    margin: 0 1rem;
  }
  .cid-tZDSBM8xiu .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-tZDSBM8xiu .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tZDSBM8xiu .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tZDSBM8xiu .nav-item {
    margin: 0 !important;
  }
}
.cid-tZDSBM8xiu .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-tZDSBM8xiu .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #01004c;
  transition: all 0.3s ease-in-out;
}
.cid-tZDSBM8xiu .nav-item .nav-link:hover:before,
.cid-tZDSBM8xiu .nav-item .nav-link:focus:before {
  width: 100%;
}
.cid-tZDSBM8xiu .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tZDSBM8xiu .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tZDSBM8xiu .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tZDSBM8xiu .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tZDSBM8xiu .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tZDSBM8xiu .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tZDSBM8xiu .offcanvas_box {
    display: none;
  }
}
.cid-tZDSBM8xiu .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tZDSBM8xiu .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tZDSBM8xiu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tZDSBM8xiu .container {
  display: flex;
  margin: auto;
}
.cid-tZDSBM8xiu .iconfont-wrapper {
  color: #01004c;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tZDSBM8xiu .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tZDSBM8xiu .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tZDSBM8xiu .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tZDSBM8xiu .navbar-nav {
    margin: 0;
  }
}
.cid-tZDSBM8xiu .dropdown-menu,
.cid-tZDSBM8xiu .navbar.opened {
  background-color: false !important;
}
.cid-tZDSBM8xiu .nav-item:focus,
.cid-tZDSBM8xiu .nav-link:focus {
  outline: none;
}
.cid-tZDSBM8xiu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tZDSBM8xiu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZDSBM8xiu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tZDSBM8xiu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tZDSBM8xiu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZDSBM8xiu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZDSBM8xiu .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tZDSBM8xiu .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tZDSBM8xiu .navbar.opened {
  transition: all 0.3s;
}
.cid-tZDSBM8xiu .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tZDSBM8xiu .navbar .navbar-logo img {
  max-width: 80px;
  min-height: 80px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-tZDSBM8xiu .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tZDSBM8xiu .navbar.collapsed {
  justify-content: center;
}
.cid-tZDSBM8xiu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZDSBM8xiu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZDSBM8xiu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZDSBM8xiu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZDSBM8xiu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZDSBM8xiu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tZDSBM8xiu .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tZDSBM8xiu .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tZDSBM8xiu .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-tZDSBM8xiu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZDSBM8xiu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZDSBM8xiu .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tZDSBM8xiu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZDSBM8xiu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tZDSBM8xiu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tZDSBM8xiu .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tZDSBM8xiu .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tZDSBM8xiu .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tZDSBM8xiu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tZDSBM8xiu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tZDSBM8xiu .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tZDSBM8xiu .navbar.navbar-short {
  min-height: 60px;
}
.cid-tZDSBM8xiu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tZDSBM8xiu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tZDSBM8xiu .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-tZDSBM8xiu .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tZDSBM8xiu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZDSBM8xiu .dropdown-item.active,
.cid-tZDSBM8xiu .dropdown-item:active {
  background-color: transparent;
}
.cid-tZDSBM8xiu .navbar-expand-lg .navbar-nav .nav-link {
  margin: 4px 12px !important;
}
.cid-tZDSBM8xiu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZDSBM8xiu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZDSBM8xiu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tZDSBM8xiu ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tZDSBM8xiu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tZDSBM8xiu button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #f1f1f1;
}
.cid-tZDSBM8xiu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #01004c;
}
.cid-tZDSBM8xiu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tZDSBM8xiu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZDSBM8xiu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZDSBM8xiu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tZDSBM8xiu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZDSBM8xiu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tZDSBM8xiu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tZDSBM8xiu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZDSBM8xiu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tZDSBM8xiu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZDSBM8xiu .navbar {
    height: 70px;
  }
  .cid-tZDSBM8xiu .navbar.opened {
    height: auto;
  }
  .cid-tZDSBM8xiu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZDSBM8xiu .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tZDSBM8xiu .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-tZDSBM8xiu .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tZDSBM8xiu .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tZDSBM8xiu .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 200px;
}
.cid-tZDSBM8xiu .navbar-caption:hover {
  color: #be2626;
}
@media (min-width: 992px) {
  .cid-tZDSBM8xiu .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tZDSBM8xiu .text_widget {
  margin-bottom: 32px;
}
.cid-tZDSBM8xiu .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tZDSBM8xiu .text_widget a:hover,
.cid-tZDSBM8xiu .text_widget a:focus {
  opacity: .8;
}
.cid-tZDSBM8xiu .contacts-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  min-width: 32%;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-tZDSBM8xiu .contacts-wrapper {
    display: none;
  }
}
.cid-tZDSBM8xiu .contacts-wrapper a .mbr-contact {
  margin: 8px 20px;
  position: relative;
}
.cid-tZDSBM8xiu .contacts-wrapper a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #01004c;
  transition: all 0.3s ease-in-out;
}
.cid-tZDSBM8xiu .contacts-wrapper a .mbr-contact:hover:before,
.cid-tZDSBM8xiu .contacts-wrapper a .mbr-contact:focus:before {
  width: 100%;
}
.cid-tZDSBM8xiu .mbr-section-subtitle {
  color: #01004c;
  text-align: center;
}
.cid-tZDSBM8xiu .navbar-caption {
  color: #01004c;
}
.cid-tZDSBM8xiu .mbr-text {
  color: #01004c;
  text-align: center;
}
.cid-tZDSBM8xiu .mbr-section-subtitle,
.cid-tZDSBM8xiu .text_widget,
.cid-tZDSBM8xiu .mbr-section-btn {
  text-align: center;
}
.cid-tZDSBM8xiu a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tZDSBNIps5 {
  background-image: url("../../../assets/images/inflatable-rental-hero-615943a90b63b51c9adb4d56fde0935d509111cf1654bd613a692b586ee950597e5b4337274d1fc6ef87b19c4dafc6b3d425ea3416528766b70f843e40dc6.webp");
}
.cid-tZDSBNIps5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDSBNIps5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDSBNIps5 .mbr-text,
.cid-tZDSBNIps5 .mbr-section-btn {
  color: #000000;
}
.cid-tZDSBNIps5 .mbr-section-title {
  color: #000000;
}
.cid-tZDSBOJVAj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tZDSBOJVAj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDSBOJVAj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tZDSBOJVAj .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tZDSBOJVAj .container {
    padding: 0 12px;
  }
}
.cid-tZDSBOJVAj .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tZDSBOJVAj .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tZDSBOJVAj .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tZDSBOJVAj .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #e1e1e1;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tZDSBOJVAj .mbr-section-title {
  color: #222222;
}
.cid-tZDSBPFa57 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tZDSBPFa57 .line {
  background-color: #ffe161;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tZDSBPFa57 .mbr-text {
  text-align: left;
}
.cid-tZDSBQE3dR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tZDSBQE3dR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDSBQE3dR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDSBQE3dR .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tZDSBQE3dR .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tZDSBQE3dR .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tZDSBQE3dR .mbr-section-title {
  color: #131313;
}
.cid-tZDSBQE3dR .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tZDSBQE3dR .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tZDSBQE3dR .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tZDSBQE3dR .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  background: #e1e1e1;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tZDSBQE3dR .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tZDSBQE3dR .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tZDSBQE3dR .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tZDSBQE3dR .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tZDSBQE3dR .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tZDSBQE3dR .card-title {
  color: #131313;
}
.cid-tZDSBQE3dR .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tZDSBQE3dR .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tZDSBQE3dR .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tZDSBQE3dR .card-link {
    margin-top: 15px;
  }
}
.cid-tZDSBQE3dR .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tZDSBQE3dR .card-title,
.cid-tZDSBQE3dR .iconfont-wrapper {
  text-align: center;
}
.cid-tZDSBS3D7x {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #e1e1e1;
}
.cid-tZDSBS3D7x .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tZDSBS3D7x .currentcost {
  color: #232323;
}
.cid-tZDSBS3D7x .card-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-tZDSBS3D7x .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tZDSBS3D7x .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tZDSBS3D7x .text-box {
    padding: 1rem;
  }
}
.cid-tZDSBS3D7x .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tZDSBT7pqZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tZDSBT7pqZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDSBT7pqZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDSBT7pqZ .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tZDSBT7pqZ .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tZDSBT7pqZ .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tZDSBT7pqZ .mbr-section-title {
  color: #131313;
}
.cid-tZDSBT7pqZ .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tZDSBT7pqZ .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tZDSBT7pqZ .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tZDSBT7pqZ .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tZDSBT7pqZ .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tZDSBT7pqZ .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tZDSBT7pqZ .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tZDSBT7pqZ .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tZDSBT7pqZ .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tZDSBT7pqZ .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tZDSBT7pqZ .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tZDSBT7pqZ .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tZDSBT7pqZ .content-wrap {
    margin-top: 0;
  }
}
.cid-tZDSBT7pqZ .card-title {
  color: #131313;
}
.cid-tZDSBT7pqZ .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tZDSBT7pqZ .card-text {
    margin-top: 15px;
  }
}
.cid-tZDSBT7pqZ .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tZDSBT7pqZ .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tZDSBT7pqZ .card-link {
    margin-top: 15px;
  }
}
.cid-tZDSBT7pqZ .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tZDSBT7pqZ .card-title,
.cid-tZDSBT7pqZ .iconfont-wrapper {
  text-align: center;
}
.cid-tZDSBUDEQx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e1e1e1;
}
.cid-tZDSBUDEQx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDSBUDEQx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDSBUDEQx .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tZDSBUDEQx .mbr-section-subtitle {
  text-align: left;
}
.cid-tZDSBVLdCa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tZDSBVLdCa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDSBVLdCa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDSBVLdCa .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tZDSBVLdCa .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tZDSBVLdCa .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tZDSBVLdCa .mbr-section-title {
  color: #131313;
}
.cid-tZDSBVLdCa .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tZDSBVLdCa .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tZDSBVLdCa .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tZDSBVLdCa .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tZDSBVLdCa .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tZDSBVLdCa .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tZDSBVLdCa .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tZDSBVLdCa .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tZDSBVLdCa .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tZDSBVLdCa .card-title {
  color: #131313;
}
.cid-tZDSBVLdCa .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tZDSBVLdCa .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tZDSBVLdCa .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tZDSBVLdCa .card-link {
    margin-top: 15px;
  }
}
.cid-tZDSBVLdCa .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tZDSBVLdCa .card-title,
.cid-tZDSBVLdCa .iconfont-wrapper {
  text-align: center;
}
.cid-tZDSBXfRa4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e1e1e1;
}
.cid-tZDSBXfRa4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDSBXfRa4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDSBXfRa4 .mbr-section-subtitle {
  text-align: left;
}
.cid-tZDSBYmwWq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tZDSBYmwWq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDSBYmwWq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDSBYmwWq .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tZDSBYmwWq .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tZDSBYmwWq .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tZDSBYmwWq .mbr-section-title {
  color: #131313;
}
.cid-tZDSBYmwWq .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tZDSBYmwWq .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tZDSBYmwWq .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tZDSBYmwWq .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tZDSBYmwWq .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tZDSBYmwWq .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tZDSBYmwWq .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tZDSBYmwWq .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tZDSBYmwWq .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tZDSBYmwWq .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tZDSBYmwWq .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tZDSBYmwWq .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tZDSBYmwWq .content-wrap {
    margin-top: 0;
  }
}
.cid-tZDSBYmwWq .card-title {
  color: #131313;
}
.cid-tZDSBYmwWq .card-text {
  margin-top: 24px;
  color: #131313;
  text-align: center;
}
@media (max-width: 1199px) {
  .cid-tZDSBYmwWq .card-text {
    margin-top: 15px;
  }
}
.cid-tZDSBYmwWq .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tZDSBYmwWq .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tZDSBYmwWq .card-link {
    margin-top: 15px;
  }
}
.cid-tZDSBYmwWq .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tZDSBYmwWq .card-title,
.cid-tZDSBYmwWq .iconfont-wrapper {
  text-align: center;
}
.cid-tZDSBZDghp {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #e1e1e1;
}
@media (max-width: 992px) {
  .cid-tZDSBZDghp .container {
    padding: 0 25px;
  }
}
.cid-tZDSBZDghp .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tZDSBZDghp .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tZDSBZDghp .panel-group {
  border-bottom: 2px solid #000000;
}
.cid-tZDSBZDghp .panel-group .card {
  border-top: 2px solid #000000;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tZDSBZDghp .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tZDSBZDghp .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tZDSBZDghp .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #ffffff;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tZDSBZDghp .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #ffffff;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tZDSBZDghp .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tZDSBZDghp .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #ffffff;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tZDSBZDghp .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tZDSBZDghp .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tZDSBZDghp .mbr-section-title {
  color: #000000;
}
.cid-tZDSBZDghp .panel-title-edit {
  color: #000000;
}
.cid-tZDSBZDghp .panel-text {
  color: #000000;
}
.cid-tZDSC11jBf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tZDSC11jBf .date__block {
  margin-bottom: 17px;
}
.cid-tZDSC11jBf .date__article {
  display: inline-block;
  margin: 0;
  padding: 0 7.5px;
  color: #be2626;
}
.cid-tZDSC11jBf .dot {
  display: inline-block;
  vertical-align: super;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #40b0bf;
}
.cid-tZDSC11jBf .date__d {
  display: inline-block;
  margin: 0;
  padding: 0 7.5px;
  color: #689bb2;
}
.cid-tZDSC11jBf .title__block {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 91px;
}
.cid-tZDSC11jBf .mbr-section-title {
  margin-bottom: 18px;
}
.cid-tZDSC11jBf .mbr-text {
  margin-bottom: 20px;
}
.cid-tZDSC11jBf .link {
  display: block;
  margin-bottom: 0;
  white-space: nowrap;
}
.cid-tZDSC11jBf .link a {
  font-weight: 700;
}
.cid-tZDSC11jBf .link span {
  display: inline-block !important;
  transition: all 0.3s ease;
  margin-left: 13px;
}
.cid-tZDSC11jBf .link:hover span {
  transform: translateX(9px);
}
.cid-tZDSC11jBf .image__block {
  margin-bottom: -144px;
  padding-top: 121px;
  position: relative;
}
.cid-tZDSC11jBf .image__block:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #ffffff;
}
.cid-tZDSC11jBf .image {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tZDSC11jBf .image:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 575px;
  background-color: #e1e1e1;
}
.cid-tZDSC11jBf .image img {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translatex(-50%);
}
.cid-tZDSC11jBf .content__wrap {
  position: relative;
  z-index: 2;
  margin-bottom: 95px;
}
.cid-tZDSC11jBf .content__wrap:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 15px;
  right: 15px;
  height: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #e1e1e1;
}
@media (max-width: 991px) {
  .cid-tZDSC11jBf .title__block {
    padding: 25px 30px 55px;
  }
  .cid-tZDSC11jBf .content__wrap {
    margin-bottom: 90px;
  }
  .cid-tZDSC11jBf .date__block {
    padding-top: 22px;
    margin-bottom: 17px;
  }
  .cid-tZDSC11jBf .mbr-section-title {
    margin-bottom: 15px;
  }
  .cid-tZDSC11jBf .mbr-text {
    margin-bottom: 11px;
  }
  .cid-tZDSC11jBf .image__block {
    min-height: 150px;
    padding-top: 68px;
    margin-bottom: 0;
  }
  .cid-tZDSC11jBf .image:before {
    padding-top: 375px;
  }
}
.cid-tZDSC11jBf .mbr-section-title,
.cid-tZDSC11jBf .date__block {
  color: #000000;
}
.cid-tZDSC11jBf .mbr-text,
.cid-tZDSC11jBf .link {
  color: #000000;
  text-align: left;
}
.cid-tZDSC29NCQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e1e1e1;
}
.cid-tZDSC29NCQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDSC29NCQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDSC29NCQ .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tZDSC29NCQ .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tZDSC29NCQ .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tZDSC29NCQ .card-wrapper {
    padding: 4rem;
  }
}
.cid-tZDSC29NCQ .mbr-text,
.cid-tZDSC29NCQ .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tZDSC29NCQ .card-title,
.cid-tZDSC29NCQ .card-box {
  text-align: center;
  color: #000000;
}
.cid-tZDSC3l9Hc {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-tZDSC3l9Hc .container {
    max-width: 1400px;
  }
}
.cid-tZDSC3l9Hc .mbr-text,
.cid-tZDSC3l9Hc .mbr-section-btn {
  color: #999999;
}
.cid-tZDSC3l9Hc .quote {
  color: #505574;
}
.cid-tZDSC3l9Hc .mbr-text {
  color: #000000;
}
.cid-tZDSC4wnea {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #e1e1e1;
}
.cid-tZDSC4wnea .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #0046c7 !important;
  transition: all 0.3s;
  transform: rotate(45deg);
  font-weight: bold;
}
.cid-tZDSC4wnea .panel-group {
  border: none;
}
.cid-tZDSC4wnea .card-header {
  padding: 0.5rem 0.5rem;
}
@media (max-width: 767px) {
  .cid-tZDSC4wnea .card-header {
    padding: 1rem 0rem;
  }
}
.cid-tZDSC4wnea .panel-body {
  padding: 0 0.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tZDSC4wnea .panel-body {
    padding: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-tZDSC4wnea .img-col {
  padding: 0;
}
.cid-tZDSC4wnea .img-item {
  height: 100%;
}
.cid-tZDSC4wnea img {
  height: 100%;
  object-fit: cover;
}
.cid-tZDSC4wnea .collapsed span {
  transform: rotate(0deg);
}
.cid-tZDSC4wnea .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tZDSC4wnea p {
  margin-bottom: 0.3rem;
}
.cid-tZDSC4wnea .panel-title-edit {
  color: #e9c0e9;
}
.cid-tZDSC4wnea .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-tZDSC4wnea .card {
  background: #ffffff;
  padding: 1rem 2rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-tZDSC4wnea .card {
    padding: 1.5rem;
  }
}
.cid-tZDSC4wnea .panel-text {
  color: #320707;
}
.cid-tZDSC4wnea .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tZDSC4wnea .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tZDSC4wnea .panel-title-edit,
.cid-tZDSC4wnea .mbr-iconfont {
  color: #000000;
}
.cid-tZDSC5YkEG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tZDSC5YkEG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDSC5YkEG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDSC5YkEG .google-map {
  height: 30rem;
  position: relative;
}
.cid-tZDSC5YkEG .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tZDSC5YkEG .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tZDSC5YkEG .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tZDSC5YkEG .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tZDSC7gr9E {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #e1e1e1;
}
.cid-tZDSC7gr9E .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDSC7gr9E .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tZDSC7gr9E .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tZDSC7gr9E .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tZDSC7gr9E a {
  font-weight: 600;
}
.cid-tZDSC7gr9E a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tZDSC7gr9E .col-lg-3,
  .cid-tZDSC7gr9E .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tZDSC7gr9E .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tZDSC7gr9E .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tZDSC7gr9E h5 {
  margin: 0;
}
.cid-tZDSC7gr9E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDSC7gr9E .iconfont-wrapper {
  position: relative;
}
.cid-tZDSC7gr9E .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tZDSC7gr9E .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tZDSC7gr9E .sociconfont-wrapper {
  display: flex;
}
.cid-tZDSC7gr9E .card-title,
.cid-tZDSC7gr9E .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tZDSC7gr9E .card-text {
  color: #000000;
}
.cid-tZDSC7gr9E .mbr-section-title {
  color: #000000;
}
.cid-tZDSC7gr9E .main-title,
.cid-tZDSC7gr9E .iconfont-wrapper {
  text-align: left;
}
.cid-tZDSC8ItbJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e1e1e1;
  overflow: hidden;
}
.cid-tZDSC8ItbJ .media-container-row .mbr-text {
  color: #000000;
}
.cid-tZDWymxY6Y {
  background-color: transparent;
}
.cid-tZDWymxY6Y .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tZDWymxY6Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tZDWymxY6Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZDWymxY6Y .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tZDWymxY6Y .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tZDWymxY6Y .menu_box .navbar.opened,
  .cid-tZDWymxY6Y .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tZDWymxY6Y .navbar-dropdown {
  position: relative !important;
}
.cid-tZDWymxY6Y .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tZDWymxY6Y .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tZDWymxY6Y .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tZDWymxY6Y .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tZDWymxY6Y .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tZDWymxY6Y .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #f1f1f1;
  }
  .cid-tZDWymxY6Y .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tZDWymxY6Y .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tZDWymxY6Y .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tZDWymxY6Y .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tZDWymxY6Y .offcanvas-body .mbr-text,
  .cid-tZDWymxY6Y .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tZDWymxY6Y .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tZDWymxY6Y .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tZDWymxY6Y .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #01004c;
  }
  .cid-tZDWymxY6Y .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tZDWymxY6Y .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tZDWymxY6Y .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tZDWymxY6Y .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tZDWymxY6Y ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tZDWymxY6Y .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tZDWymxY6Y .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tZDWymxY6Y .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tZDWymxY6Y li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tZDWymxY6Y .lg_brand {
    margin: 0 1rem;
  }
  .cid-tZDWymxY6Y .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-tZDWymxY6Y .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tZDWymxY6Y .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tZDWymxY6Y .nav-item {
    margin: 0 !important;
  }
}
.cid-tZDWymxY6Y .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-tZDWymxY6Y .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #01004c;
  transition: all 0.3s ease-in-out;
}
.cid-tZDWymxY6Y .nav-item .nav-link:hover:before,
.cid-tZDWymxY6Y .nav-item .nav-link:focus:before {
  width: 100%;
}
.cid-tZDWymxY6Y .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tZDWymxY6Y .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tZDWymxY6Y .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tZDWymxY6Y .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tZDWymxY6Y .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tZDWymxY6Y .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tZDWymxY6Y .offcanvas_box {
    display: none;
  }
}
.cid-tZDWymxY6Y .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tZDWymxY6Y .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tZDWymxY6Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tZDWymxY6Y .container {
  display: flex;
  margin: auto;
}
.cid-tZDWymxY6Y .iconfont-wrapper {
  color: #01004c;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tZDWymxY6Y .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tZDWymxY6Y .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tZDWymxY6Y .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tZDWymxY6Y .navbar-nav {
    margin: 0;
  }
}
.cid-tZDWymxY6Y .dropdown-menu,
.cid-tZDWymxY6Y .navbar.opened {
  background-color: false !important;
}
.cid-tZDWymxY6Y .nav-item:focus,
.cid-tZDWymxY6Y .nav-link:focus {
  outline: none;
}
.cid-tZDWymxY6Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tZDWymxY6Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZDWymxY6Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tZDWymxY6Y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tZDWymxY6Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZDWymxY6Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZDWymxY6Y .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tZDWymxY6Y .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tZDWymxY6Y .navbar.opened {
  transition: all 0.3s;
}
.cid-tZDWymxY6Y .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tZDWymxY6Y .navbar .navbar-logo img {
  max-width: 80px;
  min-height: 80px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-tZDWymxY6Y .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tZDWymxY6Y .navbar.collapsed {
  justify-content: center;
}
.cid-tZDWymxY6Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZDWymxY6Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tZDWymxY6Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZDWymxY6Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZDWymxY6Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZDWymxY6Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tZDWymxY6Y .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tZDWymxY6Y .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tZDWymxY6Y .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-tZDWymxY6Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZDWymxY6Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZDWymxY6Y .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tZDWymxY6Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZDWymxY6Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tZDWymxY6Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tZDWymxY6Y .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tZDWymxY6Y .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tZDWymxY6Y .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tZDWymxY6Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tZDWymxY6Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tZDWymxY6Y .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tZDWymxY6Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-tZDWymxY6Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tZDWymxY6Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tZDWymxY6Y .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-tZDWymxY6Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tZDWymxY6Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZDWymxY6Y .dropdown-item.active,
.cid-tZDWymxY6Y .dropdown-item:active {
  background-color: transparent;
}
.cid-tZDWymxY6Y .navbar-expand-lg .navbar-nav .nav-link {
  margin: 4px 12px !important;
}
.cid-tZDWymxY6Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZDWymxY6Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZDWymxY6Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tZDWymxY6Y ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tZDWymxY6Y .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tZDWymxY6Y button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #f1f1f1;
}
.cid-tZDWymxY6Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #01004c;
}
.cid-tZDWymxY6Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tZDWymxY6Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZDWymxY6Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZDWymxY6Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tZDWymxY6Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZDWymxY6Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tZDWymxY6Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tZDWymxY6Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZDWymxY6Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tZDWymxY6Y .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZDWymxY6Y .navbar {
    height: 70px;
  }
  .cid-tZDWymxY6Y .navbar.opened {
    height: auto;
  }
  .cid-tZDWymxY6Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZDWymxY6Y .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tZDWymxY6Y .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-tZDWymxY6Y .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tZDWymxY6Y .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tZDWymxY6Y .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 200px;
}
.cid-tZDWymxY6Y .navbar-caption:hover {
  color: #be2626;
}
@media (min-width: 992px) {
  .cid-tZDWymxY6Y .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tZDWymxY6Y .text_widget {
  margin-bottom: 32px;
}
.cid-tZDWymxY6Y .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tZDWymxY6Y .text_widget a:hover,
.cid-tZDWymxY6Y .text_widget a:focus {
  opacity: .8;
}
.cid-tZDWymxY6Y .contacts-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  min-width: 32%;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-tZDWymxY6Y .contacts-wrapper {
    display: none;
  }
}
.cid-tZDWymxY6Y .contacts-wrapper a .mbr-contact {
  margin: 8px 20px;
  position: relative;
}
.cid-tZDWymxY6Y .contacts-wrapper a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #01004c;
  transition: all 0.3s ease-in-out;
}
.cid-tZDWymxY6Y .contacts-wrapper a .mbr-contact:hover:before,
.cid-tZDWymxY6Y .contacts-wrapper a .mbr-contact:focus:before {
  width: 100%;
}
.cid-tZDWymxY6Y .mbr-section-subtitle {
  color: #01004c;
  text-align: center;
}
.cid-tZDWymxY6Y .navbar-caption {
  color: #01004c;
}
.cid-tZDWymxY6Y .mbr-text {
  color: #01004c;
  text-align: center;
}
.cid-tZDWymxY6Y .mbr-section-subtitle,
.cid-tZDWymxY6Y .text_widget,
.cid-tZDWymxY6Y .mbr-section-btn {
  text-align: center;
}
.cid-tZDWymxY6Y a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tZDWyoFGcV {
  background-image: url("../../../assets/images/inflatable-obstacle-course-rentals-1643822600-big.jpg");
}
.cid-tZDWyoFGcV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDWyoFGcV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDWyoFGcV .mbr-text,
.cid-tZDWyoFGcV .mbr-section-btn {
  color: #000000;
}
.cid-tZDWyoFGcV .mbr-section-title {
  color: #f5f613;
}
.cid-tZDWypWCVG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tZDWypWCVG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDWypWCVG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tZDWypWCVG .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tZDWypWCVG .container {
    padding: 0 12px;
  }
}
.cid-tZDWypWCVG .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tZDWypWCVG .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tZDWypWCVG .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tZDWypWCVG .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #e1e1e1;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tZDWypWCVG .mbr-section-title {
  color: #222222;
}
.cid-tZDWyr0akM {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tZDWyr0akM .line {
  background-color: #ffe161;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tZDWyr0akM .mbr-text {
  text-align: left;
}
.cid-tZDWyrVil1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tZDWyrVil1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDWyrVil1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDWyrVil1 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tZDWyrVil1 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tZDWyrVil1 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tZDWyrVil1 .mbr-section-title {
  color: #131313;
}
.cid-tZDWyrVil1 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tZDWyrVil1 .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tZDWyrVil1 .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tZDWyrVil1 .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  background: #e1e1e1;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tZDWyrVil1 .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tZDWyrVil1 .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tZDWyrVil1 .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tZDWyrVil1 .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tZDWyrVil1 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tZDWyrVil1 .card-title {
  color: #131313;
}
.cid-tZDWyrVil1 .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tZDWyrVil1 .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tZDWyrVil1 .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tZDWyrVil1 .card-link {
    margin-top: 15px;
  }
}
.cid-tZDWyrVil1 .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tZDWyrVil1 .card-title,
.cid-tZDWyrVil1 .iconfont-wrapper {
  text-align: center;
}
.cid-tZDYJv54uB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tZDYJv54uB .text-wrapper {
    padding: 2rem;
  }
}
.cid-tZDYJv54uB .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tZDYJv54uB .image-wrapper {
    margin-top: 2rem;
  }
}
.cid-tZDYJv54uB .mbr-section-title {
  text-align: left;
  margin-bottom: 0 !important;
  color: #000000;
}
.cid-tZDYJv54uB .name {
  margin-top: 0.70rem;
  color: #000000;
  text-align: left;
}
.cid-tZDYJv54uB .name b,
.cid-tZDYJv54uB .name strong {
  font-weight: 500;
}
.cid-tZDYJv54uB .mbr-text {
  margin-bottom: 0 !important;
  color: #000000;
  text-align: left;
  margin-top: 4.25rem !important;
  line-height: 1.4;
}
.cid-tZDYJv54uB .mbr-text,
.cid-tZDYJv54uB .mbr-section-data {
  text-align: left;
}
.cid-tZDYJv54uB .mbr-text,
.cid-tZDYJv54uB .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-tZDYJv54uB .mbr-section-btn {
  margin-top: 3.5rem !important;
}
.cid-tZDWyuyCcj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tZDWyuyCcj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDWyuyCcj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDWyuyCcj .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tZDWyuyCcj .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tZDWyuyCcj .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tZDWyuyCcj .mbr-section-title {
  color: #131313;
}
.cid-tZDWyuyCcj .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tZDWyuyCcj .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tZDWyuyCcj .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tZDWyuyCcj .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tZDWyuyCcj .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tZDWyuyCcj .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tZDWyuyCcj .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tZDWyuyCcj .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tZDWyuyCcj .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tZDWyuyCcj .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tZDWyuyCcj .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tZDWyuyCcj .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tZDWyuyCcj .content-wrap {
    margin-top: 0;
  }
}
.cid-tZDWyuyCcj .card-title {
  color: #131313;
}
.cid-tZDWyuyCcj .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tZDWyuyCcj .card-text {
    margin-top: 15px;
  }
}
.cid-tZDWyuyCcj .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tZDWyuyCcj .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tZDWyuyCcj .card-link {
    margin-top: 15px;
  }
}
.cid-tZDWyuyCcj .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tZDWyuyCcj .card-title,
.cid-tZDWyuyCcj .iconfont-wrapper {
  text-align: center;
}
.cid-tZDWyw6xh3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e1e1e1;
}
.cid-tZDWyw6xh3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDWyw6xh3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDWyw6xh3 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tZDWyw6xh3 .mbr-section-subtitle {
  text-align: left;
}
.cid-tZDWyxbZgW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tZDWyxbZgW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDWyxbZgW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDWyxbZgW .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tZDWyxbZgW .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tZDWyxbZgW .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tZDWyxbZgW .mbr-section-title {
  color: #131313;
}
.cid-tZDWyxbZgW .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tZDWyxbZgW .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tZDWyxbZgW .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tZDWyxbZgW .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tZDWyxbZgW .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tZDWyxbZgW .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tZDWyxbZgW .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tZDWyxbZgW .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tZDWyxbZgW .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tZDWyxbZgW .card-title {
  color: #131313;
}
.cid-tZDWyxbZgW .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tZDWyxbZgW .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tZDWyxbZgW .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tZDWyxbZgW .card-link {
    margin-top: 15px;
  }
}
.cid-tZDWyxbZgW .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tZDWyxbZgW .card-title,
.cid-tZDWyxbZgW .iconfont-wrapper {
  text-align: center;
}
.cid-tZDWyyREy2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e1e1e1;
}
.cid-tZDWyyREy2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDWyyREy2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDWyyREy2 .mbr-section-subtitle {
  text-align: left;
}
.cid-tZDWyANO3L {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tZDWyANO3L .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDWyANO3L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDWyANO3L .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tZDWyANO3L .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tZDWyANO3L .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tZDWyANO3L .mbr-section-title {
  color: #131313;
}
.cid-tZDWyANO3L .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tZDWyANO3L .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tZDWyANO3L .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tZDWyANO3L .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tZDWyANO3L .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tZDWyANO3L .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tZDWyANO3L .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tZDWyANO3L .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tZDWyANO3L .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tZDWyANO3L .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tZDWyANO3L .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tZDWyANO3L .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tZDWyANO3L .content-wrap {
    margin-top: 0;
  }
}
.cid-tZDWyANO3L .card-title {
  color: #131313;
}
.cid-tZDWyANO3L .card-text {
  margin-top: 24px;
  color: #131313;
  text-align: center;
}
@media (max-width: 1199px) {
  .cid-tZDWyANO3L .card-text {
    margin-top: 15px;
  }
}
.cid-tZDWyANO3L .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tZDWyANO3L .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tZDWyANO3L .card-link {
    margin-top: 15px;
  }
}
.cid-tZDWyANO3L .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tZDWyANO3L .card-title,
.cid-tZDWyANO3L .iconfont-wrapper {
  text-align: center;
}
.cid-tZDWyD79yA {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #e1e1e1;
}
@media (max-width: 992px) {
  .cid-tZDWyD79yA .container {
    padding: 0 25px;
  }
}
.cid-tZDWyD79yA .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tZDWyD79yA .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tZDWyD79yA .panel-group {
  border-bottom: 2px solid #000000;
}
.cid-tZDWyD79yA .panel-group .card {
  border-top: 2px solid #000000;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tZDWyD79yA .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tZDWyD79yA .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tZDWyD79yA .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #ffffff;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tZDWyD79yA .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #ffffff;
  box-shadow: inset 52px 0 0 0 #000000;
}
.cid-tZDWyD79yA .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tZDWyD79yA .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #000000;
  background-color: #ffffff;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tZDWyD79yA .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tZDWyD79yA .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tZDWyD79yA .mbr-section-title {
  color: #000000;
}
.cid-tZDWyD79yA .panel-title-edit {
  color: #000000;
}
.cid-tZDWyD79yA .panel-text {
  color: #000000;
}
.cid-tZDWyFMcx3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tZDWyFMcx3 .date__block {
  margin-bottom: 17px;
}
.cid-tZDWyFMcx3 .date__article {
  display: inline-block;
  margin: 0;
  padding: 0 7.5px;
  color: #be2626;
}
.cid-tZDWyFMcx3 .dot {
  display: inline-block;
  vertical-align: super;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #40b0bf;
}
.cid-tZDWyFMcx3 .date__d {
  display: inline-block;
  margin: 0;
  padding: 0 7.5px;
  color: #689bb2;
}
.cid-tZDWyFMcx3 .title__block {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 91px;
}
.cid-tZDWyFMcx3 .mbr-section-title {
  margin-bottom: 18px;
}
.cid-tZDWyFMcx3 .mbr-text {
  margin-bottom: 20px;
}
.cid-tZDWyFMcx3 .link {
  display: block;
  margin-bottom: 0;
  white-space: nowrap;
}
.cid-tZDWyFMcx3 .link a {
  font-weight: 700;
}
.cid-tZDWyFMcx3 .link span {
  display: inline-block !important;
  transition: all 0.3s ease;
  margin-left: 13px;
}
.cid-tZDWyFMcx3 .link:hover span {
  transform: translateX(9px);
}
.cid-tZDWyFMcx3 .image__block {
  margin-bottom: -144px;
  padding-top: 121px;
  position: relative;
}
.cid-tZDWyFMcx3 .image__block:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #ffffff;
}
.cid-tZDWyFMcx3 .image {
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tZDWyFMcx3 .image:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 575px;
  background-color: #e1e1e1;
}
.cid-tZDWyFMcx3 .image img {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translatex(-50%);
}
.cid-tZDWyFMcx3 .content__wrap {
  position: relative;
  z-index: 2;
  margin-bottom: 95px;
}
.cid-tZDWyFMcx3 .content__wrap:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 15px;
  right: 15px;
  height: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #e1e1e1;
}
@media (max-width: 991px) {
  .cid-tZDWyFMcx3 .title__block {
    padding: 25px 30px 55px;
  }
  .cid-tZDWyFMcx3 .content__wrap {
    margin-bottom: 90px;
  }
  .cid-tZDWyFMcx3 .date__block {
    padding-top: 22px;
    margin-bottom: 17px;
  }
  .cid-tZDWyFMcx3 .mbr-section-title {
    margin-bottom: 15px;
  }
  .cid-tZDWyFMcx3 .mbr-text {
    margin-bottom: 11px;
  }
  .cid-tZDWyFMcx3 .image__block {
    min-height: 150px;
    padding-top: 68px;
    margin-bottom: 0;
  }
  .cid-tZDWyFMcx3 .image:before {
    padding-top: 375px;
  }
}
.cid-tZDWyFMcx3 .mbr-section-title,
.cid-tZDWyFMcx3 .date__block {
  color: #000000;
}
.cid-tZDWyFMcx3 .mbr-text,
.cid-tZDWyFMcx3 .link {
  color: #000000;
  text-align: left;
}
.cid-tZDWyI12Hn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e1e1e1;
}
.cid-tZDWyI12Hn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDWyI12Hn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDWyI12Hn .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tZDWyI12Hn .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tZDWyI12Hn .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tZDWyI12Hn .card-wrapper {
    padding: 4rem;
  }
}
.cid-tZDWyI12Hn .mbr-text,
.cid-tZDWyI12Hn .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tZDWyI12Hn .card-title,
.cid-tZDWyI12Hn .card-box {
  text-align: center;
  color: #000000;
}
.cid-tZDWyJMITm {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-tZDWyJMITm .container {
    max-width: 1400px;
  }
}
.cid-tZDWyJMITm .mbr-text,
.cid-tZDWyJMITm .mbr-section-btn {
  color: #999999;
}
.cid-tZDWyJMITm .quote {
  color: #505574;
}
.cid-tZDWyJMITm .mbr-text {
  color: #000000;
}
.cid-tZDWyL7SiD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #e1e1e1;
}
.cid-tZDWyL7SiD .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #0046c7 !important;
  transition: all 0.3s;
  transform: rotate(45deg);
  font-weight: bold;
}
.cid-tZDWyL7SiD .panel-group {
  border: none;
}
.cid-tZDWyL7SiD .card-header {
  padding: 0.5rem 0.5rem;
}
@media (max-width: 767px) {
  .cid-tZDWyL7SiD .card-header {
    padding: 1rem 0rem;
  }
}
.cid-tZDWyL7SiD .panel-body {
  padding: 0 0.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tZDWyL7SiD .panel-body {
    padding: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-tZDWyL7SiD .img-col {
  padding: 0;
}
.cid-tZDWyL7SiD .img-item {
  height: 100%;
}
.cid-tZDWyL7SiD img {
  height: 100%;
  object-fit: cover;
}
.cid-tZDWyL7SiD .collapsed span {
  transform: rotate(0deg);
}
.cid-tZDWyL7SiD .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tZDWyL7SiD p {
  margin-bottom: 0.3rem;
}
.cid-tZDWyL7SiD .panel-title-edit {
  color: #e9c0e9;
}
.cid-tZDWyL7SiD .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-tZDWyL7SiD .card {
  background: #ffffff;
  padding: 1rem 2rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-tZDWyL7SiD .card {
    padding: 1.5rem;
  }
}
.cid-tZDWyL7SiD .panel-text {
  color: #320707;
}
.cid-tZDWyL7SiD .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tZDWyL7SiD .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tZDWyL7SiD .panel-title-edit,
.cid-tZDWyL7SiD .mbr-iconfont {
  color: #000000;
}
.cid-tZDWyNdGXp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tZDWyNdGXp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDWyNdGXp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDWyNdGXp .google-map {
  height: 30rem;
  position: relative;
}
.cid-tZDWyNdGXp .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tZDWyNdGXp .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tZDWyNdGXp .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tZDWyNdGXp .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tZDWyPYWOs {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #e1e1e1;
}
.cid-tZDWyPYWOs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZDWyPYWOs .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tZDWyPYWOs .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tZDWyPYWOs .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tZDWyPYWOs a {
  font-weight: 600;
}
.cid-tZDWyPYWOs a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tZDWyPYWOs .col-lg-3,
  .cid-tZDWyPYWOs .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tZDWyPYWOs .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tZDWyPYWOs .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tZDWyPYWOs h5 {
  margin: 0;
}
.cid-tZDWyPYWOs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZDWyPYWOs .iconfont-wrapper {
  position: relative;
}
.cid-tZDWyPYWOs .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tZDWyPYWOs .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tZDWyPYWOs .sociconfont-wrapper {
  display: flex;
}
.cid-tZDWyPYWOs .card-title,
.cid-tZDWyPYWOs .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tZDWyPYWOs .card-text {
  color: #000000;
}
.cid-tZDWyPYWOs .mbr-section-title {
  color: #000000;
}
.cid-tZDWyPYWOs .main-title,
.cid-tZDWyPYWOs .iconfont-wrapper {
  text-align: left;
}
.cid-tZDWySsyN1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e1e1e1;
  overflow: hidden;
}
.cid-tZDWySsyN1 .media-container-row .mbr-text {
  color: #000000;
}
