body {
  font-family: 'DM Sans', sans-serif;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 1.3;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.7rem 1.3rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #e43f3f !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 {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-primary,
.btn-primary:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-primary:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-primary:hover {
  color: black !important;
}
.btn-primary:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-secondary {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-secondary:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-secondary:hover {
  color: black !important;
}
.btn-secondary:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-info {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-info:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-info:hover {
  color: black !important;
}
.btn-info:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-success {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-success:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-success:hover {
  color: black !important;
}
.btn-success:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-warning {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #000000 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #000000 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #000000 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-warning:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-warning:hover {
  color: black !important;
}
.btn-warning:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-danger {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-danger:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-danger:hover {
  color: black !important;
}
.btn-danger:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-white {
  border: 0;
  position: relative;
  z-index: 1;
}
.btn-white,
.btn-white:active {
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
  color: #000000 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #000000 !important;
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #000000 !important;
  background-color: #eaeaea !important;
  border-color: #eaeaea !important;
}
.btn-white:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-white:hover {
  color: black !important;
}
.btn-white:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-white:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: #e43f3f;
  z-index: -1;
  transition: all 0.3s;
}
.btn-white:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-black {
  position: relative;
  z-index: 1;
  border: 0;
}
.btn-black,
.btn-black:active {
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  border-color: rgba(0, 0, 0, 0.5) !important;
}
.btn-black:before {
  content: '';
  left: 0;
  top: 0;
  bottom: auto;
  position: absolute;
  width: 100%;
  height: 0%;
  background-color: white;
  z-index: -1;
  transition: all 0.3s;
}
.btn-black:hover {
  color: black !important;
}
.btn-black:hover:before {
  height: 100%;
  top: auto;
  bottom: 0;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e43f3f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b31919 !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: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #272727;
}
.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: #272727 !important;
  border-color: #272727 !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: #e43f3f !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #272727 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #e43f3f !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
.nav-tabs .nav-link.active {
  color: #e43f3f;
}
.nav-tabs .nav-link:not(.active) {
  color: #272727;
}
.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: #e43f3f;
  border-color: #e43f3f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e43f3f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdf2f2;
}
.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: 'DM Sans', 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: #e43f3f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DM Sans', 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: #e43f3f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e43f3f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e43f3f;
}
.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: #e43f3f;
  border-bottom-color: #e43f3f;
}
.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: #e43f3f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23e43f3f' %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-tPb6JMku7J {
  border-bottom: 1px solid #e33030;
  border-radius: 8px 8px 0 0 !important;
}
.cid-tPb6JMku7J .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tPb6JMku7J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tPb6JMku7J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPb6JMku7J .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tPb6JMku7J .menu_box .navbar.opened,
  .cid-tPb6JMku7J .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tPb6JMku7J .navbar-dropdown {
  position: relative !important;
}
.cid-tPb6JMku7J .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tPb6JMku7J .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tPb6JMku7J .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tPb6JMku7J .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #e33030;
  }
  .cid-tPb6JMku7J .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tPb6JMku7J .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tPb6JMku7J .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tPb6JMku7J .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tPb6JMku7J .offcanvas-body .mbr-text,
  .cid-tPb6JMku7J .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tPb6JMku7J .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #e33030;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tPb6JMku7J ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tPb6JMku7J .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tPb6JMku7J .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-tPb6JMku7J .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tPb6JMku7J li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tPb6JMku7J .lg_brand {
    margin: 0 1rem;
  }
  .cid-tPb6JMku7J .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-tPb6JMku7J .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tPb6JMku7J .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .nav-item {
    margin: 0 !important;
  }
}
.cid-tPb6JMku7J .nav-item .nav-link:hover,
.cid-tPb6JMku7J .nav-item .nav-link:focus {
  opacity: .5;
  color: #e43f3f !important;
  transition: all 0.3s ease-out;
}
.cid-tPb6JMku7J .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tPb6JMku7J .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tPb6JMku7J .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tPb6JMku7J .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-tPb6JMku7J .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tPb6JMku7J .offcanvas_box {
    display: none;
  }
}
.cid-tPb6JMku7J .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tPb6JMku7J .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tPb6JMku7J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tPb6JMku7J .container {
  display: flex;
  margin: auto;
}
.cid-tPb6JMku7J .iconfont-wrapper {
  color: #e33030;
  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-tPb6JMku7J .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tPb6JMku7J .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tPb6JMku7J .navbar-caption {
  color: #E33030;
}
.cid-tPb6JMku7J .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tPb6JMku7J .navbar-nav {
    margin: 0;
  }
}
.cid-tPb6JMku7J .dropdown-menu,
.cid-tPb6JMku7J .navbar.opened {
  background-color: false !important;
}
.cid-tPb6JMku7J .nav-item:focus,
.cid-tPb6JMku7J .nav-link:focus {
  outline: none;
}
.cid-tPb6JMku7J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPb6JMku7J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPb6JMku7J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPb6JMku7J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPb6JMku7J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPb6JMku7J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPb6JMku7J .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tPb6JMku7J .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tPb6JMku7J .navbar.opened {
  transition: all 0.3s;
}
.cid-tPb6JMku7J .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tPb6JMku7J .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 20px;
}
.cid-tPb6JMku7J .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tPb6JMku7J .navbar.collapsed {
  justify-content: center;
}
.cid-tPb6JMku7J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPb6JMku7J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tPb6JMku7J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPb6JMku7J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPb6JMku7J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPb6JMku7J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tPb6JMku7J .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tPb6JMku7J .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tPb6JMku7J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPb6JMku7J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPb6JMku7J .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tPb6JMku7J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPb6JMku7J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tPb6JMku7J .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPb6JMku7J .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tPb6JMku7J .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tPb6JMku7J .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tPb6JMku7J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tPb6JMku7J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPb6JMku7J .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tPb6JMku7J .navbar.navbar-short {
  min-height: 60px;
}
.cid-tPb6JMku7J .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPb6JMku7J .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPb6JMku7J .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-tPb6JMku7J .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tPb6JMku7J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPb6JMku7J .dropdown-item.active,
.cid-tPb6JMku7J .dropdown-item:active {
  background-color: transparent;
}
.cid-tPb6JMku7J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPb6JMku7J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPb6JMku7J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPb6JMku7J .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPb6JMku7J ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tPb6JMku7J .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPb6JMku7J button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #e33030;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPb6JMku7J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPb6JMku7J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPb6JMku7J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPb6JMku7J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPb6JMku7J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tPb6JMku7J .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-tPb6JMku7J .navbar {
    height: 70px;
  }
  .cid-tPb6JMku7J .navbar.opened {
    height: auto;
  }
  .cid-tPb6JMku7J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPb6JMku7J .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tPb6JMku7J .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-tPb6JMku7J .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tPb6JMku7J .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 150px;
}
@media (max-width: 992px) {
  .cid-tPb6JMku7J .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-tPb6JMku7J .navbar-caption:hover {
  color: #e43f3f;
}
@media (min-width: 992px) {
  .cid-tPb6JMku7J .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tPb6JMku7J .text_widget {
  margin-bottom: 32px;
}
.cid-tPb6JMku7J .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tPb6JMku7J .text_widget a:hover {
  opacity: .5;
}
.cid-tPb6JMku7J .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tPb6JMku7J .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tPb6JMku7J .mbr-section-subtitle,
.cid-tPb6JMku7J .text_widget,
.cid-tPb6JMku7J .mbr-section-btn {
  text-align: center;
}
.cid-tPb6JMku7J a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tP9bGbPrNg {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/tucson-moving-service1-2000x1333.jpg");
}
.cid-tP9bGbPrNg .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tP9bGbPrNg .mbr-text,
.cid-tP9bGbPrNg .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-tP9dzpB0Oj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1271.jpg");
}
.cid-tP9dzpB0Oj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP9dzpB0Oj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP9dzpB0Oj .title-container {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-tP9dzpB0Oj .title-container {
    margin-bottom: 25px;
  }
}
.cid-tP9dzpB0Oj .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tP9dzpB0Oj .mbr-text {
  color: #00524F;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .cid-tP9dzpB0Oj .mbr-text {
    margin-top: 24px;
  }
}
.cid-tP9dzpB0Oj .tabl-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tP9dzpB0Oj .tabl-container {
    margin-top: 25px;
  }
}
.cid-tP9dzpB0Oj .item-container {
  width: 100%;
  display: flex;
}
.cid-tP9dzpB0Oj .item-container:not(:first-child) {
  margin-top: 30px;
}
.cid-tP9dzpB0Oj .card-text {
  color: #ffffff;
  width: 100%;
  text-align: left;
}
.cid-tPadyphEAQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-tPadyphEAQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPadyphEAQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPadyphEAQ .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tPadyphEAQ .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tPadyphEAQ .container {
    padding: 0 30px;
  }
}
.cid-tPadyphEAQ .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tPadyphEAQ .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tPadyphEAQ .mbr-section-btn {
  margin-bottom: 70px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-tPadyphEAQ .mbr-section-btn {
    margin-bottom: 0;
    text-align: left;
  }
}
.cid-tPadyphEAQ .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tPadyphEAQ .mbr-section-title {
  color: #ffffff;
}
.cid-tPadyphEAQ .mbr-text {
  color: #000000;
}
.cid-tP9ckpjIwO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tP9ckpjIwO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP9ckpjIwO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP9ckpjIwO .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tP9ckpjIwO .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tP9ckpjIwO .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tP9ckpjIwO .mbr-section-title {
  color: #131313;
}
.cid-tP9ckpjIwO .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tP9ckpjIwO .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tP9ckpjIwO .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tP9ckpjIwO .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: #9fdbf8;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tP9ckpjIwO .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tP9ckpjIwO .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tP9ckpjIwO .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tP9ckpjIwO .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tP9ckpjIwO .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tP9ckpjIwO .card-title {
  color: #131313;
}
.cid-tP9ckpjIwO .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tP9ckpjIwO .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tP9ckpjIwO .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tP9ckpjIwO .card-link {
    margin-top: 15px;
  }
}
.cid-tP9ckpjIwO .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tP9ckpjIwO .card-title,
.cid-tP9ckpjIwO .iconfont-wrapper {
  text-align: center;
}
.cid-tP9hJUIKtV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tP9hJUIKtV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP9hJUIKtV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP9hJUIKtV .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tP9hJUIKtV .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tP9hJUIKtV .container {
    padding: 0 30px;
  }
}
.cid-tP9hJUIKtV .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tP9hJUIKtV .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tP9hJUIKtV .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #9fdbf8;
  border-radius: 16em 3em;
  padding: 70px 230px 70px 70px;
  border-radius: 3em 16em;
}
@media (max-width: 992px) {
  .cid-tP9hJUIKtV .card-wrapper {
    border-radius: 0 3em 0 3em;
    padding: 30px 20px;
  }
}
@media (max-width: 992px) {
  .cid-tP9hJUIKtV .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tP9hJUIKtV .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
  margin: 0 50px 0 0;
}
@media (max-width: 992px) {
  .cid-tP9hJUIKtV .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
@media (max-width: 992px) {
  .cid-tP9hJUIKtV .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tP9hJUIKtV .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tP9hJUIKtV .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tP9hJUIKtV .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tP9hJUIKtV .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tP9hJUIKtV .mbr-card-title {
  color: #2b2b2b;
}
.cid-tP9hJUIKtV .mbr-text {
  color: #000000;
}
.cid-tP9hJUIKtV .mbr-number {
  color: #FE5115;
}
.cid-tP9dgCpVJE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-tP9dgCpVJE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP9dgCpVJE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP9dgCpVJE .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tP9dgCpVJE .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tP9dgCpVJE .container {
    padding: 0 30px;
  }
}
.cid-tP9dgCpVJE .row {
  justify-content: center;
}
.cid-tP9dgCpVJE .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-tP9dgCpVJE .title-wrapper {
    height: auto;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.cid-tP9dgCpVJE .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 25px;
}
.cid-tP9dgCpVJE .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tP9dgCpVJE .title-wrapper .title-wrap .mbr-price {
  margin-bottom: 0;
}
.cid-tP9dgCpVJE .image-wrapper {
  padding: 0 10px;
}
.cid-tP9dgCpVJE .image-wrapper img {
  height: 390px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tP9dgCpVJE .image-wrapper img {
    height: 300px;
  }
}
.cid-tP9dgCpVJE .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-tP9dgCpVJE .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-tP9dgCpVJE .mbr-price {
  color: #212529;
  text-align: center;
}
.cid-tP9jRmchit {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tP9jRmchit .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP9jRmchit .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP9jRmchit .container-small,
.cid-tP9jRmchit .container-fluid {
  padding: 0 !important;
}
.cid-tP9jRmchit .container-small {
  max-width: 1440px;
}
.cid-tP9jRmchit .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #9fdbf8;
}
@media (max-width: 991px) {
  .cid-tP9jRmchit .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-tP9jRmchit .text-box {
    padding: 50px 10px;
  }
}
.cid-tP9jRmchit .mbr-section-title {
  color: #131313;
  text-align: left;
}
.cid-tP9jRmchit .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-tP9jRmchit .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-tP9jRmchit .mbr-text {
    margin-top: 20px;
  }
}
.cid-tP9jRmchit .mbr-text a {
  text-decoration: underline;
}
.cid-tP9jRmchit .mbr-section-btn {
  margin-top: 34px;
}
.cid-tP9jRmchit .mbr-section-subtitle,
.cid-tP9jRmchit .mbr-section-btn DIV {
  text-align: left;
}
.cid-tP9lzSM9OY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tP9lzSM9OY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP9lzSM9OY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP9lzSM9OY .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tP9lzSM9OY .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tP9lzSM9OY .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tP9lzSM9OY .mbr-section-title {
  color: #131313;
}
.cid-tP9lzSM9OY .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tP9lzSM9OY .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tP9lzSM9OY .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tP9lzSM9OY .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #9fdbf8;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tP9lzSM9OY .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tP9lzSM9OY .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tP9lzSM9OY .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tP9lzSM9OY .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tP9lzSM9OY .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tP9lzSM9OY .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tP9lzSM9OY .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tP9lzSM9OY .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tP9lzSM9OY .content-wrap {
    margin-top: 0;
  }
}
.cid-tP9lzSM9OY .card-title {
  color: #131313;
}
.cid-tP9lzSM9OY .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tP9lzSM9OY .card-text {
    margin-top: 15px;
  }
}
.cid-tP9lzSM9OY .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tP9lzSM9OY .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tP9lzSM9OY .card-link {
    margin-top: 15px;
  }
}
.cid-tP9lzSM9OY .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tP9qRXaysr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
  overflow: hidden;
}
.cid-tP9qRXaysr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP9qRXaysr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP9qRXaysr .image-wrapper {
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
}
.cid-tP9qRXaysr img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
@media (max-width: 767px) {
  .cid-tP9qRXaysr img {
    min-height: 400px;
  }
}
.cid-tP9mWDzMOk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tP9mWDzMOk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP9mWDzMOk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP9mWDzMOk .container,
.cid-tP9mWDzMOk .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tP9mWDzMOk .container,
  .cid-tP9mWDzMOk .container-fluid {
    padding: 0 20px;
  }
}
.cid-tP9mWDzMOk .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tP9mWDzMOk .title-wrapper {
    margin-bottom: 50px;
    padding: 0;
  }
}
.cid-tP9mWDzMOk .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tP9mWDzMOk .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 50px;
  border-left: 1px solid #3d4045;
}
@media (max-width: 992px) {
  .cid-tP9mWDzMOk .text-wrapper {
    border: none;
  }
}
@media (max-width: 992px) {
  .cid-tP9mWDzMOk .text-wrapper {
    padding: 0;
  }
}
.cid-tP9mWDzMOk .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tP9mWDzMOk .mbr-section-title {
  color: #000000;
}
.cid-tP9mWDzMOk .mbr-text {
  color: #000000;
}
.cid-tP9iMP2qZn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-tP9iMP2qZn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP9iMP2qZn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP9iMP2qZn .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tP9iMP2qZn .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tP9iMP2qZn .container {
    padding: 0 30px;
  }
}
.cid-tP9iMP2qZn .mbr-section-title {
  margin-bottom: 70px;
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tP9iMP2qZn .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tP9iMP2qZn .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-tP9iMP2qZn .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-tP9iMP2qZn .video-block .video-wrapper .app-video-wrapper::before {
  color: #fe5115;
  text-shadow: none;
}
.cid-tP9iMP2qZn .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-tP9iMP2qZn .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-tP9nqHCNL5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tP9nqHCNL5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP9nqHCNL5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP9nqHCNL5 .row {
  justify-content: center;
}
.cid-tP9nqHCNL5 .title-wrapper {
  padding: 71px;
  background-color: #9fdbf8;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tP9nqHCNL5 .title-wrapper {
    padding: 50px 25px;
  }
}
.cid-tP9nqHCNL5 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tP9nqHCNL5 .text-wrapper .mbr-text {
  margin-bottom: 25px;
}
.cid-tP9nqHCNL5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tP9nqHCNL5 .mbr-text {
  color: #747474;
}
.cid-tP9nqHCNL5 .mbr-text,
.cid-tP9nqHCNL5 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tP9nqHCNL5 .mbr-section-title,
.cid-tP9nqHCNL5 .mbr-iconfont {
  color: #000000;
}
.cid-tP9oPY47Ro {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #9fdbf8;
}
.cid-tP9oPY47Ro .border-bottom {
  border-color: #969494 !important;
}
.cid-tP9oPY47Ro .row[aria-expanded="true"] .cross__container .cross {
  transform: rotate(45deg);
}
.cid-tP9oPY47Ro .row[data-bs-toggle="collapse"]:hover .cross__container .cross {
  background-color: #eeeeee;
}
.cid-tP9oPY47Ro .cross {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  transition: transform ease-in-out 0.2s, background-color ease-in-out 0.4s;
}
.cid-tP9oPY47Ro .cross-line1,
.cid-tP9oPY47Ro .cross-line2 {
  width: 20px;
  height: 1px;
  background-color: #414142;
  transform: translate(-50%);
}
.cid-tP9oPY47Ro .cross-line1 {
  transform: translateX(-50%) rotate(90deg);
}
.cid-tP9oPY47Ro .colored-text {
  color: #a68462 !important;
}
.cid-tP9oPY47Ro .mbr-section-title {
  color: #ffffff;
}
.cid-tP9oPY47Ro .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tP9oPY47Ro .mbr-text {
  color: #ffffff;
}
.cid-tP9oPY47Ro .mbr-section-title.main-title {
  color: #ffffff;
  text-align: center;
}
.cid-tP9oPY47Ro .mbr-section-title.spoiler-title {
  color: #000000;
}
.cid-tP9o7qCdVi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tP9o7qCdVi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP9o7qCdVi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tP9o7qCdVi .row {
    padding: 0 24px;
  }
}
.cid-tP9o7qCdVi .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  background-color: #ffe4c1;
  height: 100%;
  border-radius: 30px;
}
.cid-tP9o7qCdVi .image-wrapper img {
  max-width: 280px;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .cid-tP9o7qCdVi .image-wrapper img {
    height: 300px;
  }
}
.cid-tP9o7qCdVi .title-wrapper {
  padding-left: 100px;
}
@media (max-width: 992px) {
  .cid-tP9o7qCdVi .title-wrapper {
    margin-top: 32px;
    padding-left: 0;
  }
}
.cid-tP9o7qCdVi .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tP9o7qCdVi .title-wrapper .mbr-text {
  margin: 0;
}
.cid-tP9o7qCdVi .mbr-section-title {
  color: #ffffff;
}
.cid-tP9o7qCdVi .mbr-text {
  color: #ffffff;
}
.cid-tP9o1FMdPD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-tP9o1FMdPD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP9o1FMdPD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tP9o1FMdPD .row {
    padding: 0 24px;
  }
}
.cid-tP9o1FMdPD .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tP9o1FMdPD .title-wrapper .mbr-text {
  margin-bottom: 26px;
}
.cid-tP9o1FMdPD .mbr-section-title {
  color: #005c62;
}
.cid-tP9o1FMdPD .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tP9o1FMdPD .mbr-section-title,
.cid-tP9o1FMdPD .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-t3rRWwcVMp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-t3rRWwcVMp .google-map {
  height: 35rem;
  position: relative;
}
.cid-t3rRWwcVMp .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-t3rRWwcVMp .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-t3rRWwcVMp .google-map[data-state] {
  background: #e9e5dc;
}
.cid-t3rRWwcVMp .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tPakjufExM {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tPakjufExM [class^="socicon-"]:before,
.cid-tPakjufExM [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-tPakjufExM .social-list {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tPakjufExM .soc-item {
  width: 50px;
  height: 50px;
  background: #9fdbf8;
  border-radius: 100%;
  display: flex;
  -webkit-box-shadow: 0 10px 15px rgba(88, 192, 243, 0.4);
  box-shadow: 0 10px 15px rgba(88, 192, 243, 0.4);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-tPakjufExM .soc-item span {
  font-size: 1.4rem;
  color: #000000 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-tPakjufExM .soc-item:hover span {
  color: #fdece8 !important;
}
.cid-tPakjufExM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPakjufExM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPahk6GnKl {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tPahk6GnKl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPahk6GnKl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPahk6GnKl .container {
  max-width: 1600px;
}
.cid-tPahk6GnKl .border-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .cid-tPahk6GnKl .border-container {
    padding: 48px 0;
  }
}
@media (max-width: 575px) {
  .cid-tPahk6GnKl .border-container {
    padding: 30px 0;
  }
}
.cid-tPahk6GnKl .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-tPahk6GnKl .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-tPahk6GnKl .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-tPahk6GnKl .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-tPahk6GnKl .border-frame {
  position: absolute;
  z-index: 3;
  width: 60px;
  aspect-ratio: 1;
  background-color: #000000;
  border-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .cid-tPahk6GnKl .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-tPahk6GnKl .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-tPahk6GnKl .border-frame {
    width: 7%;
  }
}
.cid-tPahk6GnKl .footer-main-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.cid-tPahk6GnKl .footer-item-container {
  width: 33.33333333%;
  flex-grow: 1;
  padding: 80px;
}
.cid-tPahk6GnKl .footer-item-container:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .cid-tPahk6GnKl .footer-item-container {
    width: 100%;
    padding: 40px 40px 40px 120px;
  }
  .cid-tPahk6GnKl .footer-item-container:not(:first-child) {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 575px) {
  .cid-tPahk6GnKl .footer-item-container {
    padding: 26px 26px 26px 76px;
  }
}
.cid-tPahk6GnKl .footer-item {
  height: 100%;
}
.cid-tPahk6GnKl .mbr-section-subtitle {
  color: #BF9341;
  width: 100%;
  margin-bottom: 64px;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tPahk6GnKl .mbr-section-subtitle {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-tPahk6GnKl .mbr-section-subtitle {
    margin-bottom: 40px;
  }
}
.cid-tPahk6GnKl .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-tPahk6GnKl .mbr-section-btn {
  margin-top: 20px;
}
.cid-tPahk6GnKl .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #BF9341;
}
.cid-tPahk6GnKl .list li {
  position: relative;
  width: 100%;
  color: inherit !important;
  padding: 0 0 0 30px;
  margin: 10px 0;
  transition: .3s all;
}
.cid-tPahk6GnKl .list li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: currentColor;
}
.cid-tPahk6GnKl .list li:hover {
  color: #e43f3f !important;
}
.cid-tPahk6GnKl .list a {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tPahk6GnKl .list a p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tPahk6GnKl .list a:hover {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tPahk6GnKl .list a:hover p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tPahk6GnKl .social-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
}
.cid-tPahk6GnKl .social-row .mbr-iconfont {
  font-size: 18px;
  color: #b84358;
  margin-right: 20px;
}
.cid-tPahk6GnKl .social-text {
  color: #BF9341;
  transition: .4s all;
  margin-bottom: 0 !important;
}
.cid-tPahk6GnKl .soc-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0;
  transition: .4s all;
}
.cid-tPahk6GnKl .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s all;
}
.cid-tPahk6GnKl .soc-item:hover .mbr-iconfont {
  color: #e43f3f !important;
}
.cid-tPahk6GnKl .soc-item:hover .social-text {
  color: #e43f3f !important;
}
.cid-tPahk6GnKl .copyright-container {
  width: 100%;
  padding: 0;
  margin-top: 56px;
}
@media (max-width: 991px) {
  .cid-tPahk6GnKl .copyright-container {
    margin-top: 48px;
  }
}
@media (max-width: 575px) {
  .cid-tPahk6GnKl .copyright-container {
    margin-top: 30px;
  }
}
.cid-tPahk6GnKl .copyright-text {
  color: #BF9341;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tPahk6GnKl .copyright-text {
    text-align: center !important;
  }
}
.cid-tP968nHaVY {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/tucson-moving-service11-1440x900.jpg");
}
.cid-tP968nHaVY .mbr-section-title {
  color: #ffffff;
}
.cid-tP968nHaVY .mbr-text,
.cid-tP968nHaVY .mbr-section-btn {
  color: #fafafa;
}
.cid-tP968oAoCp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-tP968oAoCp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP968oAoCp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP968oAoCp .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tP968oAoCp .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tP968oAoCp .container {
    padding: 0 30px;
  }
}
.cid-tP968oAoCp .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tP968oAoCp .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tP968oAoCp .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #ffffff;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-tP968oAoCp .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tP968oAoCp .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-tP968oAoCp .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tP968oAoCp .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tP968oAoCp .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tP968oAoCp .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tP968oAoCp .mbr-section-title {
  color: #ffffff;
}
.cid-tP968oAoCp .mbr-card-title {
  color: #2b2b2b;
}
.cid-tP968oAoCp .mbr-text {
  color: #000000;
}
.cid-tP968oAoCp .mbr-number {
  color: #FE5115;
}
.cid-tPa029lEWJ {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #fdfcfa;
}
.cid-tPa029lEWJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPa029lEWJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPa029lEWJ .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tPa029lEWJ .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tPa029lEWJ .container {
    padding: 0;
  }
}
.cid-tPa029lEWJ .row {
  justify-content: center;
}
.cid-tPa029lEWJ .title-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tPa029lEWJ .title-wrapper {
    padding: 0 16px;
  }
}
.cid-tPa029lEWJ .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tPa029lEWJ .google-map iframe {
  height: 550px;
}
@media (max-width: 992px) {
  .cid-tPa029lEWJ .google-map iframe {
    height: 300px;
  }
}
.cid-tPa029lEWJ .mbr-section-title {
  color: #263652;
  text-align: center;
}
.cid-tPa01cvWzK {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tPa01cvWzK [class^="socicon-"]:before,
.cid-tPa01cvWzK [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-tPa01cvWzK .social-list {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tPa01cvWzK .soc-item {
  width: 50px;
  height: 50px;
  background: #133996;
  border-radius: 100%;
  display: flex;
  -webkit-box-shadow: 0 10px 15px rgba(10, 31, 82, 0.4);
  box-shadow: 0 10px 15px rgba(10, 31, 82, 0.4);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-tPa01cvWzK .soc-item span {
  font-size: 1.4rem;
  color: #fc643f !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-tPa01cvWzK .soc-item:hover span {
  color: #fdece8 !important;
}
.cid-tPa01cvWzK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPa01cvWzK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPahk6GnKl {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tPahk6GnKl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPahk6GnKl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPahk6GnKl .container {
  max-width: 1600px;
}
.cid-tPahk6GnKl .border-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .cid-tPahk6GnKl .border-container {
    padding: 48px 0;
  }
}
@media (max-width: 575px) {
  .cid-tPahk6GnKl .border-container {
    padding: 30px 0;
  }
}
.cid-tPahk6GnKl .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-tPahk6GnKl .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-tPahk6GnKl .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-tPahk6GnKl .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-tPahk6GnKl .border-frame {
  position: absolute;
  z-index: 3;
  width: 60px;
  aspect-ratio: 1;
  background-color: #000000;
  border-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .cid-tPahk6GnKl .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-tPahk6GnKl .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-tPahk6GnKl .border-frame {
    width: 7%;
  }
}
.cid-tPahk6GnKl .footer-main-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.cid-tPahk6GnKl .footer-item-container {
  width: 33.33333333%;
  flex-grow: 1;
  padding: 80px;
}
.cid-tPahk6GnKl .footer-item-container:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .cid-tPahk6GnKl .footer-item-container {
    width: 100%;
    padding: 40px 40px 40px 120px;
  }
  .cid-tPahk6GnKl .footer-item-container:not(:first-child) {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 575px) {
  .cid-tPahk6GnKl .footer-item-container {
    padding: 26px 26px 26px 76px;
  }
}
.cid-tPahk6GnKl .footer-item {
  height: 100%;
}
.cid-tPahk6GnKl .mbr-section-subtitle {
  color: #BF9341;
  width: 100%;
  margin-bottom: 64px;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tPahk6GnKl .mbr-section-subtitle {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-tPahk6GnKl .mbr-section-subtitle {
    margin-bottom: 40px;
  }
}
.cid-tPahk6GnKl .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-tPahk6GnKl .mbr-section-btn {
  margin-top: 20px;
}
.cid-tPahk6GnKl .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #BF9341;
}
.cid-tPahk6GnKl .list li {
  position: relative;
  width: 100%;
  color: inherit !important;
  padding: 0 0 0 30px;
  margin: 10px 0;
  transition: .3s all;
}
.cid-tPahk6GnKl .list li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: currentColor;
}
.cid-tPahk6GnKl .list li:hover {
  color: #e43f3f !important;
}
.cid-tPahk6GnKl .list a {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tPahk6GnKl .list a p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tPahk6GnKl .list a:hover {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tPahk6GnKl .list a:hover p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tPahk6GnKl .social-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
}
.cid-tPahk6GnKl .social-row .mbr-iconfont {
  font-size: 18px;
  color: #b84358;
  margin-right: 20px;
}
.cid-tPahk6GnKl .social-text {
  color: #BF9341;
  transition: .4s all;
  margin-bottom: 0 !important;
}
.cid-tPahk6GnKl .soc-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0;
  transition: .4s all;
}
.cid-tPahk6GnKl .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s all;
}
.cid-tPahk6GnKl .soc-item:hover .mbr-iconfont {
  color: #e43f3f !important;
}
.cid-tPahk6GnKl .soc-item:hover .social-text {
  color: #e43f3f !important;
}
.cid-tPahk6GnKl .copyright-container {
  width: 100%;
  padding: 0;
  margin-top: 56px;
}
@media (max-width: 991px) {
  .cid-tPahk6GnKl .copyright-container {
    margin-top: 48px;
  }
}
@media (max-width: 575px) {
  .cid-tPahk6GnKl .copyright-container {
    margin-top: 30px;
  }
}
.cid-tPahk6GnKl .copyright-text {
  color: #BF9341;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tPahk6GnKl .copyright-text {
    text-align: center !important;
  }
}
.cid-tPb6JMku7J {
  border-bottom: 1px solid #e33030;
  border-radius: 8px 8px 0 0 !important;
}
.cid-tPb6JMku7J .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tPb6JMku7J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tPb6JMku7J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPb6JMku7J .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tPb6JMku7J .menu_box .navbar.opened,
  .cid-tPb6JMku7J .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tPb6JMku7J .navbar-dropdown {
  position: relative !important;
}
.cid-tPb6JMku7J .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tPb6JMku7J .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tPb6JMku7J .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tPb6JMku7J .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #e33030;
  }
  .cid-tPb6JMku7J .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tPb6JMku7J .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tPb6JMku7J .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tPb6JMku7J .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tPb6JMku7J .offcanvas-body .mbr-text,
  .cid-tPb6JMku7J .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tPb6JMku7J .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #e33030;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tPb6JMku7J ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tPb6JMku7J .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tPb6JMku7J .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-tPb6JMku7J .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tPb6JMku7J li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tPb6JMku7J .lg_brand {
    margin: 0 1rem;
  }
  .cid-tPb6JMku7J .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-tPb6JMku7J .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tPb6JMku7J .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .nav-item {
    margin: 0 !important;
  }
}
.cid-tPb6JMku7J .nav-item .nav-link:hover,
.cid-tPb6JMku7J .nav-item .nav-link:focus {
  opacity: .5;
  color: #e43f3f !important;
  transition: all 0.3s ease-out;
}
.cid-tPb6JMku7J .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tPb6JMku7J .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tPb6JMku7J .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tPb6JMku7J .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-tPb6JMku7J .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tPb6JMku7J .offcanvas_box {
    display: none;
  }
}
.cid-tPb6JMku7J .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tPb6JMku7J .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tPb6JMku7J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tPb6JMku7J .container {
  display: flex;
  margin: auto;
}
.cid-tPb6JMku7J .iconfont-wrapper {
  color: #e33030;
  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-tPb6JMku7J .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tPb6JMku7J .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tPb6JMku7J .navbar-caption {
  color: #E33030;
}
.cid-tPb6JMku7J .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tPb6JMku7J .navbar-nav {
    margin: 0;
  }
}
.cid-tPb6JMku7J .dropdown-menu,
.cid-tPb6JMku7J .navbar.opened {
  background-color: false !important;
}
.cid-tPb6JMku7J .nav-item:focus,
.cid-tPb6JMku7J .nav-link:focus {
  outline: none;
}
.cid-tPb6JMku7J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPb6JMku7J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPb6JMku7J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPb6JMku7J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPb6JMku7J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPb6JMku7J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPb6JMku7J .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tPb6JMku7J .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tPb6JMku7J .navbar.opened {
  transition: all 0.3s;
}
.cid-tPb6JMku7J .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tPb6JMku7J .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 20px;
}
.cid-tPb6JMku7J .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tPb6JMku7J .navbar.collapsed {
  justify-content: center;
}
.cid-tPb6JMku7J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPb6JMku7J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tPb6JMku7J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPb6JMku7J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPb6JMku7J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPb6JMku7J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tPb6JMku7J .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tPb6JMku7J .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tPb6JMku7J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPb6JMku7J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPb6JMku7J .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tPb6JMku7J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPb6JMku7J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tPb6JMku7J .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPb6JMku7J .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tPb6JMku7J .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tPb6JMku7J .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tPb6JMku7J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tPb6JMku7J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPb6JMku7J .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tPb6JMku7J .navbar.navbar-short {
  min-height: 60px;
}
.cid-tPb6JMku7J .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPb6JMku7J .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPb6JMku7J .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-tPb6JMku7J .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tPb6JMku7J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPb6JMku7J .dropdown-item.active,
.cid-tPb6JMku7J .dropdown-item:active {
  background-color: transparent;
}
.cid-tPb6JMku7J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPb6JMku7J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPb6JMku7J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPb6JMku7J .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPb6JMku7J ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tPb6JMku7J .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPb6JMku7J button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #e33030;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPb6JMku7J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPb6JMku7J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPb6JMku7J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPb6JMku7J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPb6JMku7J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tPb6JMku7J .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-tPb6JMku7J .navbar {
    height: 70px;
  }
  .cid-tPb6JMku7J .navbar.opened {
    height: auto;
  }
  .cid-tPb6JMku7J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPb6JMku7J .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tPb6JMku7J .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-tPb6JMku7J .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tPb6JMku7J .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 150px;
}
@media (max-width: 992px) {
  .cid-tPb6JMku7J .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-tPb6JMku7J .navbar-caption:hover {
  color: #e43f3f;
}
@media (min-width: 992px) {
  .cid-tPb6JMku7J .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tPb6JMku7J .text_widget {
  margin-bottom: 32px;
}
.cid-tPb6JMku7J .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tPb6JMku7J .text_widget a:hover {
  opacity: .5;
}
.cid-tPb6JMku7J .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tPb6JMku7J .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tPb6JMku7J .mbr-section-subtitle,
.cid-tPb6JMku7J .text_widget,
.cid-tPb6JMku7J .mbr-section-btn {
  text-align: center;
}
.cid-tPb6JMku7J a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tP8UQOnnXn {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/tucson-moving-service10-1920x1324.jpg");
}
.cid-tP8UQOnnXn .mbr-section-title {
  color: #ffffff;
}
.cid-tP8UQOnnXn .mbr-text,
.cid-tP8UQOnnXn .mbr-section-btn {
  color: #fafafa;
}
.cid-tP8UZloi9C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-tP8UZloi9C .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP8UZloi9C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP8UZloi9C .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tP8UZloi9C .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tP8UZloi9C .container {
    padding: 0 30px;
  }
}
.cid-tP8UZloi9C .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tP8UZloi9C .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tP8UZloi9C .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #ffffff;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-tP8UZloi9C .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tP8UZloi9C .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-tP8UZloi9C .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tP8UZloi9C .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tP8UZloi9C .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tP8UZloi9C .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tP8UZloi9C .mbr-section-title {
  color: #ffffff;
}
.cid-tP8UZloi9C .mbr-card-title {
  color: #2b2b2b;
}
.cid-tP8UZloi9C .mbr-text {
  color: #000000;
}
.cid-tP8UZloi9C .mbr-number {
  color: #FE5115;
}
.cid-tP9ZUgiItT {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #fdfcfa;
}
.cid-tP9ZUgiItT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP9ZUgiItT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP9ZUgiItT .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tP9ZUgiItT .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tP9ZUgiItT .container {
    padding: 0;
  }
}
.cid-tP9ZUgiItT .row {
  justify-content: center;
}
.cid-tP9ZUgiItT .title-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tP9ZUgiItT .title-wrapper {
    padding: 0 16px;
  }
}
.cid-tP9ZUgiItT .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tP9ZUgiItT .google-map iframe {
  height: 550px;
}
@media (max-width: 992px) {
  .cid-tP9ZUgiItT .google-map iframe {
    height: 300px;
  }
}
.cid-tP9ZUgiItT .mbr-section-title {
  color: #263652;
  text-align: center;
}
.cid-tP9ZKul5T8 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tP9ZKul5T8 [class^="socicon-"]:before,
.cid-tP9ZKul5T8 [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-tP9ZKul5T8 .social-list {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tP9ZKul5T8 .soc-item {
  width: 50px;
  height: 50px;
  background: #133996;
  border-radius: 100%;
  display: flex;
  -webkit-box-shadow: 0 10px 15px rgba(10, 31, 82, 0.4);
  box-shadow: 0 10px 15px rgba(10, 31, 82, 0.4);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-tP9ZKul5T8 .soc-item span {
  font-size: 1.4rem;
  color: #fc643f !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-tP9ZKul5T8 .soc-item:hover span {
  color: #fdece8 !important;
}
.cid-tP9ZKul5T8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP9ZKul5T8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPahk6GnKl {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tPahk6GnKl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPahk6GnKl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPahk6GnKl .container {
  max-width: 1600px;
}
.cid-tPahk6GnKl .border-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .cid-tPahk6GnKl .border-container {
    padding: 48px 0;
  }
}
@media (max-width: 575px) {
  .cid-tPahk6GnKl .border-container {
    padding: 30px 0;
  }
}
.cid-tPahk6GnKl .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-tPahk6GnKl .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-tPahk6GnKl .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-tPahk6GnKl .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-tPahk6GnKl .border-frame {
  position: absolute;
  z-index: 3;
  width: 60px;
  aspect-ratio: 1;
  background-color: #000000;
  border-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .cid-tPahk6GnKl .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-tPahk6GnKl .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-tPahk6GnKl .border-frame {
    width: 7%;
  }
}
.cid-tPahk6GnKl .footer-main-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.cid-tPahk6GnKl .footer-item-container {
  width: 33.33333333%;
  flex-grow: 1;
  padding: 80px;
}
.cid-tPahk6GnKl .footer-item-container:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .cid-tPahk6GnKl .footer-item-container {
    width: 100%;
    padding: 40px 40px 40px 120px;
  }
  .cid-tPahk6GnKl .footer-item-container:not(:first-child) {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 575px) {
  .cid-tPahk6GnKl .footer-item-container {
    padding: 26px 26px 26px 76px;
  }
}
.cid-tPahk6GnKl .footer-item {
  height: 100%;
}
.cid-tPahk6GnKl .mbr-section-subtitle {
  color: #BF9341;
  width: 100%;
  margin-bottom: 64px;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tPahk6GnKl .mbr-section-subtitle {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-tPahk6GnKl .mbr-section-subtitle {
    margin-bottom: 40px;
  }
}
.cid-tPahk6GnKl .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-tPahk6GnKl .mbr-section-btn {
  margin-top: 20px;
}
.cid-tPahk6GnKl .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #BF9341;
}
.cid-tPahk6GnKl .list li {
  position: relative;
  width: 100%;
  color: inherit !important;
  padding: 0 0 0 30px;
  margin: 10px 0;
  transition: .3s all;
}
.cid-tPahk6GnKl .list li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: currentColor;
}
.cid-tPahk6GnKl .list li:hover {
  color: #e43f3f !important;
}
.cid-tPahk6GnKl .list a {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tPahk6GnKl .list a p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tPahk6GnKl .list a:hover {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tPahk6GnKl .list a:hover p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tPahk6GnKl .social-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
}
.cid-tPahk6GnKl .social-row .mbr-iconfont {
  font-size: 18px;
  color: #b84358;
  margin-right: 20px;
}
.cid-tPahk6GnKl .social-text {
  color: #BF9341;
  transition: .4s all;
  margin-bottom: 0 !important;
}
.cid-tPahk6GnKl .soc-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0;
  transition: .4s all;
}
.cid-tPahk6GnKl .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s all;
}
.cid-tPahk6GnKl .soc-item:hover .mbr-iconfont {
  color: #e43f3f !important;
}
.cid-tPahk6GnKl .soc-item:hover .social-text {
  color: #e43f3f !important;
}
.cid-tPahk6GnKl .copyright-container {
  width: 100%;
  padding: 0;
  margin-top: 56px;
}
@media (max-width: 991px) {
  .cid-tPahk6GnKl .copyright-container {
    margin-top: 48px;
  }
}
@media (max-width: 575px) {
  .cid-tPahk6GnKl .copyright-container {
    margin-top: 30px;
  }
}
.cid-tPahk6GnKl .copyright-text {
  color: #BF9341;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tPahk6GnKl .copyright-text {
    text-align: center !important;
  }
}
.cid-tPb6JMku7J {
  border-bottom: 1px solid #e33030;
  border-radius: 8px 8px 0 0 !important;
}
.cid-tPb6JMku7J .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tPb6JMku7J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tPb6JMku7J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPb6JMku7J .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tPb6JMku7J .menu_box .navbar.opened,
  .cid-tPb6JMku7J .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tPb6JMku7J .navbar-dropdown {
  position: relative !important;
}
.cid-tPb6JMku7J .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tPb6JMku7J .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tPb6JMku7J .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tPb6JMku7J .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #e33030;
  }
  .cid-tPb6JMku7J .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tPb6JMku7J .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tPb6JMku7J .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tPb6JMku7J .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tPb6JMku7J .offcanvas-body .mbr-text,
  .cid-tPb6JMku7J .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tPb6JMku7J .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #e33030;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tPb6JMku7J ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tPb6JMku7J .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tPb6JMku7J .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-tPb6JMku7J .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tPb6JMku7J li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tPb6JMku7J .lg_brand {
    margin: 0 1rem;
  }
  .cid-tPb6JMku7J .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-tPb6JMku7J .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tPb6JMku7J .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .nav-item {
    margin: 0 !important;
  }
}
.cid-tPb6JMku7J .nav-item .nav-link:hover,
.cid-tPb6JMku7J .nav-item .nav-link:focus {
  opacity: .5;
  color: #e43f3f !important;
  transition: all 0.3s ease-out;
}
.cid-tPb6JMku7J .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tPb6JMku7J .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tPb6JMku7J .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tPb6JMku7J .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-tPb6JMku7J .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tPb6JMku7J .offcanvas_box {
    display: none;
  }
}
.cid-tPb6JMku7J .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tPb6JMku7J .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tPb6JMku7J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tPb6JMku7J .container {
  display: flex;
  margin: auto;
}
.cid-tPb6JMku7J .iconfont-wrapper {
  color: #e33030;
  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-tPb6JMku7J .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tPb6JMku7J .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tPb6JMku7J .navbar-caption {
  color: #E33030;
}
.cid-tPb6JMku7J .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tPb6JMku7J .navbar-nav {
    margin: 0;
  }
}
.cid-tPb6JMku7J .dropdown-menu,
.cid-tPb6JMku7J .navbar.opened {
  background-color: false !important;
}
.cid-tPb6JMku7J .nav-item:focus,
.cid-tPb6JMku7J .nav-link:focus {
  outline: none;
}
.cid-tPb6JMku7J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPb6JMku7J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPb6JMku7J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPb6JMku7J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPb6JMku7J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPb6JMku7J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPb6JMku7J .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tPb6JMku7J .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tPb6JMku7J .navbar.opened {
  transition: all 0.3s;
}
.cid-tPb6JMku7J .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tPb6JMku7J .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 20px;
}
.cid-tPb6JMku7J .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tPb6JMku7J .navbar.collapsed {
  justify-content: center;
}
.cid-tPb6JMku7J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPb6JMku7J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tPb6JMku7J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPb6JMku7J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPb6JMku7J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPb6JMku7J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tPb6JMku7J .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tPb6JMku7J .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tPb6JMku7J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPb6JMku7J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPb6JMku7J .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tPb6JMku7J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPb6JMku7J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tPb6JMku7J .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPb6JMku7J .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tPb6JMku7J .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tPb6JMku7J .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tPb6JMku7J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tPb6JMku7J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPb6JMku7J .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tPb6JMku7J .navbar.navbar-short {
  min-height: 60px;
}
.cid-tPb6JMku7J .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPb6JMku7J .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPb6JMku7J .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-tPb6JMku7J .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tPb6JMku7J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPb6JMku7J .dropdown-item.active,
.cid-tPb6JMku7J .dropdown-item:active {
  background-color: transparent;
}
.cid-tPb6JMku7J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPb6JMku7J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPb6JMku7J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPb6JMku7J .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPb6JMku7J ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tPb6JMku7J .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPb6JMku7J button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #e33030;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPb6JMku7J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPb6JMku7J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPb6JMku7J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPb6JMku7J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPb6JMku7J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tPb6JMku7J .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-tPb6JMku7J .navbar {
    height: 70px;
  }
  .cid-tPb6JMku7J .navbar.opened {
    height: auto;
  }
  .cid-tPb6JMku7J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPb6JMku7J .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tPb6JMku7J .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-tPb6JMku7J .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tPb6JMku7J .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 150px;
}
@media (max-width: 992px) {
  .cid-tPb6JMku7J .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-tPb6JMku7J .navbar-caption:hover {
  color: #e43f3f;
}
@media (min-width: 992px) {
  .cid-tPb6JMku7J .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tPb6JMku7J .text_widget {
  margin-bottom: 32px;
}
.cid-tPb6JMku7J .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tPb6JMku7J .text_widget a:hover {
  opacity: .5;
}
.cid-tPb6JMku7J .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tPb6JMku7J .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tPb6JMku7J .mbr-section-subtitle,
.cid-tPb6JMku7J .text_widget,
.cid-tPb6JMku7J .mbr-section-btn {
  text-align: center;
}
.cid-tPb6JMku7J a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tPam0rUi5F {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/tucson-moving-service3-1110x741.jpg");
}
.cid-tPam0rUi5F .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tPam0rUi5F .mbr-text,
.cid-tPam0rUi5F .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-tPam0sIAIr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1271.jpg");
}
.cid-tPam0sIAIr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPam0sIAIr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPam0sIAIr .title-container {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-tPam0sIAIr .title-container {
    margin-bottom: 25px;
  }
}
.cid-tPam0sIAIr .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tPam0sIAIr .mbr-text {
  color: #00524F;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .cid-tPam0sIAIr .mbr-text {
    margin-top: 24px;
  }
}
.cid-tPam0sIAIr .tabl-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tPam0sIAIr .tabl-container {
    margin-top: 25px;
  }
}
.cid-tPam0sIAIr .item-container {
  width: 100%;
  display: flex;
}
.cid-tPam0sIAIr .item-container:not(:first-child) {
  margin-top: 30px;
}
.cid-tPam0sIAIr .card-text {
  color: #ffffff;
  width: 100%;
  text-align: left;
}
.cid-tPam0tzufv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-tPam0tzufv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPam0tzufv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPam0tzufv .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tPam0tzufv .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tPam0tzufv .container {
    padding: 0 30px;
  }
}
.cid-tPam0tzufv .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tPam0tzufv .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tPam0tzufv .mbr-section-btn {
  margin-bottom: 70px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-tPam0tzufv .mbr-section-btn {
    margin-bottom: 0;
    text-align: left;
  }
}
.cid-tPam0tzufv .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tPam0tzufv .mbr-section-title {
  color: #ffffff;
}
.cid-tPam0tzufv .mbr-text {
  color: #000000;
}
.cid-tPam0uyVBM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPam0uyVBM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPam0uyVBM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPam0uyVBM .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tPam0uyVBM .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tPam0uyVBM .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tPam0uyVBM .mbr-section-title {
  color: #131313;
}
.cid-tPam0uyVBM .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tPam0uyVBM .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tPam0uyVBM .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tPam0uyVBM .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: #9fdbf8;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tPam0uyVBM .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tPam0uyVBM .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tPam0uyVBM .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tPam0uyVBM .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tPam0uyVBM .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tPam0uyVBM .card-title {
  color: #131313;
}
.cid-tPam0uyVBM .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tPam0uyVBM .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tPam0uyVBM .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tPam0uyVBM .card-link {
    margin-top: 15px;
  }
}
.cid-tPam0uyVBM .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tPam0uyVBM .card-title,
.cid-tPam0uyVBM .iconfont-wrapper {
  text-align: center;
}
.cid-tPam0vCq3n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPam0vCq3n .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPam0vCq3n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPam0vCq3n .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tPam0vCq3n .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tPam0vCq3n .container {
    padding: 0 30px;
  }
}
.cid-tPam0vCq3n .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tPam0vCq3n .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tPam0vCq3n .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #9fdbf8;
  border-radius: 16em 3em;
  padding: 70px 230px 70px 70px;
  border-radius: 3em 16em;
}
@media (max-width: 992px) {
  .cid-tPam0vCq3n .card-wrapper {
    border-radius: 0 3em 0 3em;
    padding: 30px 20px;
  }
}
@media (max-width: 992px) {
  .cid-tPam0vCq3n .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tPam0vCq3n .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
  margin: 0 50px 0 0;
}
@media (max-width: 992px) {
  .cid-tPam0vCq3n .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
@media (max-width: 992px) {
  .cid-tPam0vCq3n .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tPam0vCq3n .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tPam0vCq3n .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tPam0vCq3n .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tPam0vCq3n .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tPam0vCq3n .mbr-card-title {
  color: #2b2b2b;
}
.cid-tPam0vCq3n .mbr-text {
  color: #000000;
}
.cid-tPam0vCq3n .mbr-number {
  color: #FE5115;
}
.cid-tPam0wAsND {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-tPam0wAsND .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPam0wAsND .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPam0wAsND .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tPam0wAsND .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tPam0wAsND .container {
    padding: 0 30px;
  }
}
.cid-tPam0wAsND .row {
  justify-content: center;
}
.cid-tPam0wAsND .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-tPam0wAsND .title-wrapper {
    height: auto;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.cid-tPam0wAsND .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 25px;
}
.cid-tPam0wAsND .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tPam0wAsND .title-wrapper .title-wrap .mbr-price {
  margin-bottom: 0;
}
.cid-tPam0wAsND .image-wrapper {
  padding: 0 10px;
}
.cid-tPam0wAsND .image-wrapper img {
  height: 390px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tPam0wAsND .image-wrapper img {
    height: 300px;
  }
}
.cid-tPam0wAsND .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-tPam0wAsND .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-tPam0wAsND .mbr-price {
  color: #212529;
  text-align: center;
}
.cid-tPam0xzfk3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tPam0xzfk3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPam0xzfk3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPam0xzfk3 .container-small,
.cid-tPam0xzfk3 .container-fluid {
  padding: 0 !important;
}
.cid-tPam0xzfk3 .container-small {
  max-width: 1440px;
}
.cid-tPam0xzfk3 .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #9fdbf8;
}
@media (max-width: 991px) {
  .cid-tPam0xzfk3 .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-tPam0xzfk3 .text-box {
    padding: 50px 10px;
  }
}
.cid-tPam0xzfk3 .mbr-section-title {
  color: #131313;
  text-align: left;
}
.cid-tPam0xzfk3 .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-tPam0xzfk3 .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-tPam0xzfk3 .mbr-text {
    margin-top: 20px;
  }
}
.cid-tPam0xzfk3 .mbr-text a {
  text-decoration: underline;
}
.cid-tPam0xzfk3 .mbr-section-btn {
  margin-top: 34px;
}
.cid-tPam0xzfk3 .mbr-section-subtitle,
.cid-tPam0xzfk3 .mbr-section-btn DIV {
  text-align: left;
}
.cid-tPam0ytVFU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPam0ytVFU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPam0ytVFU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPam0ytVFU .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tPam0ytVFU .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tPam0ytVFU .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tPam0ytVFU .mbr-section-title {
  color: #131313;
}
.cid-tPam0ytVFU .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tPam0ytVFU .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tPam0ytVFU .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tPam0ytVFU .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #9fdbf8;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tPam0ytVFU .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tPam0ytVFU .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tPam0ytVFU .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tPam0ytVFU .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tPam0ytVFU .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tPam0ytVFU .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tPam0ytVFU .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tPam0ytVFU .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tPam0ytVFU .content-wrap {
    margin-top: 0;
  }
}
.cid-tPam0ytVFU .card-title {
  color: #131313;
}
.cid-tPam0ytVFU .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tPam0ytVFU .card-text {
    margin-top: 15px;
  }
}
.cid-tPam0ytVFU .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tPam0ytVFU .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tPam0ytVFU .card-link {
    margin-top: 15px;
  }
}
.cid-tPam0ytVFU .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tPam0zBWvu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
  overflow: hidden;
}
.cid-tPam0zBWvu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPam0zBWvu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPam0zBWvu .image-wrapper {
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
}
.cid-tPam0zBWvu img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
@media (max-width: 767px) {
  .cid-tPam0zBWvu img {
    min-height: 400px;
  }
}
.cid-tPam0AwBZK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPam0AwBZK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPam0AwBZK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPam0AwBZK .container,
.cid-tPam0AwBZK .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tPam0AwBZK .container,
  .cid-tPam0AwBZK .container-fluid {
    padding: 0 20px;
  }
}
.cid-tPam0AwBZK .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tPam0AwBZK .title-wrapper {
    margin-bottom: 50px;
    padding: 0;
  }
}
.cid-tPam0AwBZK .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tPam0AwBZK .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 50px;
  border-left: 1px solid #3d4045;
}
@media (max-width: 992px) {
  .cid-tPam0AwBZK .text-wrapper {
    border: none;
  }
}
@media (max-width: 992px) {
  .cid-tPam0AwBZK .text-wrapper {
    padding: 0;
  }
}
.cid-tPam0AwBZK .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tPam0AwBZK .mbr-section-title {
  color: #000000;
}
.cid-tPam0AwBZK .mbr-text {
  color: #000000;
}
.cid-tPam0BoEPx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-tPam0BoEPx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPam0BoEPx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPam0BoEPx .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tPam0BoEPx .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tPam0BoEPx .container {
    padding: 0 30px;
  }
}
.cid-tPam0BoEPx .mbr-section-title {
  margin-bottom: 70px;
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tPam0BoEPx .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tPam0BoEPx .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-tPam0BoEPx .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-tPam0BoEPx .video-block .video-wrapper .app-video-wrapper::before {
  color: #fe5115;
  text-shadow: none;
}
.cid-tPam0BoEPx .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-tPam0BoEPx .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-tPam0CnzP8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPam0CnzP8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPam0CnzP8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPam0CnzP8 .row {
  justify-content: center;
}
.cid-tPam0CnzP8 .title-wrapper {
  padding: 71px;
  background-color: #9fdbf8;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tPam0CnzP8 .title-wrapper {
    padding: 50px 25px;
  }
}
.cid-tPam0CnzP8 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tPam0CnzP8 .text-wrapper .mbr-text {
  margin-bottom: 25px;
}
.cid-tPam0CnzP8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tPam0CnzP8 .mbr-text {
  color: #747474;
}
.cid-tPam0CnzP8 .mbr-text,
.cid-tPam0CnzP8 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tPam0CnzP8 .mbr-section-title,
.cid-tPam0CnzP8 .mbr-iconfont {
  color: #000000;
}
.cid-tPam0Dl7OV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #9fdbf8;
}
.cid-tPam0Dl7OV .border-bottom {
  border-color: #969494 !important;
}
.cid-tPam0Dl7OV .row[aria-expanded="true"] .cross__container .cross {
  transform: rotate(45deg);
}
.cid-tPam0Dl7OV .row[data-bs-toggle="collapse"]:hover .cross__container .cross {
  background-color: #eeeeee;
}
.cid-tPam0Dl7OV .cross {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  transition: transform ease-in-out 0.2s, background-color ease-in-out 0.4s;
}
.cid-tPam0Dl7OV .cross-line1,
.cid-tPam0Dl7OV .cross-line2 {
  width: 20px;
  height: 1px;
  background-color: #414142;
  transform: translate(-50%);
}
.cid-tPam0Dl7OV .cross-line1 {
  transform: translateX(-50%) rotate(90deg);
}
.cid-tPam0Dl7OV .colored-text {
  color: #a68462 !important;
}
.cid-tPam0Dl7OV .mbr-section-title {
  color: #ffffff;
}
.cid-tPam0Dl7OV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tPam0Dl7OV .mbr-text {
  color: #ffffff;
}
.cid-tPam0Dl7OV .mbr-section-title.main-title {
  color: #ffffff;
  text-align: center;
}
.cid-tPam0Dl7OV .mbr-section-title.spoiler-title {
  color: #000000;
}
.cid-tPands5lxh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPands5lxh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPands5lxh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPands5lxh .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tPands5lxh .container-fluid {
    padding: 0 25px;
  }
}
.cid-tPands5lxh .container-fluid .row {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tPands5lxh .container {
    padding: 0 25px;
  }
}
.cid-tPands5lxh .row {
  border: 1px solid #9fdbf8;
}
.cid-tPands5lxh .card {
  padding: 0;
}
.cid-tPands5lxh .card .image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-tPands5lxh .card .image-wrapper img {
  height: 100%;
  object-fit: cover;
  max-height: 610px;
}
@media (max-width: 992px) {
  .cid-tPands5lxh .card .image-wrapper img {
    max-height: 100%;
    height: 300px;
  }
}
.cid-tPands5lxh .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 70px 60px;
  height: 100%;
  background-color: #9fdbf8;
}
@media (max-width: 992px) {
  .cid-tPands5lxh .title-wrapper {
    padding: 60px 25px;
  }
}
.cid-tPands5lxh .title-wrapper .title-wrap {
  width: 100%;
}
.cid-tPands5lxh .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tPands5lxh .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 20px;
}
.cid-tPands5lxh .title-wrapper .title-wrap .mbr-section-btn {
  margin-top: 35px;
}
.cid-tPands5lxh .title-wrapper .mbr-desc {
  width: 100%;
  margin-bottom: 0;
}
.cid-tPands5lxh .mbr-section-title {
  color: #ffffff;
}
.cid-tPands5lxh .mbr-text {
  color: #000000;
}
.cid-tPands5lxh .mbr-desc {
  color: #ffffff;
}
.cid-tPands5lxh .mbr-section-title,
.cid-tPands5lxh .mbr-section-btn {
  color: #000000;
}
.cid-tPam0Gc4aQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-tPam0Gc4aQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPam0Gc4aQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tPam0Gc4aQ .row {
    padding: 0 24px;
  }
}
.cid-tPam0Gc4aQ .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tPam0Gc4aQ .title-wrapper .mbr-text {
  margin-bottom: 26px;
}
.cid-tPam0Gc4aQ .mbr-section-title {
  color: #005c62;
}
.cid-tPam0Gc4aQ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tPam0Gc4aQ .mbr-section-title,
.cid-tPam0Gc4aQ .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tPb3i5OvC9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcfbf5;
}
.cid-tPb3i5OvC9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPb3i5OvC9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPb3i5OvC9 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tPb3i5OvC9 .container-fluid {
    padding: 0 20px;
  }
}
.cid-tPb3i5OvC9 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tPb3i5OvC9 .container {
    padding: 0 20px;
  }
}
.cid-tPb3i5OvC9 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tPb3i5OvC9 .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tPb3i5OvC9 .card-wrap .panel-group {
  padding: 64px;
  border-radius: 0;
  border: 2px solid #d7d7d7;
}
@media (max-width: 992px) {
  .cid-tPb3i5OvC9 .card-wrap .panel-group {
    padding: 50px 20px;
  }
}
.cid-tPb3i5OvC9 .card-wrap .panel-group .card {
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
}
.cid-tPb3i5OvC9 .card-wrap .panel-group .card .card-header {
  background-color: transparent;
  border-bottom: none;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .cid-tPb3i5OvC9 .card-wrap .panel-group .card .card-header {
    padding: 15px 0;
  }
}
.cid-tPb3i5OvC9 .card-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-tPb3i5OvC9 .card-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(90deg);
  background-color: #9fdbf8;
}
.cid-tPb3i5OvC9 .card-wrap .panel-group .card .card-header .panel-title:hover .mbr-iconfont,
.cid-tPb3i5OvC9 .card-wrap .panel-group .card .card-header .panel-title:focus .mbr-iconfont {
  background-color: #9fdbf8;
}
.cid-tPb3i5OvC9 .card-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin: 0;
}
.cid-tPb3i5OvC9 .card-wrap .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  border-radius: 100%;
  font-size: 16px;
  color: #1d1d1d;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
}
.cid-tPb3i5OvC9 .card-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 32px;
}
.cid-tPb3i5OvC9 .mbr-section-title {
  color: #1d1d1d;
}
.cid-tPb3i5OvC9 .panel-title-edit {
  color: #1d1d1d;
}
.cid-tPb3i5OvC9 .panel-text {
  color: #1d1d1d;
}
.cid-tPam0HafAJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-tPam0HafAJ .google-map {
  height: 35rem;
  position: relative;
}
.cid-tPam0HafAJ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tPam0HafAJ .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-tPam0HafAJ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tPam0HafAJ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tPam0I9VyI {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tPam0I9VyI [class^="socicon-"]:before,
.cid-tPam0I9VyI [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-tPam0I9VyI .social-list {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tPam0I9VyI .soc-item {
  width: 50px;
  height: 50px;
  background: #9fdbf8;
  border-radius: 100%;
  display: flex;
  -webkit-box-shadow: 0 10px 15px rgba(88, 192, 243, 0.4);
  box-shadow: 0 10px 15px rgba(88, 192, 243, 0.4);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-tPam0I9VyI .soc-item span {
  font-size: 1.4rem;
  color: #000000 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-tPam0I9VyI .soc-item:hover span {
  color: #fdece8 !important;
}
.cid-tPam0I9VyI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPam0I9VyI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPam0JlJQ6 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tPam0JlJQ6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPam0JlJQ6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPam0JlJQ6 .container {
  max-width: 1600px;
}
.cid-tPam0JlJQ6 .border-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .cid-tPam0JlJQ6 .border-container {
    padding: 48px 0;
  }
}
@media (max-width: 575px) {
  .cid-tPam0JlJQ6 .border-container {
    padding: 30px 0;
  }
}
.cid-tPam0JlJQ6 .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-tPam0JlJQ6 .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-tPam0JlJQ6 .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-tPam0JlJQ6 .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-tPam0JlJQ6 .border-frame {
  position: absolute;
  z-index: 3;
  width: 60px;
  aspect-ratio: 1;
  background-color: #000000;
  border-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .cid-tPam0JlJQ6 .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-tPam0JlJQ6 .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-tPam0JlJQ6 .border-frame {
    width: 7%;
  }
}
.cid-tPam0JlJQ6 .footer-main-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.cid-tPam0JlJQ6 .footer-item-container {
  width: 33.33333333%;
  flex-grow: 1;
  padding: 80px;
}
.cid-tPam0JlJQ6 .footer-item-container:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .cid-tPam0JlJQ6 .footer-item-container {
    width: 100%;
    padding: 40px 40px 40px 120px;
  }
  .cid-tPam0JlJQ6 .footer-item-container:not(:first-child) {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 575px) {
  .cid-tPam0JlJQ6 .footer-item-container {
    padding: 26px 26px 26px 76px;
  }
}
.cid-tPam0JlJQ6 .footer-item {
  height: 100%;
}
.cid-tPam0JlJQ6 .mbr-section-subtitle {
  color: #BF9341;
  width: 100%;
  margin-bottom: 64px;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tPam0JlJQ6 .mbr-section-subtitle {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-tPam0JlJQ6 .mbr-section-subtitle {
    margin-bottom: 40px;
  }
}
.cid-tPam0JlJQ6 .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-tPam0JlJQ6 .mbr-section-btn {
  margin-top: 20px;
}
.cid-tPam0JlJQ6 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #BF9341;
}
.cid-tPam0JlJQ6 .list li {
  position: relative;
  width: 100%;
  color: inherit !important;
  padding: 0 0 0 30px;
  margin: 10px 0;
  transition: .3s all;
}
.cid-tPam0JlJQ6 .list li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: currentColor;
}
.cid-tPam0JlJQ6 .list li:hover {
  color: #e43f3f !important;
}
.cid-tPam0JlJQ6 .list a {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tPam0JlJQ6 .list a p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tPam0JlJQ6 .list a:hover {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tPam0JlJQ6 .list a:hover p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tPam0JlJQ6 .social-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
}
.cid-tPam0JlJQ6 .social-row .mbr-iconfont {
  font-size: 18px;
  color: #b84358;
  margin-right: 20px;
}
.cid-tPam0JlJQ6 .social-text {
  color: #BF9341;
  transition: .4s all;
  margin-bottom: 0 !important;
}
.cid-tPam0JlJQ6 .soc-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0;
  transition: .4s all;
}
.cid-tPam0JlJQ6 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s all;
}
.cid-tPam0JlJQ6 .soc-item:hover .mbr-iconfont {
  color: #e43f3f !important;
}
.cid-tPam0JlJQ6 .soc-item:hover .social-text {
  color: #e43f3f !important;
}
.cid-tPam0JlJQ6 .copyright-container {
  width: 100%;
  padding: 0;
  margin-top: 56px;
}
@media (max-width: 991px) {
  .cid-tPam0JlJQ6 .copyright-container {
    margin-top: 48px;
  }
}
@media (max-width: 575px) {
  .cid-tPam0JlJQ6 .copyright-container {
    margin-top: 30px;
  }
}
.cid-tPam0JlJQ6 .copyright-text {
  color: #BF9341;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tPam0JlJQ6 .copyright-text {
    text-align: center !important;
  }
}
.cid-tPb6JMku7J {
  border-bottom: 1px solid #e33030;
  border-radius: 8px 8px 0 0 !important;
}
.cid-tPb6JMku7J .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tPb6JMku7J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tPb6JMku7J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPb6JMku7J .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tPb6JMku7J .menu_box .navbar.opened,
  .cid-tPb6JMku7J .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tPb6JMku7J .navbar-dropdown {
  position: relative !important;
}
.cid-tPb6JMku7J .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tPb6JMku7J .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tPb6JMku7J .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tPb6JMku7J .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #e33030;
  }
  .cid-tPb6JMku7J .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tPb6JMku7J .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tPb6JMku7J .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tPb6JMku7J .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tPb6JMku7J .offcanvas-body .mbr-text,
  .cid-tPb6JMku7J .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tPb6JMku7J .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #e33030;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tPb6JMku7J ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tPb6JMku7J .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tPb6JMku7J .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-tPb6JMku7J .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tPb6JMku7J li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tPb6JMku7J .lg_brand {
    margin: 0 1rem;
  }
  .cid-tPb6JMku7J .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-tPb6JMku7J .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tPb6JMku7J .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .nav-item {
    margin: 0 !important;
  }
}
.cid-tPb6JMku7J .nav-item .nav-link:hover,
.cid-tPb6JMku7J .nav-item .nav-link:focus {
  opacity: .5;
  color: #e43f3f !important;
  transition: all 0.3s ease-out;
}
.cid-tPb6JMku7J .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tPb6JMku7J .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tPb6JMku7J .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tPb6JMku7J .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-tPb6JMku7J .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tPb6JMku7J .offcanvas_box {
    display: none;
  }
}
.cid-tPb6JMku7J .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tPb6JMku7J .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tPb6JMku7J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tPb6JMku7J .container {
  display: flex;
  margin: auto;
}
.cid-tPb6JMku7J .iconfont-wrapper {
  color: #e33030;
  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-tPb6JMku7J .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tPb6JMku7J .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tPb6JMku7J .navbar-caption {
  color: #E33030;
}
.cid-tPb6JMku7J .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tPb6JMku7J .navbar-nav {
    margin: 0;
  }
}
.cid-tPb6JMku7J .dropdown-menu,
.cid-tPb6JMku7J .navbar.opened {
  background-color: false !important;
}
.cid-tPb6JMku7J .nav-item:focus,
.cid-tPb6JMku7J .nav-link:focus {
  outline: none;
}
.cid-tPb6JMku7J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPb6JMku7J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPb6JMku7J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPb6JMku7J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPb6JMku7J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPb6JMku7J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPb6JMku7J .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tPb6JMku7J .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tPb6JMku7J .navbar.opened {
  transition: all 0.3s;
}
.cid-tPb6JMku7J .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tPb6JMku7J .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 20px;
}
.cid-tPb6JMku7J .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tPb6JMku7J .navbar.collapsed {
  justify-content: center;
}
.cid-tPb6JMku7J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPb6JMku7J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tPb6JMku7J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPb6JMku7J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPb6JMku7J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPb6JMku7J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tPb6JMku7J .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tPb6JMku7J .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tPb6JMku7J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPb6JMku7J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPb6JMku7J .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tPb6JMku7J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPb6JMku7J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tPb6JMku7J .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPb6JMku7J .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tPb6JMku7J .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tPb6JMku7J .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tPb6JMku7J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tPb6JMku7J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPb6JMku7J .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tPb6JMku7J .navbar.navbar-short {
  min-height: 60px;
}
.cid-tPb6JMku7J .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPb6JMku7J .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPb6JMku7J .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-tPb6JMku7J .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tPb6JMku7J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPb6JMku7J .dropdown-item.active,
.cid-tPb6JMku7J .dropdown-item:active {
  background-color: transparent;
}
.cid-tPb6JMku7J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPb6JMku7J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPb6JMku7J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPb6JMku7J .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPb6JMku7J ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tPb6JMku7J .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPb6JMku7J button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #e33030;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPb6JMku7J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPb6JMku7J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPb6JMku7J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPb6JMku7J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPb6JMku7J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tPb6JMku7J .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-tPb6JMku7J .navbar {
    height: 70px;
  }
  .cid-tPb6JMku7J .navbar.opened {
    height: auto;
  }
  .cid-tPb6JMku7J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPb6JMku7J .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tPb6JMku7J .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-tPb6JMku7J .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tPb6JMku7J .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 150px;
}
@media (max-width: 992px) {
  .cid-tPb6JMku7J .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-tPb6JMku7J .navbar-caption:hover {
  color: #e43f3f;
}
@media (min-width: 992px) {
  .cid-tPb6JMku7J .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tPb6JMku7J .text_widget {
  margin-bottom: 32px;
}
.cid-tPb6JMku7J .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tPb6JMku7J .text_widget a:hover {
  opacity: .5;
}
.cid-tPb6JMku7J .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tPb6JMku7J .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tPb6JMku7J .mbr-section-subtitle,
.cid-tPb6JMku7J .text_widget,
.cid-tPb6JMku7J .mbr-section-btn {
  text-align: center;
}
.cid-tPb6JMku7J a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tPb2EcIM9m {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/tucson-moving-service5-2000x1333.jpg");
}
.cid-tPb2EcIM9m .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tPb2EcIM9m .mbr-text,
.cid-tPb2EcIM9m .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-tPb2Ef1nkJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1271.jpg");
}
.cid-tPb2Ef1nkJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPb2Ef1nkJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPb2Ef1nkJ .title-container {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-tPb2Ef1nkJ .title-container {
    margin-bottom: 25px;
  }
}
.cid-tPb2Ef1nkJ .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tPb2Ef1nkJ .mbr-text {
  color: #00524F;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .cid-tPb2Ef1nkJ .mbr-text {
    margin-top: 24px;
  }
}
.cid-tPb2Ef1nkJ .tabl-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tPb2Ef1nkJ .tabl-container {
    margin-top: 25px;
  }
}
.cid-tPb2Ef1nkJ .item-container {
  width: 100%;
  display: flex;
}
.cid-tPb2Ef1nkJ .item-container:not(:first-child) {
  margin-top: 30px;
}
.cid-tPb2Ef1nkJ .card-text {
  color: #ffffff;
  width: 100%;
  text-align: left;
}
.cid-tPb2Eg9Nxq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-tPb2Eg9Nxq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPb2Eg9Nxq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPb2Eg9Nxq .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tPb2Eg9Nxq .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tPb2Eg9Nxq .container {
    padding: 0 30px;
  }
}
.cid-tPb2Eg9Nxq .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tPb2Eg9Nxq .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tPb2Eg9Nxq .mbr-section-btn {
  margin-bottom: 70px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-tPb2Eg9Nxq .mbr-section-btn {
    margin-bottom: 0;
    text-align: left;
  }
}
.cid-tPb2Eg9Nxq .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tPb2Eg9Nxq .mbr-section-title {
  color: #ffffff;
}
.cid-tPb2Eg9Nxq .mbr-text {
  color: #000000;
}
.cid-tPb2Eh8Ozw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPb2Eh8Ozw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPb2Eh8Ozw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPb2Eh8Ozw .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tPb2Eh8Ozw .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tPb2Eh8Ozw .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tPb2Eh8Ozw .mbr-section-title {
  color: #131313;
}
.cid-tPb2Eh8Ozw .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tPb2Eh8Ozw .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tPb2Eh8Ozw .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tPb2Eh8Ozw .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: #9fdbf8;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tPb2Eh8Ozw .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tPb2Eh8Ozw .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tPb2Eh8Ozw .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tPb2Eh8Ozw .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tPb2Eh8Ozw .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tPb2Eh8Ozw .card-title {
  color: #131313;
}
.cid-tPb2Eh8Ozw .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tPb2Eh8Ozw .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tPb2Eh8Ozw .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tPb2Eh8Ozw .card-link {
    margin-top: 15px;
  }
}
.cid-tPb2Eh8Ozw .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tPb2Eh8Ozw .card-title,
.cid-tPb2Eh8Ozw .iconfont-wrapper {
  text-align: center;
}
.cid-tPb2EiP35A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPb2EiP35A .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPb2EiP35A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPb2EiP35A .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tPb2EiP35A .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tPb2EiP35A .container {
    padding: 0 30px;
  }
}
.cid-tPb2EiP35A .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tPb2EiP35A .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tPb2EiP35A .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #9fdbf8;
  border-radius: 16em 3em;
  padding: 70px 230px 70px 70px;
  border-radius: 3em 16em;
}
@media (max-width: 992px) {
  .cid-tPb2EiP35A .card-wrapper {
    border-radius: 0 3em 0 3em;
    padding: 30px 20px;
  }
}
@media (max-width: 992px) {
  .cid-tPb2EiP35A .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tPb2EiP35A .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
  margin: 0 50px 0 0;
}
@media (max-width: 992px) {
  .cid-tPb2EiP35A .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
@media (max-width: 992px) {
  .cid-tPb2EiP35A .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tPb2EiP35A .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tPb2EiP35A .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tPb2EiP35A .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tPb2EiP35A .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tPb2EiP35A .mbr-card-title {
  color: #2b2b2b;
}
.cid-tPb2EiP35A .mbr-text {
  color: #000000;
}
.cid-tPb2EiP35A .mbr-number {
  color: #FE5115;
}
.cid-tPb2EjZz8O {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-tPb2EjZz8O .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPb2EjZz8O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPb2EjZz8O .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tPb2EjZz8O .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tPb2EjZz8O .container {
    padding: 0 30px;
  }
}
.cid-tPb2EjZz8O .row {
  justify-content: center;
}
.cid-tPb2EjZz8O .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-tPb2EjZz8O .title-wrapper {
    height: auto;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.cid-tPb2EjZz8O .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 25px;
}
.cid-tPb2EjZz8O .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tPb2EjZz8O .title-wrapper .title-wrap .mbr-price {
  margin-bottom: 0;
}
.cid-tPb2EjZz8O .image-wrapper {
  padding: 0 10px;
}
.cid-tPb2EjZz8O .image-wrapper img {
  height: 390px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tPb2EjZz8O .image-wrapper img {
    height: 300px;
  }
}
.cid-tPb2EjZz8O .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-tPb2EjZz8O .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-tPb2EjZz8O .mbr-price {
  color: #212529;
  text-align: center;
}
.cid-tPb2Eladin {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tPb2Eladin .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPb2Eladin .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPb2Eladin .container-small,
.cid-tPb2Eladin .container-fluid {
  padding: 0 !important;
}
.cid-tPb2Eladin .container-small {
  max-width: 1440px;
}
.cid-tPb2Eladin .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #9fdbf8;
}
@media (max-width: 991px) {
  .cid-tPb2Eladin .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-tPb2Eladin .text-box {
    padding: 50px 10px;
  }
}
.cid-tPb2Eladin .mbr-section-title {
  color: #131313;
  text-align: left;
}
.cid-tPb2Eladin .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-tPb2Eladin .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-tPb2Eladin .mbr-text {
    margin-top: 20px;
  }
}
.cid-tPb2Eladin .mbr-text a {
  text-decoration: underline;
}
.cid-tPb2Eladin .mbr-section-btn {
  margin-top: 34px;
}
.cid-tPb2Eladin .mbr-section-subtitle,
.cid-tPb2Eladin .mbr-section-btn DIV {
  text-align: left;
}
.cid-tPb2Emo4hT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPb2Emo4hT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPb2Emo4hT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPb2Emo4hT .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tPb2Emo4hT .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tPb2Emo4hT .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tPb2Emo4hT .mbr-section-title {
  color: #131313;
}
.cid-tPb2Emo4hT .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
  text-align: left;
}
.cid-tPb2Emo4hT .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tPb2Emo4hT .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tPb2Emo4hT .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #9fdbf8;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tPb2Emo4hT .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tPb2Emo4hT .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tPb2Emo4hT .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tPb2Emo4hT .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tPb2Emo4hT .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tPb2Emo4hT .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tPb2Emo4hT .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tPb2Emo4hT .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tPb2Emo4hT .content-wrap {
    margin-top: 0;
  }
}
.cid-tPb2Emo4hT .card-title {
  color: #131313;
}
.cid-tPb2Emo4hT .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tPb2Emo4hT .card-text {
    margin-top: 15px;
  }
}
.cid-tPb2Emo4hT .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tPb2Emo4hT .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tPb2Emo4hT .card-link {
    margin-top: 15px;
  }
}
.cid-tPb2Emo4hT .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tPb2EofKCa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
  overflow: hidden;
}
.cid-tPb2EofKCa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPb2EofKCa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPb2EofKCa .image-wrapper {
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
}
.cid-tPb2EofKCa img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
@media (max-width: 767px) {
  .cid-tPb2EofKCa img {
    min-height: 400px;
  }
}
.cid-tPb2EsDx9L {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPb2EsDx9L .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPb2EsDx9L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPb2EsDx9L .container,
.cid-tPb2EsDx9L .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tPb2EsDx9L .container,
  .cid-tPb2EsDx9L .container-fluid {
    padding: 0 20px;
  }
}
.cid-tPb2EsDx9L .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-tPb2EsDx9L .title-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tPb2EsDx9L .title-wrapper {
    margin-bottom: 50px;
    padding: 0;
  }
}
.cid-tPb2EsDx9L .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tPb2EsDx9L .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 50px;
  border-left: 1px solid #3d4045;
  border-left: none;
  border-right: 1px solid #3d4045;
  padding-left: 0;
  padding-right: 50px;
}
@media (max-width: 992px) {
  .cid-tPb2EsDx9L .text-wrapper {
    border: none;
  }
}
@media (max-width: 992px) {
  .cid-tPb2EsDx9L .text-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tPb2EsDx9L .text-wrapper {
    padding: 0;
  }
}
.cid-tPb2EsDx9L .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tPb2EsDx9L .mbr-section-title {
  color: #000000;
}
.cid-tPb2EsDx9L .mbr-text {
  color: #000000;
}
.cid-tPb2Eu8t7E {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-tPb2Eu8t7E .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPb2Eu8t7E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPb2Eu8t7E .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tPb2Eu8t7E .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tPb2Eu8t7E .container {
    padding: 0 30px;
  }
}
.cid-tPb2Eu8t7E .mbr-section-title {
  margin-bottom: 70px;
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tPb2Eu8t7E .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tPb2Eu8t7E .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-tPb2Eu8t7E .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-tPb2Eu8t7E .video-block .video-wrapper .app-video-wrapper::before {
  color: #fe5115;
  text-shadow: none;
}
.cid-tPb2Eu8t7E .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-tPb2Eu8t7E .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-tPb2Evykr0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPb2Evykr0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPb2Evykr0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPb2Evykr0 .row {
  justify-content: center;
}
.cid-tPb2Evykr0 .title-wrapper {
  padding: 71px;
  background-color: #9fdbf8;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tPb2Evykr0 .title-wrapper {
    padding: 50px 25px;
  }
}
.cid-tPb2Evykr0 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tPb2Evykr0 .text-wrapper .mbr-text {
  margin-bottom: 25px;
}
.cid-tPb2Evykr0 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tPb2Evykr0 .mbr-text {
  color: #747474;
}
.cid-tPb2Evykr0 .mbr-text,
.cid-tPb2Evykr0 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tPb2Evykr0 .mbr-section-title,
.cid-tPb2Evykr0 .mbr-iconfont {
  color: #000000;
}
.cid-tPb2EwWCbf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #9fdbf8;
}
.cid-tPb2EwWCbf .border-bottom {
  border-color: #969494 !important;
}
.cid-tPb2EwWCbf .row[aria-expanded="true"] .cross__container .cross {
  transform: rotate(45deg);
}
.cid-tPb2EwWCbf .row[data-bs-toggle="collapse"]:hover .cross__container .cross {
  background-color: #eeeeee;
}
.cid-tPb2EwWCbf .cross {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  transition: transform ease-in-out 0.2s, background-color ease-in-out 0.4s;
}
.cid-tPb2EwWCbf .cross-line1,
.cid-tPb2EwWCbf .cross-line2 {
  width: 20px;
  height: 1px;
  background-color: #414142;
  transform: translate(-50%);
}
.cid-tPb2EwWCbf .cross-line1 {
  transform: translateX(-50%) rotate(90deg);
}
.cid-tPb2EwWCbf .colored-text {
  color: #a68462 !important;
}
.cid-tPb2EwWCbf .mbr-section-title {
  color: #ffffff;
}
.cid-tPb2EwWCbf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tPb2EwWCbf .mbr-text {
  color: #ffffff;
}
.cid-tPb2EwWCbf .mbr-section-title.main-title {
  color: #ffffff;
  text-align: center;
}
.cid-tPb2EwWCbf .mbr-section-title.spoiler-title {
  color: #000000;
}
.cid-tPb2Ez70XH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPb2Ez70XH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPb2Ez70XH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPb2Ez70XH .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tPb2Ez70XH .container-fluid {
    padding: 0 25px;
  }
}
.cid-tPb2Ez70XH .container-fluid .row {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tPb2Ez70XH .container {
    padding: 0 25px;
  }
}
.cid-tPb2Ez70XH .row {
  border: 1px solid #9fdbf8;
}
.cid-tPb2Ez70XH .card {
  padding: 0;
}
.cid-tPb2Ez70XH .card .image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-tPb2Ez70XH .card .image-wrapper img {
  height: 100%;
  object-fit: cover;
  max-height: 610px;
}
@media (max-width: 992px) {
  .cid-tPb2Ez70XH .card .image-wrapper img {
    max-height: 100%;
    height: 300px;
  }
}
.cid-tPb2Ez70XH .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 70px 60px;
  height: 100%;
  background-color: #9fdbf8;
}
@media (max-width: 992px) {
  .cid-tPb2Ez70XH .title-wrapper {
    padding: 60px 25px;
  }
}
.cid-tPb2Ez70XH .title-wrapper .title-wrap {
  width: 100%;
}
.cid-tPb2Ez70XH .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tPb2Ez70XH .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 20px;
}
.cid-tPb2Ez70XH .title-wrapper .title-wrap .mbr-section-btn {
  margin-top: 35px;
}
.cid-tPb2Ez70XH .title-wrapper .mbr-desc {
  width: 100%;
  margin-bottom: 0;
}
.cid-tPb2Ez70XH .mbr-section-title {
  color: #ffffff;
}
.cid-tPb2Ez70XH .mbr-text {
  color: #000000;
}
.cid-tPb2Ez70XH .mbr-desc {
  color: #ffffff;
}
.cid-tPb2Ez70XH .mbr-section-title,
.cid-tPb2Ez70XH .mbr-section-btn {
  color: #000000;
}
.cid-tPb2EBjzKj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-tPb2EBjzKj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPb2EBjzKj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tPb2EBjzKj .row {
    padding: 0 24px;
  }
}
.cid-tPb2EBjzKj .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tPb2EBjzKj .title-wrapper .mbr-text {
  margin-bottom: 26px;
}
.cid-tPb2EBjzKj .mbr-section-title {
  color: #005c62;
}
.cid-tPb2EBjzKj .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tPb2EBjzKj .mbr-section-title,
.cid-tPb2EBjzKj .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tPbe6vjXMn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPbe6vjXMn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPbe6vjXMn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPbe6vjXMn .row {
  margin: 0 !important;
}
.cid-tPbe6vjXMn .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tPbe6vjXMn .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tPbe6vjXMn .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-tPbe6vjXMn .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
  text-align: center;
}
.cid-tPbe6vjXMn .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tPbe6vjXMn .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tPbe6vjXMn .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tPbe6vjXMn .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tPbe6vjXMn .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-tPbe6vjXMn .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-tPbe6vjXMn .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tPbe6vjXMn .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #fc7942;
  margin-left: 0.5rem;
}
.cid-tPbe6vjXMn .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #fc7942;
  font-weight: 900;
}
.cid-tPbe6vjXMn .panel-group {
  border: none;
}
.cid-tPbe6vjXMn .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-tPbe6vjXMn .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tPbe6vjXMn .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tPbe6vjXMn .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-tPbe6vjXMn .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-tPbe6vjXMn .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-tPbe6vjXMn .panel-title-edit {
  color: #131313;
}
.cid-tPbe6vjXMn .panel-body {
  padding: 0 0 20px;
}
.cid-tPbe6vjXMn .panel-text {
  color: #131313;
  margin: 0;
}
.cid-tPb2ECxI9C {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-tPb2ECxI9C .google-map {
  height: 35rem;
  position: relative;
}
.cid-tPb2ECxI9C .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tPb2ECxI9C .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-tPb2ECxI9C .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tPb2ECxI9C .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tPb2EDLrpj {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tPb2EDLrpj [class^="socicon-"]:before,
.cid-tPb2EDLrpj [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-tPb2EDLrpj .social-list {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tPb2EDLrpj .soc-item {
  width: 50px;
  height: 50px;
  background: #9fdbf8;
  border-radius: 100%;
  display: flex;
  -webkit-box-shadow: 0 10px 15px rgba(88, 192, 243, 0.4);
  box-shadow: 0 10px 15px rgba(88, 192, 243, 0.4);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-tPb2EDLrpj .soc-item span {
  font-size: 1.4rem;
  color: #000000 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-tPb2EDLrpj .soc-item:hover span {
  color: #fdece8 !important;
}
.cid-tPb2EDLrpj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPb2EDLrpj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPb2EDLrpj .btn-social,
.cid-tPb2EDLrpj .mbr-section-title {
  color: #ffe161;
}
.cid-tPb2EFPyLa {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tPb2EFPyLa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPb2EFPyLa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPb2EFPyLa .container {
  max-width: 1600px;
}
.cid-tPb2EFPyLa .border-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .cid-tPb2EFPyLa .border-container {
    padding: 48px 0;
  }
}
@media (max-width: 575px) {
  .cid-tPb2EFPyLa .border-container {
    padding: 30px 0;
  }
}
.cid-tPb2EFPyLa .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-tPb2EFPyLa .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-tPb2EFPyLa .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-tPb2EFPyLa .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-tPb2EFPyLa .border-frame {
  position: absolute;
  z-index: 3;
  width: 60px;
  aspect-ratio: 1;
  background-color: #000000;
  border-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .cid-tPb2EFPyLa .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-tPb2EFPyLa .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-tPb2EFPyLa .border-frame {
    width: 7%;
  }
}
.cid-tPb2EFPyLa .footer-main-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.cid-tPb2EFPyLa .footer-item-container {
  width: 33.33333333%;
  flex-grow: 1;
  padding: 80px;
}
.cid-tPb2EFPyLa .footer-item-container:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .cid-tPb2EFPyLa .footer-item-container {
    width: 100%;
    padding: 40px 40px 40px 120px;
  }
  .cid-tPb2EFPyLa .footer-item-container:not(:first-child) {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 575px) {
  .cid-tPb2EFPyLa .footer-item-container {
    padding: 26px 26px 26px 76px;
  }
}
.cid-tPb2EFPyLa .footer-item {
  height: 100%;
}
.cid-tPb2EFPyLa .mbr-section-subtitle {
  color: #BF9341;
  width: 100%;
  margin-bottom: 64px;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tPb2EFPyLa .mbr-section-subtitle {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-tPb2EFPyLa .mbr-section-subtitle {
    margin-bottom: 40px;
  }
}
.cid-tPb2EFPyLa .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-tPb2EFPyLa .mbr-section-btn {
  margin-top: 20px;
}
.cid-tPb2EFPyLa .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #BF9341;
}
.cid-tPb2EFPyLa .list li {
  position: relative;
  width: 100%;
  color: inherit !important;
  padding: 0 0 0 30px;
  margin: 10px 0;
  transition: .3s all;
}
.cid-tPb2EFPyLa .list li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: currentColor;
}
.cid-tPb2EFPyLa .list li:hover {
  color: #e43f3f !important;
}
.cid-tPb2EFPyLa .list a {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tPb2EFPyLa .list a p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tPb2EFPyLa .list a:hover {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tPb2EFPyLa .list a:hover p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tPb2EFPyLa .social-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
}
.cid-tPb2EFPyLa .social-row .mbr-iconfont {
  font-size: 18px;
  color: #b84358;
  margin-right: 20px;
}
.cid-tPb2EFPyLa .social-text {
  color: #BF9341;
  transition: .4s all;
  margin-bottom: 0 !important;
}
.cid-tPb2EFPyLa .soc-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0;
  transition: .4s all;
}
.cid-tPb2EFPyLa .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s all;
}
.cid-tPb2EFPyLa .soc-item:hover .mbr-iconfont {
  color: #e43f3f !important;
}
.cid-tPb2EFPyLa .soc-item:hover .social-text {
  color: #e43f3f !important;
}
.cid-tPb2EFPyLa .copyright-container {
  width: 100%;
  padding: 0;
  margin-top: 56px;
}
@media (max-width: 991px) {
  .cid-tPb2EFPyLa .copyright-container {
    margin-top: 48px;
  }
}
@media (max-width: 575px) {
  .cid-tPb2EFPyLa .copyright-container {
    margin-top: 30px;
  }
}
.cid-tPb2EFPyLa .copyright-text {
  color: #BF9341;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tPb2EFPyLa .copyright-text {
    text-align: center !important;
  }
}
.cid-tPb6JMku7J {
  border-bottom: 1px solid #e33030;
  border-radius: 8px 8px 0 0 !important;
}
.cid-tPb6JMku7J .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tPb6JMku7J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tPb6JMku7J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPb6JMku7J .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tPb6JMku7J .menu_box .navbar.opened,
  .cid-tPb6JMku7J .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tPb6JMku7J .navbar-dropdown {
  position: relative !important;
}
.cid-tPb6JMku7J .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tPb6JMku7J .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tPb6JMku7J .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tPb6JMku7J .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #e33030;
  }
  .cid-tPb6JMku7J .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tPb6JMku7J .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tPb6JMku7J .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tPb6JMku7J .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tPb6JMku7J .offcanvas-body .mbr-text,
  .cid-tPb6JMku7J .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tPb6JMku7J .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #e33030;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tPb6JMku7J .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tPb6JMku7J ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tPb6JMku7J .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tPb6JMku7J .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-tPb6JMku7J .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tPb6JMku7J li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tPb6JMku7J .lg_brand {
    margin: 0 1rem;
  }
  .cid-tPb6JMku7J .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-tPb6JMku7J .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tPb6JMku7J .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .nav-item {
    margin: 0 !important;
  }
}
.cid-tPb6JMku7J .nav-item .nav-link:hover,
.cid-tPb6JMku7J .nav-item .nav-link:focus {
  opacity: .5;
  color: #e43f3f !important;
  transition: all 0.3s ease-out;
}
.cid-tPb6JMku7J .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tPb6JMku7J .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tPb6JMku7J .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tPb6JMku7J .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-tPb6JMku7J .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tPb6JMku7J .offcanvas_box {
    display: none;
  }
}
.cid-tPb6JMku7J .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tPb6JMku7J .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tPb6JMku7J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tPb6JMku7J .container {
  display: flex;
  margin: auto;
}
.cid-tPb6JMku7J .iconfont-wrapper {
  color: #e33030;
  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-tPb6JMku7J .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tPb6JMku7J .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tPb6JMku7J .navbar-caption {
  color: #E33030;
}
.cid-tPb6JMku7J .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tPb6JMku7J .navbar-nav {
    margin: 0;
  }
}
.cid-tPb6JMku7J .dropdown-menu,
.cid-tPb6JMku7J .navbar.opened {
  background-color: false !important;
}
.cid-tPb6JMku7J .nav-item:focus,
.cid-tPb6JMku7J .nav-link:focus {
  outline: none;
}
.cid-tPb6JMku7J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPb6JMku7J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPb6JMku7J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPb6JMku7J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPb6JMku7J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPb6JMku7J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPb6JMku7J .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tPb6JMku7J .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tPb6JMku7J .navbar.opened {
  transition: all 0.3s;
}
.cid-tPb6JMku7J .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tPb6JMku7J .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 20px;
}
.cid-tPb6JMku7J .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tPb6JMku7J .navbar.collapsed {
  justify-content: center;
}
.cid-tPb6JMku7J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPb6JMku7J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tPb6JMku7J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPb6JMku7J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPb6JMku7J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPb6JMku7J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tPb6JMku7J .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tPb6JMku7J .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tPb6JMku7J .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tPb6JMku7J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPb6JMku7J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPb6JMku7J .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tPb6JMku7J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPb6JMku7J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tPb6JMku7J .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPb6JMku7J .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tPb6JMku7J .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tPb6JMku7J .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tPb6JMku7J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tPb6JMku7J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPb6JMku7J .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tPb6JMku7J .navbar.navbar-short {
  min-height: 60px;
}
.cid-tPb6JMku7J .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPb6JMku7J .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPb6JMku7J .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-tPb6JMku7J .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tPb6JMku7J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPb6JMku7J .dropdown-item.active,
.cid-tPb6JMku7J .dropdown-item:active {
  background-color: transparent;
}
.cid-tPb6JMku7J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPb6JMku7J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPb6JMku7J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPb6JMku7J .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPb6JMku7J ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tPb6JMku7J .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPb6JMku7J button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #e33030;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPb6JMku7J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPb6JMku7J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPb6JMku7J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPb6JMku7J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPb6JMku7J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPb6JMku7J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tPb6JMku7J .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-tPb6JMku7J .navbar {
    height: 70px;
  }
  .cid-tPb6JMku7J .navbar.opened {
    height: auto;
  }
  .cid-tPb6JMku7J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPb6JMku7J .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tPb6JMku7J .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-tPb6JMku7J .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tPb6JMku7J .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 150px;
}
@media (max-width: 992px) {
  .cid-tPb6JMku7J .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-tPb6JMku7J .navbar-caption:hover {
  color: #e43f3f;
}
@media (min-width: 992px) {
  .cid-tPb6JMku7J .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tPb6JMku7J .text_widget {
  margin-bottom: 32px;
}
.cid-tPb6JMku7J .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tPb6JMku7J .text_widget a:hover {
  opacity: .5;
}
.cid-tPb6JMku7J .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tPb6JMku7J .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tPb6JMku7J .mbr-section-subtitle,
.cid-tPb6JMku7J .text_widget,
.cid-tPb6JMku7J .mbr-section-btn {
  text-align: center;
}
.cid-tPb6JMku7J a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tPbgQrmlLs {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/tucson-moving-service7-1258x834.jpg");
}
.cid-tPbgQrmlLs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tPbgQrmlLs .mbr-text,
.cid-tPbgQrmlLs .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-tPbgQsNLab {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1271.jpg");
}
.cid-tPbgQsNLab .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPbgQsNLab .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPbgQsNLab .title-container {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-tPbgQsNLab .title-container {
    margin-bottom: 25px;
  }
}
.cid-tPbgQsNLab .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tPbgQsNLab .mbr-text {
  color: #00524F;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .cid-tPbgQsNLab .mbr-text {
    margin-top: 24px;
  }
}
.cid-tPbgQsNLab .tabl-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tPbgQsNLab .tabl-container {
    margin-top: 25px;
  }
}
.cid-tPbgQsNLab .item-container {
  width: 100%;
  display: flex;
}
.cid-tPbgQsNLab .item-container:not(:first-child) {
  margin-top: 30px;
}
.cid-tPbgQsNLab .card-text {
  color: #ffffff;
  width: 100%;
  text-align: left;
}
.cid-tPbgQtmUNs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-tPbgQtmUNs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPbgQtmUNs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPbgQtmUNs .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tPbgQtmUNs .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tPbgQtmUNs .container {
    padding: 0 30px;
  }
}
.cid-tPbgQtmUNs .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tPbgQtmUNs .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tPbgQtmUNs .mbr-section-btn {
  margin-bottom: 70px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-tPbgQtmUNs .mbr-section-btn {
    margin-bottom: 0;
    text-align: left;
  }
}
.cid-tPbgQtmUNs .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tPbgQtmUNs .mbr-section-title {
  color: #ffffff;
}
.cid-tPbgQtmUNs .mbr-text {
  color: #000000;
}
.cid-tPbgQtYCtp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPbgQtYCtp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPbgQtYCtp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPbgQtYCtp .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tPbgQtYCtp .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tPbgQtYCtp .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tPbgQtYCtp .mbr-section-title {
  color: #131313;
}
.cid-tPbgQtYCtp .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tPbgQtYCtp .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tPbgQtYCtp .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tPbgQtYCtp .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: #9fdbf8;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tPbgQtYCtp .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tPbgQtYCtp .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tPbgQtYCtp .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tPbgQtYCtp .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tPbgQtYCtp .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tPbgQtYCtp .card-title {
  color: #131313;
}
.cid-tPbgQtYCtp .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tPbgQtYCtp .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tPbgQtYCtp .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tPbgQtYCtp .card-link {
    margin-top: 15px;
  }
}
.cid-tPbgQtYCtp .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tPbgQtYCtp .card-title,
.cid-tPbgQtYCtp .iconfont-wrapper {
  text-align: center;
}
.cid-tPbgQuRj2K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPbgQuRj2K .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPbgQuRj2K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPbgQuRj2K .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tPbgQuRj2K .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tPbgQuRj2K .container {
    padding: 0 30px;
  }
}
.cid-tPbgQuRj2K .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tPbgQuRj2K .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tPbgQuRj2K .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #9fdbf8;
  border-radius: 16em 3em;
  padding: 70px 230px 70px 70px;
  border-radius: 3em 16em;
}
@media (max-width: 992px) {
  .cid-tPbgQuRj2K .card-wrapper {
    border-radius: 0 3em 0 3em;
    padding: 30px 20px;
  }
}
@media (max-width: 992px) {
  .cid-tPbgQuRj2K .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-tPbgQuRj2K .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
  margin: 0 50px 0 0;
}
@media (max-width: 992px) {
  .cid-tPbgQuRj2K .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
@media (max-width: 992px) {
  .cid-tPbgQuRj2K .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-tPbgQuRj2K .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tPbgQuRj2K .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-tPbgQuRj2K .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tPbgQuRj2K .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tPbgQuRj2K .mbr-card-title {
  color: #2b2b2b;
}
.cid-tPbgQuRj2K .mbr-text {
  color: #000000;
}
.cid-tPbgQuRj2K .mbr-number {
  color: #FE5115;
}
.cid-tPbgQvtFvE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-tPbgQvtFvE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPbgQvtFvE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPbgQvtFvE .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tPbgQvtFvE .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tPbgQvtFvE .container {
    padding: 0 30px;
  }
}
.cid-tPbgQvtFvE .row {
  justify-content: center;
}
.cid-tPbgQvtFvE .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-tPbgQvtFvE .title-wrapper {
    height: auto;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.cid-tPbgQvtFvE .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 25px;
}
.cid-tPbgQvtFvE .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tPbgQvtFvE .title-wrapper .title-wrap .mbr-price {
  margin-bottom: 0;
}
.cid-tPbgQvtFvE .image-wrapper {
  padding: 0 10px;
}
.cid-tPbgQvtFvE .image-wrapper img {
  height: 390px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tPbgQvtFvE .image-wrapper img {
    height: 300px;
  }
}
.cid-tPbgQvtFvE .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-tPbgQvtFvE .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-tPbgQvtFvE .mbr-price {
  color: #212529;
  text-align: center;
}
.cid-tPbgQwbMEs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tPbgQwbMEs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPbgQwbMEs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPbgQwbMEs .container-small,
.cid-tPbgQwbMEs .container-fluid {
  padding: 0 !important;
}
.cid-tPbgQwbMEs .container-small {
  max-width: 1440px;
}
.cid-tPbgQwbMEs .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #9fdbf8;
}
@media (max-width: 991px) {
  .cid-tPbgQwbMEs .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-tPbgQwbMEs .text-box {
    padding: 50px 10px;
  }
}
.cid-tPbgQwbMEs .mbr-section-title {
  color: #131313;
  text-align: left;
}
.cid-tPbgQwbMEs .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-tPbgQwbMEs .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-tPbgQwbMEs .mbr-text {
    margin-top: 20px;
  }
}
.cid-tPbgQwbMEs .mbr-text a {
  text-decoration: underline;
}
.cid-tPbgQwbMEs .mbr-section-btn {
  margin-top: 34px;
}
.cid-tPbgQwbMEs .mbr-section-subtitle,
.cid-tPbgQwbMEs .mbr-section-btn DIV {
  text-align: left;
}
.cid-tPbgQwRgJ8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPbgQwRgJ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPbgQwRgJ8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPbgQwRgJ8 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tPbgQwRgJ8 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tPbgQwRgJ8 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tPbgQwRgJ8 .mbr-section-title {
  color: #131313;
}
.cid-tPbgQwRgJ8 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
  text-align: left;
}
.cid-tPbgQwRgJ8 .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tPbgQwRgJ8 .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tPbgQwRgJ8 .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #9fdbf8;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tPbgQwRgJ8 .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tPbgQwRgJ8 .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tPbgQwRgJ8 .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tPbgQwRgJ8 .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tPbgQwRgJ8 .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tPbgQwRgJ8 .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tPbgQwRgJ8 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tPbgQwRgJ8 .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tPbgQwRgJ8 .content-wrap {
    margin-top: 0;
  }
}
.cid-tPbgQwRgJ8 .card-title {
  color: #131313;
}
.cid-tPbgQwRgJ8 .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tPbgQwRgJ8 .card-text {
    margin-top: 15px;
  }
}
.cid-tPbgQwRgJ8 .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tPbgQwRgJ8 .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tPbgQwRgJ8 .card-link {
    margin-top: 15px;
  }
}
.cid-tPbgQwRgJ8 .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tPbgQxRV3K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
  overflow: hidden;
}
.cid-tPbgQxRV3K .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPbgQxRV3K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPbgQxRV3K .image-wrapper {
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
}
.cid-tPbgQxRV3K img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
@media (max-width: 767px) {
  .cid-tPbgQxRV3K img {
    min-height: 400px;
  }
}
.cid-tPbgQyAAZs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPbgQyAAZs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPbgQyAAZs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPbgQyAAZs .container,
.cid-tPbgQyAAZs .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tPbgQyAAZs .container,
  .cid-tPbgQyAAZs .container-fluid {
    padding: 0 20px;
  }
}
.cid-tPbgQyAAZs .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-tPbgQyAAZs .title-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tPbgQyAAZs .title-wrapper {
    margin-bottom: 50px;
    padding: 0;
  }
}
.cid-tPbgQyAAZs .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tPbgQyAAZs .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 50px;
  border-left: 1px solid #3d4045;
  border-left: none;
  border-right: 1px solid #3d4045;
  padding-left: 0;
  padding-right: 50px;
}
@media (max-width: 992px) {
  .cid-tPbgQyAAZs .text-wrapper {
    border: none;
  }
}
@media (max-width: 992px) {
  .cid-tPbgQyAAZs .text-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tPbgQyAAZs .text-wrapper {
    padding: 0;
  }
}
.cid-tPbgQyAAZs .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tPbgQyAAZs .mbr-section-title {
  color: #000000;
}
.cid-tPbgQyAAZs .mbr-text {
  color: #000000;
}
.cid-tPbgQzcFj8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-tPbgQzcFj8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPbgQzcFj8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPbgQzcFj8 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-tPbgQzcFj8 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tPbgQzcFj8 .container {
    padding: 0 30px;
  }
}
.cid-tPbgQzcFj8 .mbr-section-title {
  margin-bottom: 70px;
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tPbgQzcFj8 .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tPbgQzcFj8 .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-tPbgQzcFj8 .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-tPbgQzcFj8 .video-block .video-wrapper .app-video-wrapper::before {
  color: #fe5115;
  text-shadow: none;
}
.cid-tPbgQzcFj8 .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-tPbgQzcFj8 .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-tPbgQzWN6E {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPbgQzWN6E .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPbgQzWN6E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPbgQzWN6E .row {
  justify-content: center;
}
.cid-tPbgQzWN6E .title-wrapper {
  padding: 71px;
  background-color: #9fdbf8;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-tPbgQzWN6E .title-wrapper {
    padding: 50px 25px;
  }
}
.cid-tPbgQzWN6E .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tPbgQzWN6E .text-wrapper .mbr-text {
  margin-bottom: 25px;
}
.cid-tPbgQzWN6E .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tPbgQzWN6E .mbr-text {
  color: #747474;
}
.cid-tPbgQzWN6E .mbr-text,
.cid-tPbgQzWN6E .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tPbgQzWN6E .mbr-section-title,
.cid-tPbgQzWN6E .mbr-iconfont {
  color: #000000;
}
.cid-tPbgQAAhnG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #9fdbf8;
}
.cid-tPbgQAAhnG .border-bottom {
  border-color: #969494 !important;
}
.cid-tPbgQAAhnG .row[aria-expanded="true"] .cross__container .cross {
  transform: rotate(45deg);
}
.cid-tPbgQAAhnG .row[data-bs-toggle="collapse"]:hover .cross__container .cross {
  background-color: #eeeeee;
}
.cid-tPbgQAAhnG .cross {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  transition: transform ease-in-out 0.2s, background-color ease-in-out 0.4s;
}
.cid-tPbgQAAhnG .cross-line1,
.cid-tPbgQAAhnG .cross-line2 {
  width: 20px;
  height: 1px;
  background-color: #414142;
  transform: translate(-50%);
}
.cid-tPbgQAAhnG .cross-line1 {
  transform: translateX(-50%) rotate(90deg);
}
.cid-tPbgQAAhnG .colored-text {
  color: #a68462 !important;
}
.cid-tPbgQAAhnG .mbr-section-title {
  color: #ffffff;
}
.cid-tPbgQAAhnG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tPbgQAAhnG .mbr-text {
  color: #ffffff;
}
.cid-tPbgQAAhnG .mbr-section-title.main-title {
  color: #ffffff;
  text-align: center;
}
.cid-tPbgQAAhnG .mbr-section-title.spoiler-title {
  color: #000000;
}
.cid-tPbgQBsY11 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPbgQBsY11 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPbgQBsY11 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPbgQBsY11 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tPbgQBsY11 .container-fluid {
    padding: 0 25px;
  }
}
.cid-tPbgQBsY11 .container-fluid .row {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tPbgQBsY11 .container {
    padding: 0 25px;
  }
}
.cid-tPbgQBsY11 .row {
  border: 1px solid #9fdbf8;
}
.cid-tPbgQBsY11 .card {
  padding: 0;
}
.cid-tPbgQBsY11 .card .image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-tPbgQBsY11 .card .image-wrapper img {
  height: 100%;
  object-fit: cover;
  max-height: 610px;
}
@media (max-width: 992px) {
  .cid-tPbgQBsY11 .card .image-wrapper img {
    max-height: 100%;
    height: 300px;
  }
}
.cid-tPbgQBsY11 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 70px 60px;
  height: 100%;
  background-color: #9fdbf8;
}
@media (max-width: 992px) {
  .cid-tPbgQBsY11 .title-wrapper {
    padding: 60px 25px;
  }
}
.cid-tPbgQBsY11 .title-wrapper .title-wrap {
  width: 100%;
}
.cid-tPbgQBsY11 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tPbgQBsY11 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 20px;
}
.cid-tPbgQBsY11 .title-wrapper .title-wrap .mbr-section-btn {
  margin-top: 35px;
}
.cid-tPbgQBsY11 .title-wrapper .mbr-desc {
  width: 100%;
  margin-bottom: 0;
}
.cid-tPbgQBsY11 .mbr-section-title {
  color: #ffffff;
}
.cid-tPbgQBsY11 .mbr-text {
  color: #000000;
}
.cid-tPbgQBsY11 .mbr-desc {
  color: #ffffff;
}
.cid-tPbgQBsY11 .mbr-section-title,
.cid-tPbgQBsY11 .mbr-section-btn {
  color: #000000;
}
.cid-tPbgQCaCtK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9fdbf8;
}
.cid-tPbgQCaCtK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPbgQCaCtK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tPbgQCaCtK .row {
    padding: 0 24px;
  }
}
.cid-tPbgQCaCtK .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tPbgQCaCtK .title-wrapper .mbr-text {
  margin-bottom: 26px;
}
.cid-tPbgQCaCtK .mbr-section-title {
  color: #005c62;
}
.cid-tPbgQCaCtK .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tPbgQCaCtK .mbr-section-title,
.cid-tPbgQCaCtK .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tPbgQCVXOI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tPbgQCVXOI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPbgQCVXOI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPbgQCVXOI .row {
  margin: 0 !important;
}
.cid-tPbgQCVXOI .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tPbgQCVXOI .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tPbgQCVXOI .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-tPbgQCVXOI .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
  text-align: center;
}
.cid-tPbgQCVXOI .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tPbgQCVXOI .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tPbgQCVXOI .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tPbgQCVXOI .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tPbgQCVXOI .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-tPbgQCVXOI .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-tPbgQCVXOI .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tPbgQCVXOI .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #fc7942;
  margin-left: 0.5rem;
}
.cid-tPbgQCVXOI .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #fc7942;
  font-weight: 900;
}
.cid-tPbgQCVXOI .panel-group {
  border: none;
}
.cid-tPbgQCVXOI .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-tPbgQCVXOI .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tPbgQCVXOI .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tPbgQCVXOI .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-tPbgQCVXOI .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-tPbgQCVXOI .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-tPbgQCVXOI .panel-title-edit {
  color: #131313;
}
.cid-tPbgQCVXOI .panel-body {
  padding: 0 0 20px;
}
.cid-tPbgQCVXOI .panel-text {
  color: #131313;
  margin: 0;
}
.cid-tPbgQDIVla {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #ffffff;
}
.cid-tPbgQDIVla .google-map {
  height: 35rem;
  position: relative;
}
.cid-tPbgQDIVla .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tPbgQDIVla .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-tPbgQDIVla .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tPbgQDIVla .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tPbgQEurho {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tPbgQEurho [class^="socicon-"]:before,
.cid-tPbgQEurho [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-tPbgQEurho .social-list {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tPbgQEurho .soc-item {
  width: 50px;
  height: 50px;
  background: #9fdbf8;
  border-radius: 100%;
  display: flex;
  -webkit-box-shadow: 0 10px 15px rgba(88, 192, 243, 0.4);
  box-shadow: 0 10px 15px rgba(88, 192, 243, 0.4);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0.6rem;
  margin-bottom: 1rem;
}
.cid-tPbgQEurho .soc-item span {
  font-size: 1.4rem;
  color: #000000 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-tPbgQEurho .soc-item:hover span {
  color: #fdece8 !important;
}
.cid-tPbgQEurho .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPbgQEurho .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPbgQEurho .btn-social,
.cid-tPbgQEurho .mbr-section-title {
  color: #ffe161;
}
.cid-tPbgQFoXrD {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tPbgQFoXrD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPbgQFoXrD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPbgQFoXrD .container {
  max-width: 1600px;
}
.cid-tPbgQFoXrD .border-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .cid-tPbgQFoXrD .border-container {
    padding: 48px 0;
  }
}
@media (max-width: 575px) {
  .cid-tPbgQFoXrD .border-container {
    padding: 30px 0;
  }
}
.cid-tPbgQFoXrD .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-tPbgQFoXrD .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-tPbgQFoXrD .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-tPbgQFoXrD .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-tPbgQFoXrD .border-frame {
  position: absolute;
  z-index: 3;
  width: 60px;
  aspect-ratio: 1;
  background-color: #000000;
  border-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .cid-tPbgQFoXrD .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-tPbgQFoXrD .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-tPbgQFoXrD .border-frame {
    width: 7%;
  }
}
.cid-tPbgQFoXrD .footer-main-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.cid-tPbgQFoXrD .footer-item-container {
  width: 33.33333333%;
  flex-grow: 1;
  padding: 80px;
}
.cid-tPbgQFoXrD .footer-item-container:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .cid-tPbgQFoXrD .footer-item-container {
    width: 100%;
    padding: 40px 40px 40px 120px;
  }
  .cid-tPbgQFoXrD .footer-item-container:not(:first-child) {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 575px) {
  .cid-tPbgQFoXrD .footer-item-container {
    padding: 26px 26px 26px 76px;
  }
}
.cid-tPbgQFoXrD .footer-item {
  height: 100%;
}
.cid-tPbgQFoXrD .mbr-section-subtitle {
  color: #BF9341;
  width: 100%;
  margin-bottom: 64px;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tPbgQFoXrD .mbr-section-subtitle {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-tPbgQFoXrD .mbr-section-subtitle {
    margin-bottom: 40px;
  }
}
.cid-tPbgQFoXrD .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-tPbgQFoXrD .mbr-section-btn {
  margin-top: 20px;
}
.cid-tPbgQFoXrD .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #BF9341;
}
.cid-tPbgQFoXrD .list li {
  position: relative;
  width: 100%;
  color: inherit !important;
  padding: 0 0 0 30px;
  margin: 10px 0;
  transition: .3s all;
}
.cid-tPbgQFoXrD .list li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: currentColor;
}
.cid-tPbgQFoXrD .list li:hover {
  color: #e43f3f !important;
}
.cid-tPbgQFoXrD .list a {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tPbgQFoXrD .list a p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tPbgQFoXrD .list a:hover {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tPbgQFoXrD .list a:hover p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-tPbgQFoXrD .social-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
}
.cid-tPbgQFoXrD .social-row .mbr-iconfont {
  font-size: 18px;
  color: #b84358;
  margin-right: 20px;
}
.cid-tPbgQFoXrD .social-text {
  color: #BF9341;
  transition: .4s all;
  margin-bottom: 0 !important;
}
.cid-tPbgQFoXrD .soc-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0;
  transition: .4s all;
}
.cid-tPbgQFoXrD .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s all;
}
.cid-tPbgQFoXrD .soc-item:hover .mbr-iconfont {
  color: #e43f3f !important;
}
.cid-tPbgQFoXrD .soc-item:hover .social-text {
  color: #e43f3f !important;
}
.cid-tPbgQFoXrD .copyright-container {
  width: 100%;
  padding: 0;
  margin-top: 56px;
}
@media (max-width: 991px) {
  .cid-tPbgQFoXrD .copyright-container {
    margin-top: 48px;
  }
}
@media (max-width: 575px) {
  .cid-tPbgQFoXrD .copyright-container {
    margin-top: 30px;
  }
}
.cid-tPbgQFoXrD .copyright-text {
  color: #BF9341;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tPbgQFoXrD .copyright-text {
    text-align: center !important;
  }
}
.cid-tPbgQGgoBO {
  border-bottom: 1px solid #e33030;
  border-radius: 8px 8px 0 0 !important;
}
.cid-tPbgQGgoBO .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tPbgQGgoBO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tPbgQGgoBO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPbgQGgoBO .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tPbgQGgoBO .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tPbgQGgoBO .menu_box .navbar.opened,
  .cid-tPbgQGgoBO .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tPbgQGgoBO .navbar-dropdown {
  position: relative !important;
}
.cid-tPbgQGgoBO .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-tPbgQGgoBO .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tPbgQGgoBO .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tPbgQGgoBO .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tPbgQGgoBO .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tPbgQGgoBO .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #e33030;
  }
  .cid-tPbgQGgoBO .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tPbgQGgoBO .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tPbgQGgoBO .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tPbgQGgoBO .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tPbgQGgoBO .offcanvas-body .mbr-text,
  .cid-tPbgQGgoBO .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tPbgQGgoBO .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tPbgQGgoBO .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tPbgQGgoBO .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #e33030;
  }
  .cid-tPbgQGgoBO .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tPbgQGgoBO .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tPbgQGgoBO .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tPbgQGgoBO .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tPbgQGgoBO ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tPbgQGgoBO .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tPbgQGgoBO .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-tPbgQGgoBO .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tPbgQGgoBO li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tPbgQGgoBO .lg_brand {
    margin: 0 1rem;
  }
  .cid-tPbgQGgoBO .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-tPbgQGgoBO .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tPbgQGgoBO .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tPbgQGgoBO .nav-item {
    margin: 0 !important;
  }
}
.cid-tPbgQGgoBO .nav-item .nav-link:hover,
.cid-tPbgQGgoBO .nav-item .nav-link:focus {
  opacity: .5;
  color: #e43f3f !important;
  transition: all 0.3s ease-out;
}
.cid-tPbgQGgoBO .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tPbgQGgoBO .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tPbgQGgoBO .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tPbgQGgoBO .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tPbgQGgoBO .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-tPbgQGgoBO .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tPbgQGgoBO .offcanvas_box {
    display: none;
  }
}
.cid-tPbgQGgoBO .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tPbgQGgoBO .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tPbgQGgoBO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tPbgQGgoBO .container {
  display: flex;
  margin: auto;
}
.cid-tPbgQGgoBO .iconfont-wrapper {
  color: #e33030;
  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-tPbgQGgoBO .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tPbgQGgoBO .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tPbgQGgoBO .navbar-caption {
  color: #E33030;
}
.cid-tPbgQGgoBO .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tPbgQGgoBO .navbar-nav {
    margin: 0;
  }
}
.cid-tPbgQGgoBO .dropdown-menu,
.cid-tPbgQGgoBO .navbar.opened {
  background-color: false !important;
}
.cid-tPbgQGgoBO .nav-item:focus,
.cid-tPbgQGgoBO .nav-link:focus {
  outline: none;
}
.cid-tPbgQGgoBO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPbgQGgoBO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPbgQGgoBO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPbgQGgoBO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPbgQGgoBO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPbgQGgoBO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPbgQGgoBO .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tPbgQGgoBO .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tPbgQGgoBO .navbar.opened {
  transition: all 0.3s;
}
.cid-tPbgQGgoBO .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tPbgQGgoBO .navbar .navbar-logo img {
  max-width: 50px;
  min-height: 50px;
  object-fit: contain;
  border-radius: 20px;
}
.cid-tPbgQGgoBO .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tPbgQGgoBO .navbar.collapsed {
  justify-content: center;
}
.cid-tPbgQGgoBO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPbgQGgoBO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tPbgQGgoBO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPbgQGgoBO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPbgQGgoBO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPbgQGgoBO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tPbgQGgoBO .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tPbgQGgoBO .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tPbgQGgoBO .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tPbgQGgoBO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPbgQGgoBO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPbgQGgoBO .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tPbgQGgoBO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPbgQGgoBO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tPbgQGgoBO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPbgQGgoBO .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tPbgQGgoBO .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tPbgQGgoBO .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tPbgQGgoBO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tPbgQGgoBO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPbgQGgoBO .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tPbgQGgoBO .navbar.navbar-short {
  min-height: 60px;
}
.cid-tPbgQGgoBO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPbgQGgoBO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPbgQGgoBO .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-tPbgQGgoBO .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tPbgQGgoBO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPbgQGgoBO .dropdown-item.active,
.cid-tPbgQGgoBO .dropdown-item:active {
  background-color: transparent;
}
.cid-tPbgQGgoBO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPbgQGgoBO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPbgQGgoBO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPbgQGgoBO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPbgQGgoBO ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tPbgQGgoBO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPbgQGgoBO button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-tPbgQGgoBO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #e33030;
}
.cid-tPbgQGgoBO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPbgQGgoBO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPbgQGgoBO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPbgQGgoBO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPbgQGgoBO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPbgQGgoBO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPbgQGgoBO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPbgQGgoBO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPbgQGgoBO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tPbgQGgoBO .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-tPbgQGgoBO .navbar {
    height: 70px;
  }
  .cid-tPbgQGgoBO .navbar.opened {
    height: auto;
  }
  .cid-tPbgQGgoBO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPbgQGgoBO .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tPbgQGgoBO .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.cid-tPbgQGgoBO .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tPbgQGgoBO .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 150px;
}
@media (max-width: 992px) {
  .cid-tPbgQGgoBO .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-tPbgQGgoBO .navbar-caption:hover {
  color: #e43f3f;
}
@media (min-width: 992px) {
  .cid-tPbgQGgoBO .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tPbgQGgoBO .text_widget {
  margin-bottom: 32px;
}
.cid-tPbgQGgoBO .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tPbgQGgoBO .text_widget a:hover {
  opacity: .5;
}
.cid-tPbgQGgoBO .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tPbgQGgoBO .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tPbgQGgoBO .mbr-section-subtitle,
.cid-tPbgQGgoBO .text_widget,
.cid-tPbgQGgoBO .mbr-section-btn {
  text-align: center;
}
.cid-tPbgQGgoBO a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
