body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Kanit', sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.75rem;
}
.display-2 {
  font-family: 'Kanit', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Kanit', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Kanit', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Kanit', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.04rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.66rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #eb1818 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #eb1818 !important;
  border-color: #eb1818 !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: #9f0e0e !important;
  border-color: #9f0e0e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #9f0e0e !important;
  border-color: #9f0e0e !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #d8c3a5 !important;
  border-color: #d8c3a5 !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: #be9b69 !important;
  border-color: #be9b69 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #be9b69 !important;
  border-color: #be9b69 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #eb1818;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #9f0e0e !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: #eb1818 !important;
  border-color: #eb1818 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d8c3a5;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #be9b69 !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: #d8c3a5 !important;
  border-color: #d8c3a5 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #eb1818 !important;
}
.text-secondary {
  color: #d8c3a5 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #900d0d !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #b9945e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #eb1818;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #eb1818;
  border-color: #eb1818;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #eb1818;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fbd4d4;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Kanit', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #eb1818 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Kanit', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #eb1818;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #eb1818;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #eb1818;
}
.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: #eb1818;
  border-bottom-color: #eb1818;
}
.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: #eb1818 !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: #d8c3a5 !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='%23eb1818' %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-tVQy8GkiWM {
  background-color: transparent;
}
.cid-tVQy8GkiWM .navbar-dropdown {
  background-color: #000000 !important;
  padding: 0;
}
.cid-tVQy8GkiWM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #000000 !important;
  background: #000000;
}
.cid-tVQy8GkiWM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVQy8GkiWM .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tVQy8GkiWM .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tVQy8GkiWM .menu_box .navbar.opened,
  .cid-tVQy8GkiWM .menu_box .navbar-collapse {
    background-color: #000000 !important;
    transition: all 0s ease 0s;
  }
}
.cid-tVQy8GkiWM .navbar-dropdown {
  position: relative !important;
}
.cid-tVQy8GkiWM .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tVQy8GkiWM .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tVQy8GkiWM .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tVQy8GkiWM .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tVQy8GkiWM .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tVQy8GkiWM .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #474a48;
  }
  .cid-tVQy8GkiWM .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tVQy8GkiWM .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tVQy8GkiWM .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tVQy8GkiWM .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tVQy8GkiWM .offcanvas-body .mbr-text,
  .cid-tVQy8GkiWM .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tVQy8GkiWM .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tVQy8GkiWM .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tVQy8GkiWM .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #f9f6e0;
  }
  .cid-tVQy8GkiWM .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tVQy8GkiWM .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tVQy8GkiWM .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tVQy8GkiWM .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tVQy8GkiWM ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tVQy8GkiWM .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tVQy8GkiWM .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-tVQy8GkiWM .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tVQy8GkiWM li.nav-item {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
    padding: 4px 20px !important;
    margin: 0;
    border-right: 1px solid #72716b;
  }
  .cid-tVQy8GkiWM .lg_brand {
    margin: 0 1rem;
  }
  .cid-tVQy8GkiWM .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-tVQy8GkiWM .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tVQy8GkiWM .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tVQy8GkiWM .nav-item {
    margin: 0 !important;
  }
}
.cid-tVQy8GkiWM .nav-item .nav-link {
  transition: all 0.5s ease-out;
  position: relative;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tVQy8GkiWM .nav-item .nav-link {
    justify-content: flex-start;
  }
}
.cid-tVQy8GkiWM .nav-item .nav-link::before {
  content: '';
  background-color: #d8c3a5;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  bottom: -12px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.cid-tVQy8GkiWM .nav-item .nav-link:hover,
.cid-tVQy8GkiWM .nav-item .nav-link:focus {
  color: #d8c3a5 !important;
}
.cid-tVQy8GkiWM .nav-item .nav-link:hover::before,
.cid-tVQy8GkiWM .nav-item .nav-link:focus::before {
  opacity: 1;
}
.cid-tVQy8GkiWM .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tVQy8GkiWM .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tVQy8GkiWM .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tVQy8GkiWM .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tVQy8GkiWM .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-tVQy8GkiWM .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tVQy8GkiWM .offcanvas_box {
    display: none;
  }
}
.cid-tVQy8GkiWM .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tVQy8GkiWM .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tVQy8GkiWM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tVQy8GkiWM .container {
  display: flex;
  margin: auto;
}
.cid-tVQy8GkiWM .iconfont-wrapper {
  color: #f9f6e0;
  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-tVQy8GkiWM .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tVQy8GkiWM .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tVQy8GkiWM .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tVQy8GkiWM .navbar-nav {
    margin: 0;
  }
}
.cid-tVQy8GkiWM .dropdown-menu,
.cid-tVQy8GkiWM .navbar.opened {
  background-color: false !important;
}
.cid-tVQy8GkiWM .nav-item:focus,
.cid-tVQy8GkiWM .nav-link:focus {
  outline: none;
}
.cid-tVQy8GkiWM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVQy8GkiWM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVQy8GkiWM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVQy8GkiWM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVQy8GkiWM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVQy8GkiWM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVQy8GkiWM .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tVQy8GkiWM .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tVQy8GkiWM .navbar.opened {
  transition: all 0.3s;
}
.cid-tVQy8GkiWM .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tVQy8GkiWM .navbar .navbar-logo img {
  max-width: 60px;
  min-height: 60px;
  object-fit: contain;
  border-radius: 5px !important;
}
.cid-tVQy8GkiWM .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tVQy8GkiWM .navbar.collapsed {
  justify-content: center;
}
.cid-tVQy8GkiWM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVQy8GkiWM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tVQy8GkiWM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVQy8GkiWM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVQy8GkiWM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVQy8GkiWM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tVQy8GkiWM .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tVQy8GkiWM .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tVQy8GkiWM .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tVQy8GkiWM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVQy8GkiWM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVQy8GkiWM .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tVQy8GkiWM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVQy8GkiWM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tVQy8GkiWM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVQy8GkiWM .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tVQy8GkiWM .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tVQy8GkiWM .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tVQy8GkiWM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tVQy8GkiWM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVQy8GkiWM .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tVQy8GkiWM .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVQy8GkiWM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVQy8GkiWM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVQy8GkiWM .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-tVQy8GkiWM .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tVQy8GkiWM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVQy8GkiWM .dropdown-item.active,
.cid-tVQy8GkiWM .dropdown-item:active {
  background-color: transparent;
}
.cid-tVQy8GkiWM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 2px 10px !important;
}
.cid-tVQy8GkiWM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVQy8GkiWM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVQy8GkiWM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVQy8GkiWM ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tVQy8GkiWM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVQy8GkiWM button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
  background: #353535;
}
.cid-tVQy8GkiWM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #f9f6e0;
}
.cid-tVQy8GkiWM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVQy8GkiWM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVQy8GkiWM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVQy8GkiWM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVQy8GkiWM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVQy8GkiWM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVQy8GkiWM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVQy8GkiWM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVQy8GkiWM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tVQy8GkiWM .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-tVQy8GkiWM .navbar {
    height: 70px;
  }
  .cid-tVQy8GkiWM .navbar.opened {
    height: auto;
  }
  .cid-tVQy8GkiWM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVQy8GkiWM .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tVQy8GkiWM .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.cid-tVQy8GkiWM .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tVQy8GkiWM .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tVQy8GkiWM .mbr-section-btn-main .btn {
  border: none;
  margin: 8px;
  min-width: 200px;
}
.cid-tVQy8GkiWM .navbar-caption:hover {
  color: #eb1818;
}
@media (min-width: 992px) {
  .cid-tVQy8GkiWM .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tVQy8GkiWM .text_widget {
  margin-bottom: 32px;
}
.cid-tVQy8GkiWM .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tVQy8GkiWM .text_widget a:hover,
.cid-tVQy8GkiWM .text_widget a:focus {
  opacity: .6;
}
.cid-tVQy8GkiWM .mbr-section-subtitle {
  color: #F9F6E0;
  text-align: center;
}
.cid-tVQy8GkiWM .navbar-caption {
  color: #F9F6E0;
}
.cid-tVQy8GkiWM .mbr-text {
  color: #F9F6E0;
  text-align: center;
}
.cid-tVQy8GkiWM .mbr-section-subtitle,
.cid-tVQy8GkiWM .text_widget,
.cid-tVQy8GkiWM .mbr-section-btn {
  text-align: center;
}
.cid-tVQy8GkiWM a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tVVKoXinxQ {
  display: flex;
  background-image: url("../../../assets/images/business-support8-612x344.jpg");
}
.cid-tVVKoXinxQ .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tVVKoXinxQ .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tVVKoXinxQ {
    align-items: flex-end;
  }
  .cid-tVVKoXinxQ .row {
    justify-content: flex-start;
  }
  .cid-tVVKoXinxQ .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tVVKoXinxQ .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tVVKoXinxQ {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tVVKoXinxQ .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tVVKoXinxQ .content-wrap {
    width: 100%;
  }
}
.cid-tVQGdzwITZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVQGdzwITZ blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #000000;
}
.cid-tVQGdzwITZ .mbr-section-title {
  color: #ffffff;
}
.cid-tNxlMLxRO7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNxlMLxRO7 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tNxlMLxRO7 .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-tNxlhKHCAa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ededed;
}
.cid-tNxlhKHCAa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNxlhKHCAa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNxlhKHCAa .card-wrapper {
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tNxlhKHCAa .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tNxlhKHCAa .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tNxlhKHCAa .card-wrapper {
    padding: 4rem;
  }
}
.cid-tNxlhKHCAa .mbr-text,
.cid-tNxlhKHCAa .mbr-section-btn {
  color: #ffffff;
}
.cid-tNxlhKHCAa .card-title,
.cid-tNxlhKHCAa .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-tVM8B7hUVl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tVM8B7hUVl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVM8B7hUVl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVM8B7hUVl .container-fluid {
  max-width: 100% !important;
}
.cid-tVM8B7hUVl .img-wrap {
  width: 100%;
  height: 100%;
}
.cid-tVM8B7hUVl .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tVM8B7hUVl .text-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 55px 62px 70px 62px;
}
@media (max-width: 1439px) {
  .cid-tVM8B7hUVl .text-wrap {
    padding: 40px 45px 50px 45px;
  }
}
@media (max-width: 991px) {
  .cid-tVM8B7hUVl .text-wrap {
    padding: 25px 30px 30px 30px;
  }
}
@media (max-width: 767px) {
  .cid-tVM8B7hUVl .text-wrap {
    padding: 40px 25px 45px 25px;
  }
}
.cid-tVM8B7hUVl .mbr-section-title {
  color: #303030;
}
.cid-tVM8B7hUVl .text-bottom {
  margin-top: auto;
  padding-top: 25px;
}
@media (max-width: 767px) {
  .cid-tVM8B7hUVl .text-bottom {
    padding-top: 70px;
  }
}
@media (max-width: 575px) {
  .cid-tVM8B7hUVl .text-bottom {
    padding-top: 50px;
  }
}
.cid-tVM8B7hUVl .mbr-text {
  color: #303030;
}
.cid-tVM8B7hUVl .mbr-section-btn {
  margin-top: 16px;
}
.cid-tVM8B7hUVl .mbr-text,
.cid-tVM8B7hUVl .mbr-section-btn {
  text-align: center;
}
.cid-tNxljbo0wd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tNxljbo0wd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNxljbo0wd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNxljbo0wd .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tNxljbo0wd .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tNxljbo0wd .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tNxljbo0wd .card-wrapper {
    padding: 4rem;
  }
}
.cid-tNxljbo0wd .mbr-text,
.cid-tNxljbo0wd .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tNxljbo0wd .card-title,
.cid-tNxljbo0wd .card-box {
  text-align: center;
  color: #000000;
}
.cid-tNxy6UgDdQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tNxy6UgDdQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNxy6UgDdQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNxy6UgDdQ .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tNxy6UgDdQ .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tNxy6UgDdQ .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tNxy6UgDdQ .mbr-section-title {
  color: #131313;
}
.cid-tNxy6UgDdQ .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tNxy6UgDdQ .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tNxy6UgDdQ .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tNxy6UgDdQ .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #000000;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tNxy6UgDdQ .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tNxy6UgDdQ .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tNxy6UgDdQ .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tNxy6UgDdQ .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tNxy6UgDdQ .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tNxy6UgDdQ .card-title {
  color: #131313;
}
.cid-tNxy6UgDdQ .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tNxy6UgDdQ .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tNxy6UgDdQ .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tNxy6UgDdQ .card-link {
    margin-top: 15px;
  }
}
.cid-tNxy6UgDdQ .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tNxy6UgDdQ .card-title,
.cid-tNxy6UgDdQ .iconfont-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-tNxlozEDLg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tNxlozEDLg .mbr-section-subtitle {
  text-align: center;
}
.cid-tNxlozEDLg .mbr-text {
  text-align: left;
}
.cid-tNxx4H6QDJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tNxx4H6QDJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNxx4H6QDJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNxx4H6QDJ .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-tNxx4H6QDJ .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-tNxx4H6QDJ .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-tNxx4H6QDJ .wrapper {
  padding: 30px 0;
}
.cid-tNxx4H6QDJ .mbr-section-title {
  color: #fafafa;
}
.cid-tNxx4H6QDJ .mbr-text,
.cid-tNxx4H6QDJ .mbr-section-btn {
  color: #ffffff;
}
.cid-tNxx4H6QDJ H3 {
  color: #eb1818;
}
.cid-tVVMONYoD9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVMONYoD9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVMONYoD9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVMONYoD9 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tVVMONYoD9 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tVVMONYoD9 .container {
    padding: 0 30px;
  }
}
.cid-tVVMONYoD9 .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tVVMONYoD9 .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tVVMONYoD9 .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #000000;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-tVVMONYoD9 .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tVVMONYoD9 .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-tVVMONYoD9 .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tVVMONYoD9 .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tVVMONYoD9 .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tVVMONYoD9 .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tVVMONYoD9 .mbr-section-title {
  color: #ffffff;
}
.cid-tVVMONYoD9 .mbr-card-title {
  color: #ffffff;
}
.cid-tVVMONYoD9 .mbr-text {
  color: #ffffff;
}
.cid-tVVMONYoD9 .mbr-number {
  color: #FE5115;
}
.cid-sFF3B84VW8 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/business-support10-612x407.jpg");
}
.cid-sFF3B84VW8 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sFF3B84VW8 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #000000;
}
@media (max-width: 991px) {
  .cid-sFF3B84VW8 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFF3B84VW8 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sFF3B84VW8 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #eb1818;
}
.cid-sFF3B84VW8 .mbr-section-title {
  color: #e43f3f;
}
.cid-sFF3B84VW8 .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-tVyIBKm33l {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVM40y37tA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tVM40y37tA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVM40y37tA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVM40y37tA .row {
  margin: 0 !important;
}
.cid-tVM40y37tA .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tVM40y37tA .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tVM40y37tA .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-tVM40y37tA .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-tVM40y37tA .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tVM40y37tA .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tVM40y37tA .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tVM40y37tA .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tVM40y37tA .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-tVM40y37tA .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-tVM40y37tA .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tVM40y37tA .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #fc7942;
  margin-left: 0.5rem;
}
.cid-tVM40y37tA .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #fc7942;
  font-weight: 900;
}
.cid-tVM40y37tA .panel-group {
  border: none;
}
.cid-tVM40y37tA .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-tVM40y37tA .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tVM40y37tA .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tVM40y37tA .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-tVM40y37tA .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-tVM40y37tA .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-tVM40y37tA .panel-title-edit {
  color: #ffffff;
}
.cid-tVM40y37tA .panel-body {
  padding: 0 0 20px;
}
.cid-tVM40y37tA .panel-text {
  color: #131313;
  margin: 0;
}
.cid-tVyIZBgyw4 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVyIZBgyw4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVyIZBgyw4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tVyIZBgyw4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tVyIZBgyw4 .row {
  flex-direction: row-reverse;
}
.cid-tVyIZBgyw4 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tVyIZBgyw4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tNxrdX7gw5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tNxrdX7gw5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNxrdX7gw5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNxrdX7gw5 .google-map {
  height: 30rem;
  position: relative;
}
.cid-tNxrdX7gw5 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tNxrdX7gw5 .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-tNxrdX7gw5 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tNxrdX7gw5 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tNxnCy8pN2 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tNxnCy8pN2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNxnCy8pN2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNxnCy8pN2 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tNxnCy8pN2 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tNxnCy8pN2 .row {
    text-align: center;
  }
  .cid-tNxnCy8pN2 .social-row {
    justify-content: center;
  }
}
.cid-tNxnCy8pN2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tNxnCy8pN2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tNxnCy8pN2 .list {
    margin-bottom: 0rem;
  }
}
.cid-tNxnCy8pN2 .mbr-text {
  color: #bbbbbb;
}
.cid-tNxnCy8pN2 .mbr-iconfont {
  color: black;
}
.cid-tNxnCy8pN2 .copyright {
  color: #ffffff;
}
.cid-tNxnCy8pN2 .mbr-section-subtitle {
  text-align: center;
  color: #2299aa;
}
.cid-tVQy8GkiWM {
  background-color: transparent;
}
.cid-tVQy8GkiWM .navbar-dropdown {
  background-color: #000000 !important;
  padding: 0;
}
.cid-tVQy8GkiWM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #000000 !important;
  background: #000000;
}
.cid-tVQy8GkiWM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVQy8GkiWM .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tVQy8GkiWM .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tVQy8GkiWM .menu_box .navbar.opened,
  .cid-tVQy8GkiWM .menu_box .navbar-collapse {
    background-color: #000000 !important;
    transition: all 0s ease 0s;
  }
}
.cid-tVQy8GkiWM .navbar-dropdown {
  position: relative !important;
}
.cid-tVQy8GkiWM .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tVQy8GkiWM .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tVQy8GkiWM .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tVQy8GkiWM .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tVQy8GkiWM .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tVQy8GkiWM .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #474a48;
  }
  .cid-tVQy8GkiWM .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tVQy8GkiWM .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tVQy8GkiWM .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tVQy8GkiWM .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tVQy8GkiWM .offcanvas-body .mbr-text,
  .cid-tVQy8GkiWM .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tVQy8GkiWM .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tVQy8GkiWM .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tVQy8GkiWM .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #f9f6e0;
  }
  .cid-tVQy8GkiWM .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tVQy8GkiWM .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tVQy8GkiWM .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tVQy8GkiWM .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tVQy8GkiWM ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tVQy8GkiWM .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tVQy8GkiWM .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-tVQy8GkiWM .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tVQy8GkiWM li.nav-item {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
    padding: 4px 20px !important;
    margin: 0;
    border-right: 1px solid #72716b;
  }
  .cid-tVQy8GkiWM .lg_brand {
    margin: 0 1rem;
  }
  .cid-tVQy8GkiWM .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-tVQy8GkiWM .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tVQy8GkiWM .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tVQy8GkiWM .nav-item {
    margin: 0 !important;
  }
}
.cid-tVQy8GkiWM .nav-item .nav-link {
  transition: all 0.5s ease-out;
  position: relative;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tVQy8GkiWM .nav-item .nav-link {
    justify-content: flex-start;
  }
}
.cid-tVQy8GkiWM .nav-item .nav-link::before {
  content: '';
  background-color: #d8c3a5;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  bottom: -12px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.cid-tVQy8GkiWM .nav-item .nav-link:hover,
.cid-tVQy8GkiWM .nav-item .nav-link:focus {
  color: #d8c3a5 !important;
}
.cid-tVQy8GkiWM .nav-item .nav-link:hover::before,
.cid-tVQy8GkiWM .nav-item .nav-link:focus::before {
  opacity: 1;
}
.cid-tVQy8GkiWM .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tVQy8GkiWM .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tVQy8GkiWM .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tVQy8GkiWM .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tVQy8GkiWM .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-tVQy8GkiWM .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tVQy8GkiWM .offcanvas_box {
    display: none;
  }
}
.cid-tVQy8GkiWM .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tVQy8GkiWM .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tVQy8GkiWM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tVQy8GkiWM .container {
  display: flex;
  margin: auto;
}
.cid-tVQy8GkiWM .iconfont-wrapper {
  color: #f9f6e0;
  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-tVQy8GkiWM .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tVQy8GkiWM .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tVQy8GkiWM .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tVQy8GkiWM .navbar-nav {
    margin: 0;
  }
}
.cid-tVQy8GkiWM .dropdown-menu,
.cid-tVQy8GkiWM .navbar.opened {
  background-color: false !important;
}
.cid-tVQy8GkiWM .nav-item:focus,
.cid-tVQy8GkiWM .nav-link:focus {
  outline: none;
}
.cid-tVQy8GkiWM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVQy8GkiWM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVQy8GkiWM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVQy8GkiWM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVQy8GkiWM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVQy8GkiWM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVQy8GkiWM .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tVQy8GkiWM .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tVQy8GkiWM .navbar.opened {
  transition: all 0.3s;
}
.cid-tVQy8GkiWM .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tVQy8GkiWM .navbar .navbar-logo img {
  max-width: 60px;
  min-height: 60px;
  object-fit: contain;
  border-radius: 5px !important;
}
.cid-tVQy8GkiWM .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tVQy8GkiWM .navbar.collapsed {
  justify-content: center;
}
.cid-tVQy8GkiWM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVQy8GkiWM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tVQy8GkiWM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVQy8GkiWM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVQy8GkiWM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVQy8GkiWM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tVQy8GkiWM .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tVQy8GkiWM .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tVQy8GkiWM .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tVQy8GkiWM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVQy8GkiWM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVQy8GkiWM .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tVQy8GkiWM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVQy8GkiWM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tVQy8GkiWM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVQy8GkiWM .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tVQy8GkiWM .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tVQy8GkiWM .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tVQy8GkiWM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tVQy8GkiWM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVQy8GkiWM .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tVQy8GkiWM .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVQy8GkiWM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVQy8GkiWM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVQy8GkiWM .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-tVQy8GkiWM .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tVQy8GkiWM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVQy8GkiWM .dropdown-item.active,
.cid-tVQy8GkiWM .dropdown-item:active {
  background-color: transparent;
}
.cid-tVQy8GkiWM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 2px 10px !important;
}
.cid-tVQy8GkiWM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVQy8GkiWM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVQy8GkiWM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVQy8GkiWM ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tVQy8GkiWM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVQy8GkiWM button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
  background: #353535;
}
.cid-tVQy8GkiWM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #f9f6e0;
}
.cid-tVQy8GkiWM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVQy8GkiWM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVQy8GkiWM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVQy8GkiWM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVQy8GkiWM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVQy8GkiWM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVQy8GkiWM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVQy8GkiWM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVQy8GkiWM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tVQy8GkiWM .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-tVQy8GkiWM .navbar {
    height: 70px;
  }
  .cid-tVQy8GkiWM .navbar.opened {
    height: auto;
  }
  .cid-tVQy8GkiWM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVQy8GkiWM .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tVQy8GkiWM .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.cid-tVQy8GkiWM .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tVQy8GkiWM .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tVQy8GkiWM .mbr-section-btn-main .btn {
  border: none;
  margin: 8px;
  min-width: 200px;
}
.cid-tVQy8GkiWM .navbar-caption:hover {
  color: #eb1818;
}
@media (min-width: 992px) {
  .cid-tVQy8GkiWM .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tVQy8GkiWM .text_widget {
  margin-bottom: 32px;
}
.cid-tVQy8GkiWM .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tVQy8GkiWM .text_widget a:hover,
.cid-tVQy8GkiWM .text_widget a:focus {
  opacity: .6;
}
.cid-tVQy8GkiWM .mbr-section-subtitle {
  color: #F9F6E0;
  text-align: center;
}
.cid-tVQy8GkiWM .navbar-caption {
  color: #F9F6E0;
}
.cid-tVQy8GkiWM .mbr-text {
  color: #F9F6E0;
  text-align: center;
}
.cid-tVQy8GkiWM .mbr-section-subtitle,
.cid-tVQy8GkiWM .text_widget,
.cid-tVQy8GkiWM .mbr-section-btn {
  text-align: center;
}
.cid-tVQy8GkiWM a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tVMs7SHtzI {
  background-image: url("../../../assets/images/business-support77-612x323.jpg");
}
.cid-tVMs7SHtzI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVMs7SHtzI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVMs7Zh4OR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ededed;
}
.cid-tVMs7Zh4OR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVMs7Zh4OR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVMs7Zh4OR .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tVMs7Zh4OR .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tVMs7Zh4OR .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVMs7Zh4OR .card-wrapper {
    padding: 4rem;
  }
}
.cid-tVMs7Zh4OR .mbr-text,
.cid-tVMs7Zh4OR .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tVMs7Zh4OR .card-title,
.cid-tVMs7Zh4OR .card-box {
  text-align: center;
  color: #000000;
}
.cid-tVMs8do5hN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tVMs8do5hN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVMs8do5hN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVMs8do5hN .google-map {
  height: 30rem;
  position: relative;
}
.cid-tVMs8do5hN .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tVMs8do5hN .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-tVMs8do5hN .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tVMs8do5hN .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tVMs8eSP1p {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tVMs8eSP1p .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVMs8eSP1p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVMs8eSP1p .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tVMs8eSP1p .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tVMs8eSP1p .row {
    text-align: center;
  }
  .cid-tVMs8eSP1p .social-row {
    justify-content: center;
  }
}
.cid-tVMs8eSP1p .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tVMs8eSP1p .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVMs8eSP1p .list {
    margin-bottom: 0rem;
  }
}
.cid-tVMs8eSP1p .mbr-text {
  color: #bbbbbb;
}
.cid-tVMs8eSP1p .mbr-iconfont {
  color: black;
}
.cid-tVMs8eSP1p .copyright {
  color: #ffffff;
}
.cid-tVMs8eSP1p .mbr-section-subtitle {
  text-align: center;
  color: #2299aa;
}
.cid-tVQy8GkiWM {
  background-color: transparent;
}
.cid-tVQy8GkiWM .navbar-dropdown {
  background-color: #000000 !important;
  padding: 0;
}
.cid-tVQy8GkiWM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #000000 !important;
  background: #000000;
}
.cid-tVQy8GkiWM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVQy8GkiWM .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tVQy8GkiWM .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tVQy8GkiWM .menu_box .navbar.opened,
  .cid-tVQy8GkiWM .menu_box .navbar-collapse {
    background-color: #000000 !important;
    transition: all 0s ease 0s;
  }
}
.cid-tVQy8GkiWM .navbar-dropdown {
  position: relative !important;
}
.cid-tVQy8GkiWM .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tVQy8GkiWM .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tVQy8GkiWM .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tVQy8GkiWM .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tVQy8GkiWM .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tVQy8GkiWM .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #474a48;
  }
  .cid-tVQy8GkiWM .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tVQy8GkiWM .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tVQy8GkiWM .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tVQy8GkiWM .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tVQy8GkiWM .offcanvas-body .mbr-text,
  .cid-tVQy8GkiWM .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tVQy8GkiWM .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tVQy8GkiWM .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tVQy8GkiWM .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #f9f6e0;
  }
  .cid-tVQy8GkiWM .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tVQy8GkiWM .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tVQy8GkiWM .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tVQy8GkiWM .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tVQy8GkiWM ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tVQy8GkiWM .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tVQy8GkiWM .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-tVQy8GkiWM .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tVQy8GkiWM li.nav-item {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
    padding: 4px 20px !important;
    margin: 0;
    border-right: 1px solid #72716b;
  }
  .cid-tVQy8GkiWM .lg_brand {
    margin: 0 1rem;
  }
  .cid-tVQy8GkiWM .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-tVQy8GkiWM .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tVQy8GkiWM .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tVQy8GkiWM .nav-item {
    margin: 0 !important;
  }
}
.cid-tVQy8GkiWM .nav-item .nav-link {
  transition: all 0.5s ease-out;
  position: relative;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tVQy8GkiWM .nav-item .nav-link {
    justify-content: flex-start;
  }
}
.cid-tVQy8GkiWM .nav-item .nav-link::before {
  content: '';
  background-color: #d8c3a5;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  bottom: -12px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.cid-tVQy8GkiWM .nav-item .nav-link:hover,
.cid-tVQy8GkiWM .nav-item .nav-link:focus {
  color: #d8c3a5 !important;
}
.cid-tVQy8GkiWM .nav-item .nav-link:hover::before,
.cid-tVQy8GkiWM .nav-item .nav-link:focus::before {
  opacity: 1;
}
.cid-tVQy8GkiWM .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tVQy8GkiWM .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tVQy8GkiWM .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tVQy8GkiWM .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tVQy8GkiWM .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-tVQy8GkiWM .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tVQy8GkiWM .offcanvas_box {
    display: none;
  }
}
.cid-tVQy8GkiWM .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tVQy8GkiWM .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tVQy8GkiWM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tVQy8GkiWM .container {
  display: flex;
  margin: auto;
}
.cid-tVQy8GkiWM .iconfont-wrapper {
  color: #f9f6e0;
  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-tVQy8GkiWM .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tVQy8GkiWM .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tVQy8GkiWM .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tVQy8GkiWM .navbar-nav {
    margin: 0;
  }
}
.cid-tVQy8GkiWM .dropdown-menu,
.cid-tVQy8GkiWM .navbar.opened {
  background-color: false !important;
}
.cid-tVQy8GkiWM .nav-item:focus,
.cid-tVQy8GkiWM .nav-link:focus {
  outline: none;
}
.cid-tVQy8GkiWM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVQy8GkiWM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVQy8GkiWM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVQy8GkiWM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVQy8GkiWM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVQy8GkiWM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVQy8GkiWM .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tVQy8GkiWM .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tVQy8GkiWM .navbar.opened {
  transition: all 0.3s;
}
.cid-tVQy8GkiWM .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tVQy8GkiWM .navbar .navbar-logo img {
  max-width: 60px;
  min-height: 60px;
  object-fit: contain;
  border-radius: 5px !important;
}
.cid-tVQy8GkiWM .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tVQy8GkiWM .navbar.collapsed {
  justify-content: center;
}
.cid-tVQy8GkiWM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVQy8GkiWM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tVQy8GkiWM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVQy8GkiWM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVQy8GkiWM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVQy8GkiWM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tVQy8GkiWM .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tVQy8GkiWM .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tVQy8GkiWM .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tVQy8GkiWM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVQy8GkiWM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVQy8GkiWM .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tVQy8GkiWM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVQy8GkiWM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tVQy8GkiWM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVQy8GkiWM .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tVQy8GkiWM .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tVQy8GkiWM .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tVQy8GkiWM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tVQy8GkiWM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVQy8GkiWM .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tVQy8GkiWM .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVQy8GkiWM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVQy8GkiWM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVQy8GkiWM .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-tVQy8GkiWM .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tVQy8GkiWM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVQy8GkiWM .dropdown-item.active,
.cid-tVQy8GkiWM .dropdown-item:active {
  background-color: transparent;
}
.cid-tVQy8GkiWM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 2px 10px !important;
}
.cid-tVQy8GkiWM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVQy8GkiWM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVQy8GkiWM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVQy8GkiWM ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tVQy8GkiWM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVQy8GkiWM button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
  background: #353535;
}
.cid-tVQy8GkiWM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #f9f6e0;
}
.cid-tVQy8GkiWM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVQy8GkiWM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVQy8GkiWM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVQy8GkiWM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVQy8GkiWM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVQy8GkiWM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVQy8GkiWM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVQy8GkiWM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVQy8GkiWM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tVQy8GkiWM .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-tVQy8GkiWM .navbar {
    height: 70px;
  }
  .cid-tVQy8GkiWM .navbar.opened {
    height: auto;
  }
  .cid-tVQy8GkiWM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVQy8GkiWM .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tVQy8GkiWM .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.cid-tVQy8GkiWM .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tVQy8GkiWM .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tVQy8GkiWM .mbr-section-btn-main .btn {
  border: none;
  margin: 8px;
  min-width: 200px;
}
.cid-tVQy8GkiWM .navbar-caption:hover {
  color: #eb1818;
}
@media (min-width: 992px) {
  .cid-tVQy8GkiWM .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tVQy8GkiWM .text_widget {
  margin-bottom: 32px;
}
.cid-tVQy8GkiWM .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tVQy8GkiWM .text_widget a:hover,
.cid-tVQy8GkiWM .text_widget a:focus {
  opacity: .6;
}
.cid-tVQy8GkiWM .mbr-section-subtitle {
  color: #F9F6E0;
  text-align: center;
}
.cid-tVQy8GkiWM .navbar-caption {
  color: #F9F6E0;
}
.cid-tVQy8GkiWM .mbr-text {
  color: #F9F6E0;
  text-align: center;
}
.cid-tVQy8GkiWM .mbr-section-subtitle,
.cid-tVQy8GkiWM .text_widget,
.cid-tVQy8GkiWM .mbr-section-btn {
  text-align: center;
}
.cid-tVQy8GkiWM a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tVMsXPz5s8 {
  background-image: url("../../../assets/images/business-support-22-612x388.jpg");
}
.cid-tVMsXPz5s8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVMsXPz5s8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVMsXQKA5M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ededed;
}
.cid-tVMsXQKA5M .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVMsXQKA5M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVMsXQKA5M .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tVMsXQKA5M .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tVMsXQKA5M .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVMsXQKA5M .card-wrapper {
    padding: 4rem;
  }
}
.cid-tVMsXQKA5M .mbr-text,
.cid-tVMsXQKA5M .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tVMsXQKA5M .card-title,
.cid-tVMsXQKA5M .card-box {
  text-align: center;
  color: #000000;
}
.cid-tVMsXRGoo2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tVMsXRGoo2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVMsXRGoo2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVMsXRGoo2 .google-map {
  height: 30rem;
  position: relative;
}
.cid-tVMsXRGoo2 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tVMsXRGoo2 .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-tVMsXRGoo2 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tVMsXRGoo2 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tVMsXSDnRi {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tVMsXSDnRi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVMsXSDnRi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVMsXSDnRi .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tVMsXSDnRi .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tVMsXSDnRi .row {
    text-align: center;
  }
  .cid-tVMsXSDnRi .social-row {
    justify-content: center;
  }
}
.cid-tVMsXSDnRi .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tVMsXSDnRi .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVMsXSDnRi .list {
    margin-bottom: 0rem;
  }
}
.cid-tVMsXSDnRi .mbr-text {
  color: #bbbbbb;
}
.cid-tVMsXSDnRi .mbr-iconfont {
  color: black;
}
.cid-tVMsXSDnRi .copyright {
  color: #ffffff;
}
.cid-tVMsXSDnRi .mbr-section-subtitle {
  text-align: center;
  color: #2299aa;
}
.cid-tVVOoWczoI {
  background-color: transparent;
}
.cid-tVVOoWczoI .navbar-dropdown {
  background-color: #000000 !important;
  padding: 0;
}
.cid-tVVOoWczoI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #000000 !important;
  background: #000000;
}
.cid-tVVOoWczoI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVVOoWczoI .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tVVOoWczoI .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tVVOoWczoI .menu_box .navbar.opened,
  .cid-tVVOoWczoI .menu_box .navbar-collapse {
    background-color: #000000 !important;
    transition: all 0s ease 0s;
  }
}
.cid-tVVOoWczoI .navbar-dropdown {
  position: relative !important;
}
.cid-tVVOoWczoI .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tVVOoWczoI .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tVVOoWczoI .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tVVOoWczoI .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tVVOoWczoI .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tVVOoWczoI .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #474a48;
  }
  .cid-tVVOoWczoI .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tVVOoWczoI .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tVVOoWczoI .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tVVOoWczoI .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tVVOoWczoI .offcanvas-body .mbr-text,
  .cid-tVVOoWczoI .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tVVOoWczoI .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tVVOoWczoI .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tVVOoWczoI .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #f9f6e0;
  }
  .cid-tVVOoWczoI .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tVVOoWczoI .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tVVOoWczoI .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tVVOoWczoI .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tVVOoWczoI ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tVVOoWczoI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tVVOoWczoI .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-tVVOoWczoI .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tVVOoWczoI li.nav-item {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
    padding: 4px 20px !important;
    margin: 0;
    border-right: 1px solid #72716b;
  }
  .cid-tVVOoWczoI .lg_brand {
    margin: 0 1rem;
  }
  .cid-tVVOoWczoI .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-tVVOoWczoI .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tVVOoWczoI .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tVVOoWczoI .nav-item {
    margin: 0 !important;
  }
}
.cid-tVVOoWczoI .nav-item .nav-link {
  transition: all 0.5s ease-out;
  position: relative;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tVVOoWczoI .nav-item .nav-link {
    justify-content: flex-start;
  }
}
.cid-tVVOoWczoI .nav-item .nav-link::before {
  content: '';
  background-color: #d8c3a5;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  bottom: -12px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.cid-tVVOoWczoI .nav-item .nav-link:hover,
.cid-tVVOoWczoI .nav-item .nav-link:focus {
  color: #d8c3a5 !important;
}
.cid-tVVOoWczoI .nav-item .nav-link:hover::before,
.cid-tVVOoWczoI .nav-item .nav-link:focus::before {
  opacity: 1;
}
.cid-tVVOoWczoI .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tVVOoWczoI .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tVVOoWczoI .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tVVOoWczoI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tVVOoWczoI .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-tVVOoWczoI .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tVVOoWczoI .offcanvas_box {
    display: none;
  }
}
.cid-tVVOoWczoI .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tVVOoWczoI .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tVVOoWczoI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tVVOoWczoI .container {
  display: flex;
  margin: auto;
}
.cid-tVVOoWczoI .iconfont-wrapper {
  color: #f9f6e0;
  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-tVVOoWczoI .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tVVOoWczoI .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tVVOoWczoI .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tVVOoWczoI .navbar-nav {
    margin: 0;
  }
}
.cid-tVVOoWczoI .dropdown-menu,
.cid-tVVOoWczoI .navbar.opened {
  background-color: false !important;
}
.cid-tVVOoWczoI .nav-item:focus,
.cid-tVVOoWczoI .nav-link:focus {
  outline: none;
}
.cid-tVVOoWczoI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVVOoWczoI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVVOoWczoI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVVOoWczoI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVVOoWczoI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVVOoWczoI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVVOoWczoI .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tVVOoWczoI .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tVVOoWczoI .navbar.opened {
  transition: all 0.3s;
}
.cid-tVVOoWczoI .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tVVOoWczoI .navbar .navbar-logo img {
  max-width: 60px;
  min-height: 60px;
  object-fit: contain;
  border-radius: 5px !important;
}
.cid-tVVOoWczoI .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tVVOoWczoI .navbar.collapsed {
  justify-content: center;
}
.cid-tVVOoWczoI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVVOoWczoI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tVVOoWczoI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVVOoWczoI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVVOoWczoI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVVOoWczoI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tVVOoWczoI .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tVVOoWczoI .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tVVOoWczoI .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tVVOoWczoI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVVOoWczoI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVVOoWczoI .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tVVOoWczoI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVVOoWczoI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tVVOoWczoI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVVOoWczoI .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tVVOoWczoI .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tVVOoWczoI .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tVVOoWczoI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tVVOoWczoI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVVOoWczoI .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tVVOoWczoI .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVVOoWczoI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVVOoWczoI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVVOoWczoI .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-tVVOoWczoI .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tVVOoWczoI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVVOoWczoI .dropdown-item.active,
.cid-tVVOoWczoI .dropdown-item:active {
  background-color: transparent;
}
.cid-tVVOoWczoI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 2px 10px !important;
}
.cid-tVVOoWczoI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVVOoWczoI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVVOoWczoI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVVOoWczoI ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tVVOoWczoI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVVOoWczoI button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
  background: #353535;
}
.cid-tVVOoWczoI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #f9f6e0;
}
.cid-tVVOoWczoI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVVOoWczoI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVVOoWczoI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVVOoWczoI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVVOoWczoI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVVOoWczoI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVVOoWczoI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVVOoWczoI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVVOoWczoI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tVVOoWczoI .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-tVVOoWczoI .navbar {
    height: 70px;
  }
  .cid-tVVOoWczoI .navbar.opened {
    height: auto;
  }
  .cid-tVVOoWczoI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVVOoWczoI .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tVVOoWczoI .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.cid-tVVOoWczoI .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tVVOoWczoI .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tVVOoWczoI .mbr-section-btn-main .btn {
  border: none;
  margin: 8px;
  min-width: 200px;
}
.cid-tVVOoWczoI .navbar-caption:hover {
  color: #eb1818;
}
@media (min-width: 992px) {
  .cid-tVVOoWczoI .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tVVOoWczoI .text_widget {
  margin-bottom: 32px;
}
.cid-tVVOoWczoI .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tVVOoWczoI .text_widget a:hover,
.cid-tVVOoWczoI .text_widget a:focus {
  opacity: .6;
}
.cid-tVVOoWczoI .mbr-section-subtitle {
  color: #F9F6E0;
  text-align: center;
}
.cid-tVVOoWczoI .navbar-caption {
  color: #F9F6E0;
}
.cid-tVVOoWczoI .mbr-text {
  color: #F9F6E0;
  text-align: center;
}
.cid-tVVOoWczoI .mbr-section-subtitle,
.cid-tVVOoWczoI .text_widget,
.cid-tVVOoWczoI .mbr-section-btn {
  text-align: center;
}
.cid-tVVOoWczoI a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tVVOoX4X8j {
  display: flex;
  background-image: url("../../../assets/images/business-support9-612x408.jpg");
}
.cid-tVVOoX4X8j .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tVVOoX4X8j .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tVVOoX4X8j {
    align-items: flex-end;
  }
  .cid-tVVOoX4X8j .row {
    justify-content: flex-start;
  }
  .cid-tVVOoX4X8j .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tVVOoX4X8j .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tVVOoX4X8j {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tVVOoX4X8j .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tVVOoX4X8j .content-wrap {
    width: 100%;
  }
}
.cid-tVVOoXFbht {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVOoXFbht blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #000000;
}
.cid-tVVOoXFbht .mbr-section-title {
  color: #ffffff;
}
.cid-tVVOoZJ18C {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tVVOoZJ18C .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVOoZJ18C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVOoZJ18C .container-fluid {
  max-width: 100% !important;
}
.cid-tVVOoZJ18C .img-wrap {
  width: 100%;
  height: 100%;
}
.cid-tVVOoZJ18C .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tVVOoZJ18C .text-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 55px 62px 70px 62px;
}
@media (max-width: 1439px) {
  .cid-tVVOoZJ18C .text-wrap {
    padding: 40px 45px 50px 45px;
  }
}
@media (max-width: 991px) {
  .cid-tVVOoZJ18C .text-wrap {
    padding: 25px 30px 30px 30px;
  }
}
@media (max-width: 767px) {
  .cid-tVVOoZJ18C .text-wrap {
    padding: 40px 25px 45px 25px;
  }
}
.cid-tVVOoZJ18C .mbr-section-title {
  color: #303030;
}
.cid-tVVOoZJ18C .text-bottom {
  margin-top: auto;
  padding-top: 25px;
}
@media (max-width: 767px) {
  .cid-tVVOoZJ18C .text-bottom {
    padding-top: 70px;
  }
}
@media (max-width: 575px) {
  .cid-tVVOoZJ18C .text-bottom {
    padding-top: 50px;
  }
}
.cid-tVVOoZJ18C .mbr-text {
  color: #303030;
}
.cid-tVVOoZJ18C .mbr-section-btn {
  margin-top: 16px;
}
.cid-tVVOoZJ18C .mbr-text,
.cid-tVVOoZJ18C .mbr-section-btn {
  text-align: center;
}
.cid-tVVOoYfyTw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tVVOoYfyTw .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tVVOoYfyTw .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-tVVOp1nyQS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVOp1nyQS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVOp1nyQS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVOp1nyQS .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tVVOp1nyQS .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tVVOp1nyQS .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tVVOp1nyQS .mbr-section-title {
  color: #131313;
}
.cid-tVVOp1nyQS .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tVVOp1nyQS .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tVVOp1nyQS .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tVVOp1nyQS .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #000000;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tVVOp1nyQS .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tVVOp1nyQS .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tVVOp1nyQS .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tVVOp1nyQS .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tVVOp1nyQS .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tVVOp1nyQS .card-title {
  color: #131313;
}
.cid-tVVOp1nyQS .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tVVOp1nyQS .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tVVOp1nyQS .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tVVOp1nyQS .card-link {
    margin-top: 15px;
  }
}
.cid-tVVOp1nyQS .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tVVOp1nyQS .card-title,
.cid-tVVOp1nyQS .iconfont-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-tVVPtN8ncI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVPtN8ncI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVPtN8ncI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVPtN8ncI .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tVVPtN8ncI .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tVVPtN8ncI .container {
    padding: 0 30px;
  }
}
.cid-tVVPtN8ncI .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tVVPtN8ncI .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tVVPtN8ncI .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #000000;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-tVVPtN8ncI .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tVVPtN8ncI .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-tVVPtN8ncI .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tVVPtN8ncI .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tVVPtN8ncI .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tVVPtN8ncI .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tVVPtN8ncI .mbr-section-title {
  color: #ffffff;
}
.cid-tVVPtN8ncI .mbr-card-title {
  color: #ffffff;
}
.cid-tVVPtN8ncI .mbr-text {
  color: #ffffff;
}
.cid-tVVPtN8ncI .mbr-number {
  color: #FE5115;
}
.cid-tVVOp59zqK {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/business-support-1200x801.jpg");
}
.cid-tVVOp59zqK .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tVVOp59zqK .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #000000;
}
@media (max-width: 991px) {
  .cid-tVVOp59zqK .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVVOp59zqK .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tVVOp59zqK .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #eb1818;
}
.cid-tVVOp59zqK .mbr-section-title {
  color: #e43f3f;
}
.cid-tVVOp59zqK .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-tVVOp0Bl4J {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVOp0Bl4J .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVOp0Bl4J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVOp0Bl4J .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tVVOp0Bl4J .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tVVOp0Bl4J .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVVOp0Bl4J .card-wrapper {
    padding: 4rem;
  }
}
.cid-tVVOp0Bl4J .mbr-text,
.cid-tVVOp0Bl4J .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tVVOp0Bl4J .card-title,
.cid-tVVOp0Bl4J .card-box {
  text-align: center;
  color: #000000;
}
.cid-tVVOp3gzl7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tVVOp3gzl7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVOp3gzl7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVOp3gzl7 .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-tVVOp3gzl7 .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-tVVOp3gzl7 .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-tVVOp3gzl7 .wrapper {
  padding: 30px 0;
}
.cid-tVVOp3gzl7 .mbr-section-title {
  color: #fafafa;
}
.cid-tVVOp3gzl7 .mbr-text,
.cid-tVVOp3gzl7 .mbr-section-btn {
  color: #ffffff;
}
.cid-tVVOp3gzl7 H3 {
  color: #eb1818;
}
.cid-tVVOp2t3th {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVOp2t3th .mbr-section-subtitle {
  text-align: center;
}
.cid-tVVOp2t3th .mbr-text {
  text-align: left;
}
.cid-tVVRyniCEM {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVRyniCEM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVRyniCEM .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-tVVRyniCEM .container {
    padding: 0 20px;
  }
}
.cid-tVVRyniCEM .row {
  margin: 0;
}
.cid-tVVRyniCEM .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tVVRyniCEM .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tVVRyniCEM .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-tVVRyniCEM .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-tVVRyniCEM .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tVVRyniCEM .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-tVVRyniCEM .mbr-section-title {
  color: #010101;
  text-align: center;
}
.cid-tVVOp4iRhU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVOp4iRhU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVOp4iRhU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVOp4iRhU .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tVVOp4iRhU .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tVVOp4iRhU .container {
    padding: 0 30px;
  }
}
.cid-tVVOp4iRhU .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tVVOp4iRhU .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tVVOp4iRhU .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #000000;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-tVVOp4iRhU .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tVVOp4iRhU .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-tVVOp4iRhU .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tVVOp4iRhU .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tVVOp4iRhU .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tVVOp4iRhU .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tVVOp4iRhU .mbr-section-title {
  color: #ffffff;
}
.cid-tVVOp4iRhU .mbr-card-title {
  color: #ffffff;
}
.cid-tVVOp4iRhU .mbr-text {
  color: #ffffff;
}
.cid-tVVOp4iRhU .mbr-number {
  color: #FE5115;
}
.cid-tVVOp6onFf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVOp7kuGu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tVVOp7kuGu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVOp7kuGu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVOp7kuGu .row {
  margin: 0 !important;
}
.cid-tVVOp7kuGu .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tVVOp7kuGu .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tVVOp7kuGu .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-tVVOp7kuGu .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-tVVOp7kuGu .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tVVOp7kuGu .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tVVOp7kuGu .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tVVOp7kuGu .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tVVOp7kuGu .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-tVVOp7kuGu .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-tVVOp7kuGu .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tVVOp7kuGu .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #fc7942;
  margin-left: 0.5rem;
}
.cid-tVVOp7kuGu .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #fc7942;
  font-weight: 900;
}
.cid-tVVOp7kuGu .panel-group {
  border: none;
}
.cid-tVVOp7kuGu .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-tVVOp7kuGu .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tVVOp7kuGu .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tVVOp7kuGu .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-tVVOp7kuGu .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-tVVOp7kuGu .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-tVVOp7kuGu .panel-title-edit {
  color: #ffffff;
}
.cid-tVVOp7kuGu .panel-body {
  padding: 0 0 20px;
}
.cid-tVVOp7kuGu .panel-text {
  color: #131313;
  margin: 0;
}
.cid-tVVOp8wBHj {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVOp8wBHj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVOp8wBHj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tVVOp8wBHj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tVVOp8wBHj .row {
  flex-direction: row-reverse;
}
.cid-tVVOp8wBHj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tVVOp8wBHj .text-wrapper {
    padding: 2rem;
  }
}
.cid-tVVRh55Pub {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVRh55Pub .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVRh55Pub .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVRh55Pub .title-wrapper {
  padding: 96px 10px;
  background-color: #000000;
}
@media (max-width: 992px) {
  .cid-tVVRh55Pub .title-wrapper {
    padding: 60px 10px;
  }
}
@media (max-width: 768px) {
  .cid-tVVRh55Pub .title-wrapper {
    padding: 40px 10px;
  }
}
.cid-tVVRh55Pub .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tVVRh55Pub .panel-group {
  padding: 40px 10px 10px 10px;
}
.cid-tVVRh55Pub .panel-group .card {
  border-bottom: 1px solid #e2e2e2;
  border-radius: 0;
}
.cid-tVVRh55Pub .panel-group .card .card-header {
  padding: 15px 10px 15px 5px;
  background-color: transparent;
  border: none;
}
.cid-tVVRh55Pub .panel-group .card .card-header .panel-title {
  display: flex;
}
.cid-tVVRh55Pub .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont,
.cid-tVVRh55Pub .panel-group .card .card-header .panel-title:hover .icon-wrapper .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-tVVRh55Pub .panel-group .card .card-header .panel-title .icon-wrapper {
  min-width: 36px;
  width: 36px;
  height: 36px;
  background-color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-tVVRh55Pub .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #ffffff;
  transition: all .3s ease;
}
.cid-tVVRh55Pub .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-left: 26px;
  margin-bottom: 0;
}
.cid-tVVRh55Pub .panel-group .card .panel-collapse .panel-body {
  padding: 0 0 30px 66px;
}
.cid-tVVRh55Pub .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tVVRh55Pub .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tVVRh55Pub .panel-title-edit {
  color: #000000;
}
.cid-tVVRh55Pub .panel-text {
  color: #747474;
}
.cid-tVVRh55Pub .mbr-section-title,
.cid-tVVRh55Pub .mbr-section-btn {
  color: #ffffff;
}
.cid-tVVOp9obnq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tVVOp9obnq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVOp9obnq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVOp9obnq .google-map {
  height: 30rem;
  position: relative;
}
.cid-tVVOp9obnq .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tVVOp9obnq .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-tVVOp9obnq .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tVVOp9obnq .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tVVOpad0Sh {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tVVOpad0Sh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVOpad0Sh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVOpad0Sh .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tVVOpad0Sh .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tVVOpad0Sh .row {
    text-align: center;
  }
  .cid-tVVOpad0Sh .social-row {
    justify-content: center;
  }
}
.cid-tVVOpad0Sh .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tVVOpad0Sh .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVVOpad0Sh .list {
    margin-bottom: 0rem;
  }
}
.cid-tVVOpad0Sh .mbr-text {
  color: #bbbbbb;
}
.cid-tVVOpad0Sh .mbr-iconfont {
  color: black;
}
.cid-tVVOpad0Sh .copyright {
  color: #ffffff;
}
.cid-tVVOpad0Sh .mbr-section-subtitle {
  text-align: center;
  color: #2299aa;
}
.cid-tVVRPUklTF {
  background-color: transparent;
}
.cid-tVVRPUklTF .navbar-dropdown {
  background-color: #000000 !important;
  padding: 0;
}
.cid-tVVRPUklTF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #000000 !important;
  background: #000000;
}
.cid-tVVRPUklTF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVVRPUklTF .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tVVRPUklTF .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tVVRPUklTF .menu_box .navbar.opened,
  .cid-tVVRPUklTF .menu_box .navbar-collapse {
    background-color: #000000 !important;
    transition: all 0s ease 0s;
  }
}
.cid-tVVRPUklTF .navbar-dropdown {
  position: relative !important;
}
.cid-tVVRPUklTF .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tVVRPUklTF .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tVVRPUklTF .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tVVRPUklTF .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tVVRPUklTF .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tVVRPUklTF .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #474a48;
  }
  .cid-tVVRPUklTF .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tVVRPUklTF .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tVVRPUklTF .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tVVRPUklTF .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tVVRPUklTF .offcanvas-body .mbr-text,
  .cid-tVVRPUklTF .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tVVRPUklTF .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tVVRPUklTF .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tVVRPUklTF .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #f9f6e0;
  }
  .cid-tVVRPUklTF .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tVVRPUklTF .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tVVRPUklTF .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tVVRPUklTF .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tVVRPUklTF ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tVVRPUklTF .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tVVRPUklTF .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-tVVRPUklTF .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tVVRPUklTF li.nav-item {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
    padding: 4px 20px !important;
    margin: 0;
    border-right: 1px solid #72716b;
  }
  .cid-tVVRPUklTF .lg_brand {
    margin: 0 1rem;
  }
  .cid-tVVRPUklTF .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-tVVRPUklTF .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tVVRPUklTF .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tVVRPUklTF .nav-item {
    margin: 0 !important;
  }
}
.cid-tVVRPUklTF .nav-item .nav-link {
  transition: all 0.5s ease-out;
  position: relative;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tVVRPUklTF .nav-item .nav-link {
    justify-content: flex-start;
  }
}
.cid-tVVRPUklTF .nav-item .nav-link::before {
  content: '';
  background-color: #d8c3a5;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  bottom: -12px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.cid-tVVRPUklTF .nav-item .nav-link:hover,
.cid-tVVRPUklTF .nav-item .nav-link:focus {
  color: #d8c3a5 !important;
}
.cid-tVVRPUklTF .nav-item .nav-link:hover::before,
.cid-tVVRPUklTF .nav-item .nav-link:focus::before {
  opacity: 1;
}
.cid-tVVRPUklTF .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tVVRPUklTF .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tVVRPUklTF .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tVVRPUklTF .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tVVRPUklTF .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-tVVRPUklTF .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tVVRPUklTF .offcanvas_box {
    display: none;
  }
}
.cid-tVVRPUklTF .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tVVRPUklTF .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tVVRPUklTF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tVVRPUklTF .container {
  display: flex;
  margin: auto;
}
.cid-tVVRPUklTF .iconfont-wrapper {
  color: #f9f6e0;
  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-tVVRPUklTF .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tVVRPUklTF .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tVVRPUklTF .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tVVRPUklTF .navbar-nav {
    margin: 0;
  }
}
.cid-tVVRPUklTF .dropdown-menu,
.cid-tVVRPUklTF .navbar.opened {
  background-color: false !important;
}
.cid-tVVRPUklTF .nav-item:focus,
.cid-tVVRPUklTF .nav-link:focus {
  outline: none;
}
.cid-tVVRPUklTF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVVRPUklTF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVVRPUklTF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVVRPUklTF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVVRPUklTF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVVRPUklTF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVVRPUklTF .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tVVRPUklTF .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tVVRPUklTF .navbar.opened {
  transition: all 0.3s;
}
.cid-tVVRPUklTF .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tVVRPUklTF .navbar .navbar-logo img {
  max-width: 60px;
  min-height: 60px;
  object-fit: contain;
  border-radius: 5px !important;
}
.cid-tVVRPUklTF .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tVVRPUklTF .navbar.collapsed {
  justify-content: center;
}
.cid-tVVRPUklTF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVVRPUklTF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tVVRPUklTF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVVRPUklTF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVVRPUklTF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVVRPUklTF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tVVRPUklTF .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tVVRPUklTF .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tVVRPUklTF .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tVVRPUklTF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVVRPUklTF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVVRPUklTF .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tVVRPUklTF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVVRPUklTF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tVVRPUklTF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVVRPUklTF .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tVVRPUklTF .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tVVRPUklTF .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tVVRPUklTF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tVVRPUklTF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVVRPUklTF .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tVVRPUklTF .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVVRPUklTF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVVRPUklTF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVVRPUklTF .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-tVVRPUklTF .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tVVRPUklTF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVVRPUklTF .dropdown-item.active,
.cid-tVVRPUklTF .dropdown-item:active {
  background-color: transparent;
}
.cid-tVVRPUklTF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 2px 10px !important;
}
.cid-tVVRPUklTF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVVRPUklTF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVVRPUklTF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVVRPUklTF ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tVVRPUklTF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVVRPUklTF button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
  background: #353535;
}
.cid-tVVRPUklTF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #f9f6e0;
}
.cid-tVVRPUklTF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVVRPUklTF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVVRPUklTF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVVRPUklTF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVVRPUklTF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVVRPUklTF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVVRPUklTF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVVRPUklTF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVVRPUklTF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tVVRPUklTF .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-tVVRPUklTF .navbar {
    height: 70px;
  }
  .cid-tVVRPUklTF .navbar.opened {
    height: auto;
  }
  .cid-tVVRPUklTF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVVRPUklTF .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tVVRPUklTF .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.cid-tVVRPUklTF .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tVVRPUklTF .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tVVRPUklTF .mbr-section-btn-main .btn {
  border: none;
  margin: 8px;
  min-width: 200px;
}
.cid-tVVRPUklTF .navbar-caption:hover {
  color: #eb1818;
}
@media (min-width: 992px) {
  .cid-tVVRPUklTF .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tVVRPUklTF .text_widget {
  margin-bottom: 32px;
}
.cid-tVVRPUklTF .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tVVRPUklTF .text_widget a:hover,
.cid-tVVRPUklTF .text_widget a:focus {
  opacity: .6;
}
.cid-tVVRPUklTF .mbr-section-subtitle {
  color: #F9F6E0;
  text-align: center;
}
.cid-tVVRPUklTF .navbar-caption {
  color: #F9F6E0;
}
.cid-tVVRPUklTF .mbr-text {
  color: #F9F6E0;
  text-align: center;
}
.cid-tVVRPUklTF .mbr-section-subtitle,
.cid-tVVRPUklTF .text_widget,
.cid-tVVRPUklTF .mbr-section-btn {
  text-align: center;
}
.cid-tVVRPUklTF a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tVVRPVVutG {
  display: flex;
  background-image: url("../../../assets/images/guildford-business-support13-612x408.jpg");
}
.cid-tVVRPVVutG .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tVVRPVVutG .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tVVRPVVutG {
    align-items: flex-end;
  }
  .cid-tVVRPVVutG .row {
    justify-content: flex-start;
  }
  .cid-tVVRPVVutG .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tVVRPVVutG .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tVVRPVVutG {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tVVRPVVutG .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tVVRPVVutG .content-wrap {
    width: 100%;
  }
}
.cid-tVVRPXa4PR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVRPXa4PR blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #000000;
}
.cid-tVVRPXa4PR .mbr-section-title {
  color: #ffffff;
}
.cid-tVVRPYxsfF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tVVRPYxsfF .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tVVRPYxsfF .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-tVVRPXP9uj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tVVRPXP9uj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVRPXP9uj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVRPXP9uj .container-fluid {
  max-width: 100% !important;
}
.cid-tVVRPXP9uj .img-wrap {
  width: 100%;
  height: 100%;
}
.cid-tVVRPXP9uj .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tVVRPXP9uj .text-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 55px 62px 70px 62px;
}
@media (max-width: 1439px) {
  .cid-tVVRPXP9uj .text-wrap {
    padding: 40px 45px 50px 45px;
  }
}
@media (max-width: 991px) {
  .cid-tVVRPXP9uj .text-wrap {
    padding: 25px 30px 30px 30px;
  }
}
@media (max-width: 767px) {
  .cid-tVVRPXP9uj .text-wrap {
    padding: 40px 25px 45px 25px;
  }
}
.cid-tVVRPXP9uj .mbr-section-title {
  color: #303030;
}
.cid-tVVRPXP9uj .text-bottom {
  margin-top: auto;
  padding-top: 25px;
}
@media (max-width: 767px) {
  .cid-tVVRPXP9uj .text-bottom {
    padding-top: 70px;
  }
}
@media (max-width: 575px) {
  .cid-tVVRPXP9uj .text-bottom {
    padding-top: 50px;
  }
}
.cid-tVVRPXP9uj .mbr-text {
  color: #303030;
}
.cid-tVVRPXP9uj .mbr-section-btn {
  margin-top: 16px;
}
.cid-tVVRPXP9uj .mbr-text,
.cid-tVVRPXP9uj .mbr-section-btn {
  text-align: center;
}
.cid-tVVRQ06h7Z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVRQ06h7Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVRQ06h7Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVRQ06h7Z .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tVVRQ06h7Z .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tVVRQ06h7Z .container {
    padding: 0 30px;
  }
}
.cid-tVVRQ06h7Z .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tVVRQ06h7Z .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tVVRQ06h7Z .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #000000;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-tVVRQ06h7Z .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tVVRQ06h7Z .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-tVVRQ06h7Z .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tVVRQ06h7Z .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tVVRQ06h7Z .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tVVRQ06h7Z .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tVVRQ06h7Z .mbr-section-title {
  color: #ffffff;
}
.cid-tVVRQ06h7Z .mbr-card-title {
  color: #ffffff;
}
.cid-tVVRQ06h7Z .mbr-text {
  color: #ffffff;
}
.cid-tVVRQ06h7Z .mbr-number {
  color: #FE5115;
}
.cid-tVVRQ0OZJp {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/guildford-business-support18-612x344.jpg");
}
.cid-tVVRQ0OZJp .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tVVRQ0OZJp .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #000000;
}
@media (max-width: 991px) {
  .cid-tVVRQ0OZJp .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVVRQ0OZJp .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tVVRQ0OZJp .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #eb1818;
}
.cid-tVVRQ0OZJp .mbr-section-title {
  color: #e43f3f;
}
.cid-tVVRQ0OZJp .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-tVVRQ1VmnF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVRQ1VmnF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVRQ1VmnF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVRQ1VmnF .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tVVRQ1VmnF .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tVVRQ1VmnF .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVVRQ1VmnF .card-wrapper {
    padding: 4rem;
  }
}
.cid-tVVRQ1VmnF .mbr-text,
.cid-tVVRQ1VmnF .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tVVRQ1VmnF .card-title,
.cid-tVVRQ1VmnF .card-box {
  text-align: center;
  color: #000000;
}
.cid-tVVRQ2Qg26 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tVVRQ2Qg26 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVRQ2Qg26 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVRQ2Qg26 .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-tVVRQ2Qg26 .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-tVVRQ2Qg26 .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-tVVRQ2Qg26 .wrapper {
  padding: 30px 0;
}
.cid-tVVRQ2Qg26 .mbr-section-title {
  color: #fafafa;
}
.cid-tVVRQ2Qg26 .mbr-text,
.cid-tVVRQ2Qg26 .mbr-section-btn {
  color: #ffffff;
}
.cid-tVVRQ2Qg26 H3 {
  color: #eb1818;
}
.cid-tVVRQ3L5LE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVRQ3L5LE .mbr-section-subtitle {
  text-align: center;
}
.cid-tVVRQ3L5LE .mbr-text {
  text-align: left;
}
.cid-tVVRPZbe5U {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVRPZbe5U .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVRPZbe5U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVRPZbe5U .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tVVRPZbe5U .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tVVRPZbe5U .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tVVRPZbe5U .mbr-section-title {
  color: #131313;
}
.cid-tVVRPZbe5U .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tVVRPZbe5U .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tVVRPZbe5U .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tVVRPZbe5U .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #000000;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tVVRPZbe5U .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tVVRPZbe5U .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tVVRPZbe5U .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tVVRPZbe5U .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tVVRPZbe5U .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tVVRPZbe5U .card-title {
  color: #131313;
}
.cid-tVVRPZbe5U .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tVVRPZbe5U .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tVVRPZbe5U .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tVVRPZbe5U .card-link {
    margin-top: 15px;
  }
}
.cid-tVVRPZbe5U .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tVVRPZbe5U .card-title,
.cid-tVVRPZbe5U .iconfont-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-tVVRQ5tiLI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVRQ5tiLI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVRQ5tiLI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVRQ5tiLI .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tVVRQ5tiLI .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tVVRQ5tiLI .container {
    padding: 0 30px;
  }
}
.cid-tVVRQ5tiLI .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tVVRQ5tiLI .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tVVRQ5tiLI .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #000000;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-tVVRQ5tiLI .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tVVRQ5tiLI .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-tVVRQ5tiLI .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tVVRQ5tiLI .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tVVRQ5tiLI .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tVVRQ5tiLI .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tVVRQ5tiLI .mbr-section-title {
  color: #000000;
}
.cid-tVVRQ5tiLI .mbr-card-title {
  color: #ffffff;
}
.cid-tVVRQ5tiLI .mbr-text {
  color: #ffffff;
}
.cid-tVVRQ5tiLI .mbr-number {
  color: #FE5115;
}
.cid-tVVRQ6iRvC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVRQ77lr9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tVVRQ77lr9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVRQ77lr9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVRQ77lr9 .row {
  margin: 0 !important;
}
.cid-tVVRQ77lr9 .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tVVRQ77lr9 .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tVVRQ77lr9 .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-tVVRQ77lr9 .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-tVVRQ77lr9 .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tVVRQ77lr9 .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tVVRQ77lr9 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tVVRQ77lr9 .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tVVRQ77lr9 .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-tVVRQ77lr9 .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-tVVRQ77lr9 .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tVVRQ77lr9 .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #fc7942;
  margin-left: 0.5rem;
}
.cid-tVVRQ77lr9 .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #fc7942;
  font-weight: 900;
}
.cid-tVVRQ77lr9 .panel-group {
  border: none;
}
.cid-tVVRQ77lr9 .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-tVVRQ77lr9 .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tVVRQ77lr9 .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tVVRQ77lr9 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-tVVRQ77lr9 .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-tVVRQ77lr9 .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-tVVRQ77lr9 .panel-title-edit {
  color: #ffffff;
}
.cid-tVVRQ77lr9 .panel-body {
  padding: 0 0 20px;
}
.cid-tVVRQ77lr9 .panel-text {
  color: #131313;
  margin: 0;
}
.cid-tVVRQ8gCfP {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVRQ8gCfP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVRQ8gCfP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tVVRQ8gCfP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tVVRQ8gCfP .row {
  flex-direction: row-reverse;
}
.cid-tVVRQ8gCfP img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tVVRQ8gCfP .text-wrapper {
    padding: 2rem;
  }
}
.cid-tVVRQ9bvX7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVRQ9bvX7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVRQ9bvX7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVRQ9bvX7 .title-wrapper {
  padding: 96px 10px;
  background-color: #000000;
}
@media (max-width: 992px) {
  .cid-tVVRQ9bvX7 .title-wrapper {
    padding: 60px 10px;
  }
}
@media (max-width: 768px) {
  .cid-tVVRQ9bvX7 .title-wrapper {
    padding: 40px 10px;
  }
}
.cid-tVVRQ9bvX7 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tVVRQ9bvX7 .panel-group {
  padding: 40px 10px 10px 10px;
}
.cid-tVVRQ9bvX7 .panel-group .card {
  border-bottom: 1px solid #e2e2e2;
  border-radius: 0;
}
.cid-tVVRQ9bvX7 .panel-group .card .card-header {
  padding: 15px 10px 15px 5px;
  background-color: transparent;
  border: none;
}
.cid-tVVRQ9bvX7 .panel-group .card .card-header .panel-title {
  display: flex;
}
.cid-tVVRQ9bvX7 .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont,
.cid-tVVRQ9bvX7 .panel-group .card .card-header .panel-title:hover .icon-wrapper .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-tVVRQ9bvX7 .panel-group .card .card-header .panel-title .icon-wrapper {
  min-width: 36px;
  width: 36px;
  height: 36px;
  background-color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-tVVRQ9bvX7 .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #ffffff;
  transition: all .3s ease;
}
.cid-tVVRQ9bvX7 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-left: 26px;
  margin-bottom: 0;
}
.cid-tVVRQ9bvX7 .panel-group .card .panel-collapse .panel-body {
  padding: 0 0 30px 66px;
}
.cid-tVVRQ9bvX7 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tVVRQ9bvX7 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tVVRQ9bvX7 .panel-title-edit {
  color: #000000;
}
.cid-tVVRQ9bvX7 .panel-text {
  color: #747474;
}
.cid-tVVRQ9bvX7 .mbr-section-title,
.cid-tVVRQ9bvX7 .mbr-section-btn {
  color: #ffffff;
}
.cid-tVVRQa6Xyk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tVVRQa6Xyk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVRQa6Xyk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVRQa6Xyk .google-map {
  height: 30rem;
  position: relative;
}
.cid-tVVRQa6Xyk .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tVVRQa6Xyk .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-tVVRQa6Xyk .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tVVRQa6Xyk .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tVVRQb2HHi {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tVVRQb2HHi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVRQb2HHi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVRQb2HHi .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tVVRQb2HHi .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tVVRQb2HHi .row {
    text-align: center;
  }
  .cid-tVVRQb2HHi .social-row {
    justify-content: center;
  }
}
.cid-tVVRQb2HHi .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tVVRQb2HHi .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVVRQb2HHi .list {
    margin-bottom: 0rem;
  }
}
.cid-tVVRQb2HHi .mbr-text {
  color: #bbbbbb;
}
.cid-tVVRQb2HHi .mbr-iconfont {
  color: black;
}
.cid-tVVRQb2HHi .copyright {
  color: #ffffff;
}
.cid-tVVRQb2HHi .mbr-section-subtitle {
  text-align: center;
  color: #2299aa;
}
.cid-tVVTWFiNTF {
  background-color: transparent;
}
.cid-tVVTWFiNTF .navbar-dropdown {
  background-color: #000000 !important;
  padding: 0;
}
.cid-tVVTWFiNTF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #000000 !important;
  background: #000000;
}
.cid-tVVTWFiNTF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVVTWFiNTF .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tVVTWFiNTF .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tVVTWFiNTF .menu_box .navbar.opened,
  .cid-tVVTWFiNTF .menu_box .navbar-collapse {
    background-color: #000000 !important;
    transition: all 0s ease 0s;
  }
}
.cid-tVVTWFiNTF .navbar-dropdown {
  position: relative !important;
}
.cid-tVVTWFiNTF .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tVVTWFiNTF .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tVVTWFiNTF .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tVVTWFiNTF .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tVVTWFiNTF .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tVVTWFiNTF .offcanvas {
    padding: 12rem 64px 0;
    width: 35%;
    background-color: #474a48;
  }
  .cid-tVVTWFiNTF .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tVVTWFiNTF .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tVVTWFiNTF .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tVVTWFiNTF .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tVVTWFiNTF .offcanvas-body .mbr-text,
  .cid-tVVTWFiNTF .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tVVTWFiNTF .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tVVTWFiNTF .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tVVTWFiNTF .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #f9f6e0;
  }
  .cid-tVVTWFiNTF .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tVVTWFiNTF .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tVVTWFiNTF .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tVVTWFiNTF .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tVVTWFiNTF ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tVVTWFiNTF .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tVVTWFiNTF .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-tVVTWFiNTF .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tVVTWFiNTF li.nav-item {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
    padding: 4px 20px !important;
    margin: 0;
    border-right: 1px solid #72716b;
  }
  .cid-tVVTWFiNTF .lg_brand {
    margin: 0 1rem;
  }
  .cid-tVVTWFiNTF .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-tVVTWFiNTF .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tVVTWFiNTF .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tVVTWFiNTF .nav-item {
    margin: 0 !important;
  }
}
.cid-tVVTWFiNTF .nav-item .nav-link {
  transition: all 0.5s ease-out;
  position: relative;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tVVTWFiNTF .nav-item .nav-link {
    justify-content: flex-start;
  }
}
.cid-tVVTWFiNTF .nav-item .nav-link::before {
  content: '';
  background-color: #d8c3a5;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  bottom: -12px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.cid-tVVTWFiNTF .nav-item .nav-link:hover,
.cid-tVVTWFiNTF .nav-item .nav-link:focus {
  color: #d8c3a5 !important;
}
.cid-tVVTWFiNTF .nav-item .nav-link:hover::before,
.cid-tVVTWFiNTF .nav-item .nav-link:focus::before {
  opacity: 1;
}
.cid-tVVTWFiNTF .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tVVTWFiNTF .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tVVTWFiNTF .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tVVTWFiNTF .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tVVTWFiNTF .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-tVVTWFiNTF .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tVVTWFiNTF .offcanvas_box {
    display: none;
  }
}
.cid-tVVTWFiNTF .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tVVTWFiNTF .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tVVTWFiNTF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tVVTWFiNTF .container {
  display: flex;
  margin: auto;
}
.cid-tVVTWFiNTF .iconfont-wrapper {
  color: #f9f6e0;
  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-tVVTWFiNTF .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tVVTWFiNTF .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tVVTWFiNTF .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tVVTWFiNTF .navbar-nav {
    margin: 0;
  }
}
.cid-tVVTWFiNTF .dropdown-menu,
.cid-tVVTWFiNTF .navbar.opened {
  background-color: false !important;
}
.cid-tVVTWFiNTF .nav-item:focus,
.cid-tVVTWFiNTF .nav-link:focus {
  outline: none;
}
.cid-tVVTWFiNTF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVVTWFiNTF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVVTWFiNTF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVVTWFiNTF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVVTWFiNTF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVVTWFiNTF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVVTWFiNTF .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tVVTWFiNTF .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tVVTWFiNTF .navbar.opened {
  transition: all 0.3s;
}
.cid-tVVTWFiNTF .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tVVTWFiNTF .navbar .navbar-logo img {
  max-width: 60px;
  min-height: 60px;
  object-fit: contain;
  border-radius: 5px !important;
}
.cid-tVVTWFiNTF .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tVVTWFiNTF .navbar.collapsed {
  justify-content: center;
}
.cid-tVVTWFiNTF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVVTWFiNTF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tVVTWFiNTF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVVTWFiNTF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVVTWFiNTF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVVTWFiNTF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tVVTWFiNTF .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tVVTWFiNTF .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tVVTWFiNTF .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tVVTWFiNTF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVVTWFiNTF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVVTWFiNTF .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tVVTWFiNTF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVVTWFiNTF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tVVTWFiNTF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVVTWFiNTF .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tVVTWFiNTF .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tVVTWFiNTF .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tVVTWFiNTF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tVVTWFiNTF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVVTWFiNTF .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tVVTWFiNTF .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVVTWFiNTF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVVTWFiNTF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVVTWFiNTF .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-tVVTWFiNTF .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tVVTWFiNTF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVVTWFiNTF .dropdown-item.active,
.cid-tVVTWFiNTF .dropdown-item:active {
  background-color: transparent;
}
.cid-tVVTWFiNTF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 2px 10px !important;
}
.cid-tVVTWFiNTF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVVTWFiNTF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVVTWFiNTF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVVTWFiNTF ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tVVTWFiNTF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVVTWFiNTF button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
  background: #353535;
}
.cid-tVVTWFiNTF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #f9f6e0;
}
.cid-tVVTWFiNTF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVVTWFiNTF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVVTWFiNTF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVVTWFiNTF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVVTWFiNTF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVVTWFiNTF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVVTWFiNTF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVVTWFiNTF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVVTWFiNTF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tVVTWFiNTF .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-tVVTWFiNTF .navbar {
    height: 70px;
  }
  .cid-tVVTWFiNTF .navbar.opened {
    height: auto;
  }
  .cid-tVVTWFiNTF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVVTWFiNTF .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tVVTWFiNTF .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.cid-tVVTWFiNTF .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-tVVTWFiNTF .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-tVVTWFiNTF .mbr-section-btn-main .btn {
  border: none;
  margin: 8px;
  min-width: 200px;
}
.cid-tVVTWFiNTF .navbar-caption:hover {
  color: #eb1818;
}
@media (min-width: 992px) {
  .cid-tVVTWFiNTF .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tVVTWFiNTF .text_widget {
  margin-bottom: 32px;
}
.cid-tVVTWFiNTF .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tVVTWFiNTF .text_widget a:hover,
.cid-tVVTWFiNTF .text_widget a:focus {
  opacity: .6;
}
.cid-tVVTWFiNTF .mbr-section-subtitle {
  color: #F9F6E0;
  text-align: center;
}
.cid-tVVTWFiNTF .navbar-caption {
  color: #F9F6E0;
}
.cid-tVVTWFiNTF .mbr-text {
  color: #F9F6E0;
  text-align: center;
}
.cid-tVVTWFiNTF .mbr-section-subtitle,
.cid-tVVTWFiNTF .text_widget,
.cid-tVVTWFiNTF .mbr-section-btn {
  text-align: center;
}
.cid-tVVTWFiNTF a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tVVTWGFhcE {
  display: flex;
  background-image: url("../../../assets/images/business-advisers-in-guildford14-612x408.jpg");
}
.cid-tVVTWGFhcE .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-tVVTWGFhcE .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tVVTWGFhcE {
    align-items: flex-end;
  }
  .cid-tVVTWGFhcE .row {
    justify-content: flex-start;
  }
  .cid-tVVTWGFhcE .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tVVTWGFhcE .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tVVTWGFhcE {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tVVTWGFhcE .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tVVTWGFhcE .content-wrap {
    width: 100%;
  }
}
.cid-tVVTWHsgaU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVTWHsgaU blockquote {
  border-color: #6592e6;
  border-radius: 4px;
  background-color: #000000;
}
.cid-tVVTWHsgaU .mbr-section-title {
  color: #ffffff;
}
.cid-tVVTWIajtl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tVVTWIajtl .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tVVTWIajtl .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-tVVTWJbZ7H {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tVVTWJbZ7H .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVTWJbZ7H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVTWJbZ7H .container-fluid {
  max-width: 100% !important;
}
.cid-tVVTWJbZ7H .img-wrap {
  width: 100%;
  height: 100%;
}
.cid-tVVTWJbZ7H .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tVVTWJbZ7H .text-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 55px 62px 70px 62px;
}
@media (max-width: 1439px) {
  .cid-tVVTWJbZ7H .text-wrap {
    padding: 40px 45px 50px 45px;
  }
}
@media (max-width: 991px) {
  .cid-tVVTWJbZ7H .text-wrap {
    padding: 25px 30px 30px 30px;
  }
}
@media (max-width: 767px) {
  .cid-tVVTWJbZ7H .text-wrap {
    padding: 40px 25px 45px 25px;
  }
}
.cid-tVVTWJbZ7H .mbr-section-title {
  color: #303030;
}
.cid-tVVTWJbZ7H .text-bottom {
  margin-top: auto;
  padding-top: 25px;
}
@media (max-width: 767px) {
  .cid-tVVTWJbZ7H .text-bottom {
    padding-top: 70px;
  }
}
@media (max-width: 575px) {
  .cid-tVVTWJbZ7H .text-bottom {
    padding-top: 50px;
  }
}
.cid-tVVTWJbZ7H .mbr-text {
  color: #303030;
}
.cid-tVVTWJbZ7H .mbr-section-btn {
  margin-top: 16px;
}
.cid-tVVTWJbZ7H .mbr-text,
.cid-tVVTWJbZ7H .mbr-section-btn {
  text-align: center;
}
.cid-tVVTWKJSai {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVTWKJSai .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVTWKJSai .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVTWKJSai .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tVVTWKJSai .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tVVTWKJSai .container {
    padding: 0 30px;
  }
}
.cid-tVVTWKJSai .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tVVTWKJSai .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tVVTWKJSai .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #000000;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-tVVTWKJSai .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tVVTWKJSai .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-tVVTWKJSai .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tVVTWKJSai .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tVVTWKJSai .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tVVTWKJSai .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tVVTWKJSai .mbr-section-title {
  color: #ffffff;
}
.cid-tVVTWKJSai .mbr-card-title {
  color: #ffffff;
}
.cid-tVVTWKJSai .mbr-text {
  color: #ffffff;
}
.cid-tVVTWKJSai .mbr-number {
  color: #FE5115;
}
.cid-tVVTWLuxPH {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/guildford-business-support10-612x408.jpg");
}
.cid-tVVTWLuxPH .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tVVTWLuxPH .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #000000;
}
@media (max-width: 991px) {
  .cid-tVVTWLuxPH .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVVTWLuxPH .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tVVTWLuxPH .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #eb1818;
}
.cid-tVVTWLuxPH .mbr-section-title {
  color: #e43f3f;
}
.cid-tVVTWLuxPH .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-tVVTWMozlU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVTWMozlU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVTWMozlU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVTWMozlU .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tVVTWMozlU .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tVVTWMozlU .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVVTWMozlU .card-wrapper {
    padding: 4rem;
  }
}
.cid-tVVTWMozlU .mbr-text,
.cid-tVVTWMozlU .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tVVTWMozlU .card-title,
.cid-tVVTWMozlU .card-box {
  text-align: center;
  color: #000000;
}
.cid-tVVTWN7kRY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tVVTWN7kRY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVTWN7kRY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVTWN7kRY .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-tVVTWN7kRY .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-tVVTWN7kRY .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-tVVTWN7kRY .wrapper {
  padding: 30px 0;
}
.cid-tVVTWN7kRY .mbr-section-title {
  color: #fafafa;
}
.cid-tVVTWN7kRY .mbr-text,
.cid-tVVTWN7kRY .mbr-section-btn {
  color: #ffffff;
}
.cid-tVVTWN7kRY H3 {
  color: #eb1818;
}
.cid-tVVTWNZtkL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVTWNZtkL .mbr-section-subtitle {
  text-align: center;
}
.cid-tVVTWNZtkL .mbr-text {
  text-align: left;
}
.cid-tVVTWOGEE9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVTWOGEE9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVTWOGEE9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVTWOGEE9 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tVVTWOGEE9 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tVVTWOGEE9 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tVVTWOGEE9 .mbr-section-title {
  color: #131313;
}
.cid-tVVTWOGEE9 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tVVTWOGEE9 .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tVVTWOGEE9 .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tVVTWOGEE9 .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #000000;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tVVTWOGEE9 .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tVVTWOGEE9 .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tVVTWOGEE9 .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tVVTWOGEE9 .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tVVTWOGEE9 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tVVTWOGEE9 .card-title {
  color: #131313;
}
.cid-tVVTWOGEE9 .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tVVTWOGEE9 .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tVVTWOGEE9 .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tVVTWOGEE9 .card-link {
    margin-top: 15px;
  }
}
.cid-tVVTWOGEE9 .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tVVTWOGEE9 .card-title,
.cid-tVVTWOGEE9 .iconfont-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-tVVTWPHW2I {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVTWPHW2I .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVTWPHW2I .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-tVVTWPHW2I .container {
    padding: 0 20px;
  }
}
.cid-tVVTWPHW2I .row {
  margin: 0;
}
.cid-tVVTWPHW2I .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tVVTWPHW2I .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tVVTWPHW2I .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-tVVTWPHW2I .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-tVVTWPHW2I .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tVVTWPHW2I .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-tVVTWPHW2I .mbr-section-title {
  color: #010101;
  text-align: center;
}
.cid-tVVTWQFsH1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVTWQFsH1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVTWQFsH1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVTWQFsH1 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tVVTWQFsH1 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tVVTWQFsH1 .container {
    padding: 0 30px;
  }
}
.cid-tVVTWQFsH1 .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tVVTWQFsH1 .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tVVTWQFsH1 .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #000000;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-tVVTWQFsH1 .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tVVTWQFsH1 .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-tVVTWQFsH1 .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tVVTWQFsH1 .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tVVTWQFsH1 .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tVVTWQFsH1 .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tVVTWQFsH1 .mbr-section-title {
  color: #ffffff;
}
.cid-tVVTWQFsH1 .mbr-card-title {
  color: #ffffff;
}
.cid-tVVTWQFsH1 .mbr-text {
  color: #ffffff;
}
.cid-tVVTWQFsH1 .mbr-number {
  color: #FE5115;
}
.cid-tVVTWRtcmq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVTWSdUap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tVVTWSdUap .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVTWSdUap .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVTWSdUap .row {
  margin: 0 !important;
}
.cid-tVVTWSdUap .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tVVTWSdUap .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tVVTWSdUap .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-tVVTWSdUap .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-tVVTWSdUap .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tVVTWSdUap .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tVVTWSdUap .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tVVTWSdUap .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tVVTWSdUap .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-tVVTWSdUap .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-tVVTWSdUap .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tVVTWSdUap .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #fc7942;
  margin-left: 0.5rem;
}
.cid-tVVTWSdUap .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #fc7942;
  font-weight: 900;
}
.cid-tVVTWSdUap .panel-group {
  border: none;
}
.cid-tVVTWSdUap .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-tVVTWSdUap .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tVVTWSdUap .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tVVTWSdUap .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-tVVTWSdUap .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-tVVTWSdUap .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-tVVTWSdUap .panel-title-edit {
  color: #ffffff;
}
.cid-tVVTWSdUap .panel-body {
  padding: 0 0 20px;
}
.cid-tVVTWSdUap .panel-text {
  color: #131313;
  margin: 0;
}
.cid-tVVTWTgFik {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tVVTWTgFik .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVTWTgFik .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tVVTWTgFik .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tVVTWTgFik .row {
  flex-direction: row-reverse;
}
.cid-tVVTWTgFik img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tVVTWTgFik .text-wrapper {
    padding: 2rem;
  }
}
.cid-tVVTWU6B8r {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tVVTWU6B8r .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVTWU6B8r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVTWU6B8r .title-wrapper {
  padding: 96px 10px;
  background-color: #000000;
}
@media (max-width: 992px) {
  .cid-tVVTWU6B8r .title-wrapper {
    padding: 60px 10px;
  }
}
@media (max-width: 768px) {
  .cid-tVVTWU6B8r .title-wrapper {
    padding: 40px 10px;
  }
}
.cid-tVVTWU6B8r .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tVVTWU6B8r .panel-group {
  padding: 40px 10px 10px 10px;
}
.cid-tVVTWU6B8r .panel-group .card {
  border-bottom: 1px solid #e2e2e2;
  border-radius: 0;
}
.cid-tVVTWU6B8r .panel-group .card .card-header {
  padding: 15px 10px 15px 5px;
  background-color: transparent;
  border: none;
}
.cid-tVVTWU6B8r .panel-group .card .card-header .panel-title {
  display: flex;
}
.cid-tVVTWU6B8r .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont,
.cid-tVVTWU6B8r .panel-group .card .card-header .panel-title:hover .icon-wrapper .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-tVVTWU6B8r .panel-group .card .card-header .panel-title .icon-wrapper {
  min-width: 36px;
  width: 36px;
  height: 36px;
  background-color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cid-tVVTWU6B8r .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  color: #ffffff;
  transition: all .3s ease;
}
.cid-tVVTWU6B8r .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-left: 26px;
  margin-bottom: 0;
}
.cid-tVVTWU6B8r .panel-group .card .panel-collapse .panel-body {
  padding: 0 0 30px 66px;
}
.cid-tVVTWU6B8r .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tVVTWU6B8r .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tVVTWU6B8r .panel-title-edit {
  color: #000000;
}
.cid-tVVTWU6B8r .panel-text {
  color: #747474;
}
.cid-tVVTWU6B8r .mbr-section-title,
.cid-tVVTWU6B8r .mbr-section-btn {
  color: #ffffff;
}
.cid-tVVTWV6ToO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tVVTWV6ToO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVTWV6ToO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVTWV6ToO .google-map {
  height: 30rem;
  position: relative;
}
.cid-tVVTWV6ToO .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tVVTWV6ToO .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-tVVTWV6ToO .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tVVTWV6ToO .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tVVTWW5hkT {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tVVTWW5hkT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVVTWW5hkT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVVTWW5hkT .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tVVTWW5hkT .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tVVTWW5hkT .row {
    text-align: center;
  }
  .cid-tVVTWW5hkT .social-row {
    justify-content: center;
  }
}
.cid-tVVTWW5hkT .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tVVTWW5hkT .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVVTWW5hkT .list {
    margin-bottom: 0rem;
  }
}
.cid-tVVTWW5hkT .mbr-text {
  color: #bbbbbb;
}
.cid-tVVTWW5hkT .mbr-iconfont {
  color: black;
}
.cid-tVVTWW5hkT .copyright {
  color: #ffffff;
}
.cid-tVVTWW5hkT .mbr-section-subtitle {
  text-align: center;
  color: #2299aa;
}
