body {
  font-family: IBM Plex Sans;
}
.display-1 {
  font-family: 'Crimson Pro', serif;
  font-size: 4.4rem;
}
.display-1 > .mbr-iconfont {
  font-size: 7.04rem;
}
.display-2 {
  font-family: 'Crimson Pro', serif;
  font-size: 3rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Crimson Pro', serif;
  font-size: 1.2rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.92rem;
  font-weight: 400;
}
.display-5 {
  font-family: 'Crimson Pro', serif;
  font-size: 2rem;
}
.display-5 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-7 {
  font-family: 'Crimson Pro', serif;
  font-size: 1.6rem;
}
.display-7 > .mbr-iconfont {
  font-size: 2.56rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 3.52rem;
    font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.19rem + (4.4 - 2.19) * ((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.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #57468b !important;
}
.bg-success {
  background-color: #bfceff !important;
}
.bg-info {
  background-color: #57468b !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #57468b !important;
  border-color: #57468b !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #372c58 !important;
  border-color: #372c58 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #372c58 !important;
  border-color: #372c58 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #5580ff !important;
  border-color: #5580ff !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #0847ff !important;
  border-color: #0847ff !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0847ff !important;
  border-color: #0847ff !important;
}
.btn-info,
.btn-info:active {
  background-color: #57468b !important;
  border-color: #57468b !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #372c58 !important;
  border-color: #372c58 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #372c58 !important;
  border-color: #372c58 !important;
}
.btn-success,
.btn-success:active {
  background-color: #bfceff !important;
  border-color: #bfceff !important;
  color: #002dbf !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #002dbf !important;
  background-color: #7293ff !important;
  border-color: #7293ff !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #002dbf !important;
  background-color: #7293ff !important;
  border-color: #7293ff !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #2d2447;
  color: #2d2447;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #57468b;
  border-color: #57468b;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #57468b !important;
  border-color: #57468b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #003cee;
  color: #003cee;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #5580ff;
  border-color: #5580ff;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #5580ff !important;
  border-color: #5580ff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #2d2447;
  color: #2d2447;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #57468b;
  border-color: #57468b;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #57468b !important;
  border-color: #57468b !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #5980ff;
  color: #5980ff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #002dbf;
  background-color: #bfceff;
  border-color: #bfceff;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #002dbf !important;
  background-color: #bfceff !important;
  border-color: #bfceff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #57468b !important;
}
.text-secondary {
  color: #5580ff !important;
}
.text-success {
  color: #bfceff !important;
}
.text-info {
  color: #57468b !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #2d2447 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #003cee !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #5980ff !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #2d2447 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #57468b;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #57468b;
  border-color: #57468b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #57468b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #9a8cc5;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #9a8cc5;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Crimson Pro', serif;
  font-size: 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
  font-weight: 400;
}
blockquote {
  border-color: #57468b;
}
.btn-primary {
  margin: 1rem 0.5rem !important;
}
.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 6px 16px 0 #57468b !important;
  -webkit-box-shadow: 0 6px 16px 0 #57468b !important;
  background-color: #57468b !important;
  border-color: #57468b !important;
}
.btn-secondary {
  margin: 1rem 0.5rem !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 6px 15px 0 #5580ff !important;
  -webkit-box-shadow: 0 6px 16px 0 #5580ff !important;
  background-color: #5580ff !important;
  border-color: #5580ff !important;
}
.btn-success {
  color: white !important;
  margin: 1rem 0.5rem !important;
}
.btn-success:active {
  color: white !important;
}
.btn-success:hover,
.btn-success:focus {
  color: white !important;
  box-shadow: 0 6px 15px 0 #bfceff !important;
  -webkit-box-shadow: 0 6px 16px 0 #bfceff !important;
  background-color: #bfceff !important;
  border-color: #bfceff !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #57468b;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  background-color: #f5f6ff;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #57468b;
  border-bottom-color: #57468b;
}
.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: #57468b !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #5580ff !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%;
}
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='%2357468b' %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;
}
.cid-rx3MBLTRlI .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-rx3MBLTRlI .collapsed {
  flex-direction: row!important;
}
.cid-rx3MBLTRlI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rx3MBLTRlI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rx3MBLTRlI .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-rx3MBLTRlI .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-rx3MBLTRlI .nav-item:focus,
.cid-rx3MBLTRlI .nav-link:focus {
  outline: none;
}
.cid-rx3MBLTRlI .text-white:hover,
.cid-rx3MBLTRlI .text-white:active,
.cid-rx3MBLTRlI .text-white:focus {
  color: white!important;
}
.cid-rx3MBLTRlI .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-rx3MBLTRlI .dropdown-item:hover {
  color: black!important;
}
.cid-rx3MBLTRlI .dropdown-menu {
  background-color: white!important;
}
.cid-rx3MBLTRlI .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-rx3MBLTRlI .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-rx3MBLTRlI .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-rx3MBLTRlI .nav-item .nav-link {
    position: relative;
  }
}
.cid-rx3MBLTRlI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rx3MBLTRlI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rx3MBLTRlI .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-rx3MBLTRlI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rx3MBLTRlI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rx3MBLTRlI .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #7f1933;
}
.cid-rx3MBLTRlI .navbar.opened {
  transition: all .3s;
  background: #7f1933 !important;
}
.cid-rx3MBLTRlI .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rx3MBLTRlI .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rx3MBLTRlI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rx3MBLTRlI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rx3MBLTRlI .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rx3MBLTRlI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rx3MBLTRlI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rx3MBLTRlI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rx3MBLTRlI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rx3MBLTRlI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rx3MBLTRlI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rx3MBLTRlI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rx3MBLTRlI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rx3MBLTRlI .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rx3MBLTRlI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rx3MBLTRlI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rx3MBLTRlI .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rx3MBLTRlI .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rx3MBLTRlI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rx3MBLTRlI .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rx3MBLTRlI .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rx3MBLTRlI .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rx3MBLTRlI .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rx3MBLTRlI .navbar.navbar-short {
  background: #7f1933 !important;
  min-height: 60px;
}
.cid-rx3MBLTRlI .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rx3MBLTRlI .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rx3MBLTRlI .navbar-caption {
  font-weight: 600!important;
}
.cid-rx3MBLTRlI .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rx3MBLTRlI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rx3MBLTRlI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rx3MBLTRlI .dropdown-item.active,
.cid-rx3MBLTRlI .dropdown-item:active {
  background-color: transparent;
}
.cid-rx3MBLTRlI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rx3MBLTRlI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rx3MBLTRlI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rx3MBLTRlI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7f1933;
}
.cid-rx3MBLTRlI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rx3MBLTRlI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rx3MBLTRlI .navbar-buttons {
  text-align: center;
}
.cid-rx3MBLTRlI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rx3MBLTRlI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b1a374;
}
.cid-rx3MBLTRlI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rx3MBLTRlI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rx3MBLTRlI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rx3MBLTRlI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rx3MBLTRlI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rx3MBLTRlI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rx3MBLTRlI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rx3MBLTRlI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rx3MBLTRlI .nav-link {
  font-weight: 600!important;
}
.cid-rx3MBLTRlI a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rx3MBLTRlI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rx3MBLTRlI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rx3MBLTRlI .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rx3MBLTRlI .navbar {
    height: 77px;
  }
  .cid-rx3MBLTRlI .navbar.opened {
    height: auto;
  }
  .cid-rx3MBLTRlI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXsgXM2lvo {
  background-color: #f1f1f2;
}
.cid-tXsgXM2lvo .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-tXsgXM2lvo .row {
    padding: 0 12px;
  }
}
.cid-tXsgXM2lvo .row::after {
  content: '';
  display: block;
  background: #7f1933;
  position: absolute;
  top: 0;
  right: 0;
  width: 27%;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tXsgXM2lvo .row::after {
    display: none;
  }
}
.cid-tXsgXM2lvo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXsgXM2lvo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXsgXM2lvo .image-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-tXsgXM2lvo .image-wrapper {
    padding: 0 0 60px;
  }
}
.cid-tXsgXM2lvo .image-wrapper::before {
  content: '';
  display: block;
  background-color: #f3722f;
  position: absolute;
  top: 0;
  right: -7rem;
  width: 230px;
  height: 120px;
  border-radius: 20rem 20rem 0 0;
}
@media (max-width: 992px) {
  .cid-tXsgXM2lvo .image-wrapper::before {
    display: none;
  }
}
.cid-tXsgXM2lvo .image-wrapper::after {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  top: 120px;
  right: -7rem;
  width: 230px;
  height: 120px;
  border-radius: 20rem 20rem 0 0;
}
@media (max-width: 992px) {
  .cid-tXsgXM2lvo .image-wrapper::after {
    display: none;
  }
}
.cid-tXsgXM2lvo .image-wrapper img {
  width: 100%;
  height: 626px;
  object-fit: cover;
}
.cid-tXsgXM2lvo .title {
  display: flex;
  align-items: center;
}
.cid-tXsgXM2lvo .title-wrapper {
  z-index: 1;
}
.cid-tXsgXM2lvo .title-wrapper .mbr-section-subtitle {
  margin-bottom: 15px;
}
.cid-tXsgXM2lvo .title-wrapper .mbr-section-title {
  margin-bottom: 8px;
}
.cid-tXsgXM2lvo .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tXsgXM2lvo .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #bfceff;
  box-shadow: none;
}
.cid-tXsgXM2lvo .title-wrapper .mbr-section-btn .btn:hover {
  background: #bfceff !important;
  box-shadow: none !important;
}
.cid-tXsgXM2lvo .mbr-section-title {
  color: #1e4381;
}
.cid-tXsgXM2lvo .mbr-section-subtitle {
  color: #f3722f;
}
.cid-tXsgXM2lvo .mbr-text {
  color: #1e4381;
}
.cid-rlf1WWFKeE {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rlf1WWFKeE H1 {
  color: #ff3366;
}
.cid-rlf1WWFKeE .align-left {
  margin: auto;
}
.cid-rlf1WWFKeE .row {
  justify-content: space-between;
}
.cid-rlf1WWFKeE .mbr-text,
.cid-rlf1WWFKeE .mbr-section-btn {
  color: #716c80;
}
.cid-rlf1WWFKeE .block-border {
  border-left: 2px solid #efefef;
  padding-left: 4rem;
}
.cid-rlf1WWFKeE .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-rlf1WWFKeE .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-rlf1WWFKeE .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-rlf1WWFKeE .link:hover {
  color: #57468b !important;
}
.cid-rlf1WWFKeE .link:hover .link-ico {
  color: #57468b !important;
  padding-left: 10px;
}
.cid-rlf1WWFKeE DIV {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-rlf1WWFKeE .block-border {
    border: none;
    padding-left: 1rem;
  }
  .cid-rlf1WWFKeE h1 {
    padding-bottom: 1rem;
  }
}
.cid-rlf1WWFKeE .mbr-text,
.cid-rlf1WWFKeE .media-content {
  color: #ff3366;
}
.cid-tXnrUydCpF {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f3722f;
}
.cid-tXnrUydCpF img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-tXnrUydCpF H1 {
  color: #57468b;
}
.cid-tXnrUydCpF .mbr-text,
.cid-tXnrUydCpF .mbr-section-btn {
  color: #716c80;
}
.cid-tXnrUydCpF H3 {
  color: #716c80;
}
.cid-tXnrUydCpF .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tXnrUydCpF .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-tXnrUydCpF .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-tXnrUydCpF .link:hover {
  color: #57468b !important;
}
.cid-tXnrUydCpF .link:hover .link-ico {
  color: #57468b !important;
  padding-left: 10px;
}
.cid-tXnrUydCpF DIV {
  color: #57468b;
}
.cid-tXnrUydCpF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXnrUydCpF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXnrUydCpF .mbr-text,
.cid-tXnrUydCpF .media-content {
  color: #232323;
}
.cid-tXnsZgDsuH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7f1933;
}
.cid-tXnsZgDsuH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXnsZgDsuH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tXnsZgDsuH .container {
    padding: 0 30px;
  }
}
.cid-tXnsZgDsuH .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-tXnsZgDsuH .row {
    margin: 0 -34px;
  }
}
.cid-tXnsZgDsuH .title-wrapper {
  margin-bottom: 30px;
}
.cid-tXnsZgDsuH .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tXnsZgDsuH .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXnsZgDsuH .card {
  padding: 0 34px;
}
@media (max-width: 992px) {
  .cid-tXnsZgDsuH .card {
    margin-bottom: 40px;
    padding: 0 12px;
  }
}
.cid-tXnsZgDsuH .card .card-wrapper .mbr-number {
  margin-bottom: 30px;
}
.cid-tXnsZgDsuH .card .card-wrapper .mbr-card-title {
  margin-bottom: 30px;
}
.cid-tXnsZgDsuH .card .card-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tXnsZgDsuH .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-tXnsZgDsuH .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-tXnsZgDsuH .mbr-number {
  color: #212529;
  text-align: center;
}
.cid-tXnsZgDsuH .mbr-card-title {
  color: #ffffff;
  text-align: center;
}
.cid-tXnsZgDsuH .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-tXnPq0WGWN {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f3722f;
}
.cid-tXnPq0WGWN H1 {
  color: #ffffff;
}
.cid-tXnPq0WGWN .align-left {
  margin: auto;
}
.cid-tXnPq0WGWN .row {
  justify-content: space-between;
}
.cid-tXnPq0WGWN .mbr-text,
.cid-tXnPq0WGWN .mbr-section-btn {
  color: #716c80;
}
.cid-tXnPq0WGWN .block-border {
  border-left: 2px solid #7f1933;
  padding-left: 4rem;
}
.cid-tXnPq0WGWN .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tXnPq0WGWN .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-tXnPq0WGWN .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-tXnPq0WGWN .link:hover {
  color: #57468b !important;
}
.cid-tXnPq0WGWN .link:hover .link-ico {
  color: #57468b !important;
  padding-left: 10px;
}
.cid-tXnPq0WGWN DIV {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-tXnPq0WGWN .block-border {
    border: none;
    padding-left: 1rem;
  }
  .cid-tXnPq0WGWN h1 {
    padding-bottom: 1rem;
  }
}
.cid-tXnPq0WGWN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXnPq0WGWN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXnPq0WGWN .mbr-text,
.cid-tXnPq0WGWN .media-content {
  color: #ffffff;
}
.cid-tXnwwDdGho {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cc2952;
}
.cid-tXnwwDdGho .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXnwwDdGho .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXnwwDdGho .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tXnwwDdGho .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXnwwDdGho .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tXnwwDdGho .mbr-section-title {
  color: #131313;
}
.cid-tXnwwDdGho .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tXnwwDdGho .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tXnwwDdGho .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tXnwwDdGho .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #7787a5;
  box-shadow: 4px 4px 0 #7787a5;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tXnwwDdGho .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tXnwwDdGho .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tXnwwDdGho .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tXnwwDdGho .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tXnwwDdGho .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tXnwwDdGho .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tXnwwDdGho .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tXnwwDdGho .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tXnwwDdGho .content-wrap {
    margin-top: 0;
  }
}
.cid-tXnwwDdGho .card-title {
  color: #131313;
}
.cid-tXnwwDdGho .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXnwwDdGho .card-text {
    margin-top: 15px;
  }
}
.cid-tXnwwDdGho .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXnwwDdGho .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tXnwwDdGho .card-link {
    margin-top: 15px;
  }
}
.cid-tXnwwDdGho .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tXnwwDdGho .card-title,
.cid-tXnwwDdGho .iconfont-wrapper {
  text-align: center;
}
.cid-rlqwMSA8dY {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #f3722f;
}
.cid-rlqwMSA8dY .nav-tabs .nav-item.open .nav-link:focus,
.cid-rlqwMSA8dY .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-rlqwMSA8dY .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-rlqwMSA8dY .nav-tabs .nav-item {
  padding: .5rem;
}
.cid-rlqwMSA8dY .nav-tabs .nav-link {
  color: #ffffff;
  font-style: normal;
  font-weight: 500;
  background-color: #5580ff;
  border-radius: .25rem;
  transition: all .5s;
}
.cid-rlqwMSA8dY .nav-tabs .nav-link:hover {
  cursor: pointer;
  background-color: #57468b;
}
.cid-rlqwMSA8dY .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background-color: #57468b;
  border-color: #57468b;
}
.cid-rlqwMSA8dY .nav-tabs .nav-link.active:hover {
  background-color: #57468b;
}
.cid-rlqwMSA8dY P {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-rlqwMSA8dY .nav-tabs {
    flex-direction: column;
    justify-content: center;
  }
  .cid-rlqwMSA8dY .mbr-text,
  .cid-rlqwMSA8dY .nav-link {
    text-align: center;
  }
}
.cid-tXnIwOeT3g {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #7f1933;
}
.cid-tXnIwOeT3g .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXnIwOeT3g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tXnIwOeT3g .container {
    padding: 0 30px;
  }
}
.cid-tXnIwOeT3g .row {
  justify-content: center;
}
.cid-tXnIwOeT3g .title-wrapper {
  margin-bottom: 40px;
}
.cid-tXnIwOeT3g .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tXnIwOeT3g .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXnIwOeT3g .card {
  margin-bottom: 40px;
}
.cid-tXnIwOeT3g .card .card-wrapper .mbr-number {
  margin: 20px 0;
}
.cid-tXnIwOeT3g .card .card-wrapper .mbr-card-title {
  margin-bottom: 25px;
}
.cid-tXnIwOeT3g .card .card-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tXnIwOeT3g .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-tXnIwOeT3g .mbr-section-title {
  color: #212529;
}
.cid-tXnIwOeT3g .mbr-number {
  color: #212529;
  text-align: center;
}
.cid-tXnIwOeT3g .mbr-card-title {
  color: #ffffff;
  text-align: center;
}
.cid-tXnIwOeT3g .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tXnIwOeT3g .mbr-section-title,
.cid-tXnIwOeT3g .mbr-section-btn {
  text-align: center;
}
.cid-rlqE3ytc5U {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-rlqE3ytc5U img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-rlqE3ytc5U H1 {
  color: #57468b;
}
.cid-rlqE3ytc5U .mbr-text,
.cid-rlqE3ytc5U .mbr-section-btn {
  color: #716c80;
}
.cid-rlqE3ytc5U H3 {
  color: #716c80;
}
.cid-rlqE3ytc5U .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-rlqE3ytc5U .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-rlqE3ytc5U .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-rlqE3ytc5U .link:hover {
  color: #57468b !important;
}
.cid-rlqE3ytc5U .link:hover .link-ico {
  color: #57468b !important;
  padding-left: 10px;
}
.cid-rlqE3ytc5U DIV {
  color: #57468b;
}
.cid-tXnKKzQyUp {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #7f1933;
}
.cid-tXnKKzQyUp .card-header {
  background: transparent;
}
.cid-tXnKKzQyUp .mbr-iconfont {
  font-size: 1.4rem!important;
}
.cid-tXnKKzQyUp .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-tXnKKzQyUp .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tXnKKzQyUp .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tXnKKzQyUp .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tXnKKzQyUp .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tXnKKzQyUp .card .panel-body {
  color: #767676;
}
.cid-tXnKKzQyUp h4 {
  flex-direction: row-reverse;
  display: flex;
  background: #f2f6ff;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  border: none;
  padding: 1.4rem 1.6rem;
}
.cid-tXnKKzQyUp H4 {
  color: #57468b;
}
.cid-tXnKKzQyUp H2 {
  color: #e1e8ff;
}
.cid-tXnKKzQyUp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXnKKzQyUp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-rlf3bZppLj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f3722f;
}
.cid-rlf3bZppLj H1 {
  color: #ffffff;
}
.cid-rlf3bZppLj .mbr-text,
.cid-rlf3bZppLj .mbr-section-btn {
  color: #ffffff;
}
.cid-rlf3bZppLj H3 {
  color: #716c80;
}
.cid-rlf3qVtjvv {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #7f1933;
  position: relative;
  overflow: hidden;
}
.cid-rlf3qVtjvv svg {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.2);
  animation: wave 5s ease-in-out infinite;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
@keyframes wave {
  from {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
  50% {
    transform: rotate(0.2deg) translate(-50%) scale(2.1, 1.3);
  }
  to {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
}
.cid-rlf3qVtjvv .mbr-text,
.cid-rlf3qVtjvv .mbr-section-btn {
  color: #ffffff;
}
.cid-rlf3qVtjvv #e12_areaS3 {
  fill: #f3722f !important;
}
.cid-rlf3qVtjvv #e19_areaS3 {
  fill: #cc2952 !important;
}
.cid-rlf3qVtjvv H1 {
  color: #ffffff;
}
.cid-rlf3qVtjvv img {
  width: 70%;
  border-radius: 10px;
  animation: line 4s ease-in-out infinite;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-rlf3qVtjvv .box {
  width: 95%;
  height: 90%;
  opacity: 0.5;
  background-color: #c8f1ee;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-rlf3qVtjvv .box {
    top: 2%;
    width: 97%;
    height: 96%;
  }
}
@media (max-width: 576px) {
  .cid-rlf3qVtjvv img {
    width: 100%;
  }
}
.cid-rlf3IBt7x9 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f3722f;
}
.cid-rlf3IBt7x9 .mbr-text,
.cid-rlf3IBt7x9 .mbr-section-btn {
  color: #ffffff;
}
.cid-rlf3IBt7x9 .relative {
  z-index: 2;
  position: relative;
  padding: 0 2rem;
  padding-right: 10rem;
}
.cid-rlf3IBt7x9 .author-box {
  display: flex;
  flex-direction: row;
}
.cid-rlf3IBt7x9 .ico1 {
  font-size: 2rem;
}
.cid-rlf3IBt7x9 .ico2 {
  position: absolute;
  bottom: 0%;
  right: 1.5rem;
  font-size: 6rem!important;
  z-index: 1;
  opacity: 0.1;
}
.cid-rlf3IBt7x9 H3 {
  color: #57468b;
}
.cid-rlf3IBt7x9 H4 {
  color: #716c80;
}
.cid-rlf3IBt7x9 .text {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-rlf3IBt7x9 .relative {
    padding: 0;
  }
}
.cid-rlf4BBCTn9 {
  background-image: url("../../../assets/images/sdsdsdsd-cf-1441x551.jpg");
}
.cid-rlf4BBCTn9 .container {
  height: 40rem;
}
.cid-tXnMCSJZJ2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #7f1933;
}
.cid-tXnMCSJZJ2 .mbr-section-head {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tXnMCSJZJ2 .mbr-section-head {
    margin-bottom: 16px;
  }
}
.cid-tXnMCSJZJ2 .mbr-section-head .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-tXnMCSJZJ2 .mbr-section-head .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
.cid-tXnMCSJZJ2 .mbr-section-head .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXnMCSJZJ2 .google-map {
  height: 30rem;
  position: relative;
}
.cid-tXnMCSJZJ2 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tXnMCSJZJ2 .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-tXnMCSJZJ2 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tXnMCSJZJ2 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tXnMCSJZJ2 .mbr-section-subtitle {
  color: #FF4712;
  text-align: center;
}
.cid-tXnMCSJZJ2 .mbr-section-title {
  color: #efefef;
  text-align: center;
}
.cid-tXnN3jenn0 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #e1e8ff;
}
.cid-tXnN3jenn0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXnN3jenn0 .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tXnN3jenn0 .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXnN3jenn0 .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tXnN3jenn0 a {
  font-weight: 600;
}
.cid-tXnN3jenn0 a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tXnN3jenn0 .col-lg-3,
  .cid-tXnN3jenn0 .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tXnN3jenn0 .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tXnN3jenn0 .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tXnN3jenn0 h5 {
  margin: 0;
}
.cid-tXnN3jenn0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXnN3jenn0 .iconfont-wrapper {
  position: relative;
}
.cid-tXnN3jenn0 .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tXnN3jenn0 .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tXnN3jenn0 .sociconfont-wrapper {
  display: flex;
}
.cid-tXnN3jenn0 .card-title,
.cid-tXnN3jenn0 .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tXnN3jenn0 .card-text {
  color: #000000;
}
.cid-tXnN3jenn0 .mbr-section-title {
  color: #000000;
}
.cid-tXnN3jenn0 .main-title,
.cid-tXnN3jenn0 .iconfont-wrapper {
  text-align: left;
}
.cid-tXo7pu0ccA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #7f1933;
}
.cid-rx3MBLTRlI .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-rx3MBLTRlI .collapsed {
  flex-direction: row!important;
}
.cid-rx3MBLTRlI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rx3MBLTRlI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rx3MBLTRlI .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-rx3MBLTRlI .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-rx3MBLTRlI .nav-item:focus,
.cid-rx3MBLTRlI .nav-link:focus {
  outline: none;
}
.cid-rx3MBLTRlI .text-white:hover,
.cid-rx3MBLTRlI .text-white:active,
.cid-rx3MBLTRlI .text-white:focus {
  color: white!important;
}
.cid-rx3MBLTRlI .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-rx3MBLTRlI .dropdown-item:hover {
  color: black!important;
}
.cid-rx3MBLTRlI .dropdown-menu {
  background-color: white!important;
}
.cid-rx3MBLTRlI .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-rx3MBLTRlI .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-rx3MBLTRlI .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-rx3MBLTRlI .nav-item .nav-link {
    position: relative;
  }
}
.cid-rx3MBLTRlI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rx3MBLTRlI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rx3MBLTRlI .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-rx3MBLTRlI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rx3MBLTRlI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rx3MBLTRlI .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #7f1933;
}
.cid-rx3MBLTRlI .navbar.opened {
  transition: all .3s;
  background: #7f1933 !important;
}
.cid-rx3MBLTRlI .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rx3MBLTRlI .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rx3MBLTRlI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rx3MBLTRlI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rx3MBLTRlI .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rx3MBLTRlI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rx3MBLTRlI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rx3MBLTRlI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rx3MBLTRlI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rx3MBLTRlI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rx3MBLTRlI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rx3MBLTRlI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rx3MBLTRlI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rx3MBLTRlI .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rx3MBLTRlI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rx3MBLTRlI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rx3MBLTRlI .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rx3MBLTRlI .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rx3MBLTRlI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rx3MBLTRlI .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rx3MBLTRlI .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rx3MBLTRlI .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rx3MBLTRlI .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rx3MBLTRlI .navbar.navbar-short {
  background: #7f1933 !important;
  min-height: 60px;
}
.cid-rx3MBLTRlI .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rx3MBLTRlI .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rx3MBLTRlI .navbar-caption {
  font-weight: 600!important;
}
.cid-rx3MBLTRlI .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rx3MBLTRlI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rx3MBLTRlI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rx3MBLTRlI .dropdown-item.active,
.cid-rx3MBLTRlI .dropdown-item:active {
  background-color: transparent;
}
.cid-rx3MBLTRlI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rx3MBLTRlI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rx3MBLTRlI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rx3MBLTRlI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7f1933;
}
.cid-rx3MBLTRlI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rx3MBLTRlI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rx3MBLTRlI .navbar-buttons {
  text-align: center;
}
.cid-rx3MBLTRlI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rx3MBLTRlI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b1a374;
}
.cid-rx3MBLTRlI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rx3MBLTRlI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rx3MBLTRlI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rx3MBLTRlI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rx3MBLTRlI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rx3MBLTRlI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rx3MBLTRlI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rx3MBLTRlI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rx3MBLTRlI .nav-link {
  font-weight: 600!important;
}
.cid-rx3MBLTRlI a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rx3MBLTRlI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rx3MBLTRlI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rx3MBLTRlI .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rx3MBLTRlI .navbar {
    height: 77px;
  }
  .cid-rx3MBLTRlI .navbar.opened {
    height: auto;
  }
  .cid-rx3MBLTRlI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXt7LrX7Kv {
  background-color: #f1f1f2;
}
.cid-tXt7LrX7Kv .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-tXt7LrX7Kv .row {
    padding: 0 12px;
  }
}
.cid-tXt7LrX7Kv .row::after {
  content: '';
  display: block;
  background: #7f1933;
  position: absolute;
  top: 0;
  right: 0;
  width: 27%;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tXt7LrX7Kv .row::after {
    display: none;
  }
}
.cid-tXt7LrX7Kv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXt7LrX7Kv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXt7LrX7Kv .image-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-tXt7LrX7Kv .image-wrapper {
    padding: 0 0 60px;
  }
}
.cid-tXt7LrX7Kv .image-wrapper::before {
  content: '';
  display: block;
  background-color: #f3722f;
  position: absolute;
  top: 0;
  right: -7rem;
  width: 230px;
  height: 120px;
  border-radius: 20rem 20rem 0 0;
}
@media (max-width: 992px) {
  .cid-tXt7LrX7Kv .image-wrapper::before {
    display: none;
  }
}
.cid-tXt7LrX7Kv .image-wrapper::after {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  top: 120px;
  right: -7rem;
  width: 230px;
  height: 120px;
  border-radius: 20rem 20rem 0 0;
}
@media (max-width: 992px) {
  .cid-tXt7LrX7Kv .image-wrapper::after {
    display: none;
  }
}
.cid-tXt7LrX7Kv .image-wrapper img {
  width: 100%;
  height: 626px;
  object-fit: cover;
}
.cid-tXt7LrX7Kv .title {
  display: flex;
  align-items: center;
}
.cid-tXt7LrX7Kv .title-wrapper {
  z-index: 1;
}
.cid-tXt7LrX7Kv .title-wrapper .mbr-section-subtitle {
  margin-bottom: 15px;
}
.cid-tXt7LrX7Kv .title-wrapper .mbr-section-title {
  margin-bottom: 8px;
}
.cid-tXt7LrX7Kv .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tXt7LrX7Kv .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #bfceff;
  box-shadow: none;
}
.cid-tXt7LrX7Kv .title-wrapper .mbr-section-btn .btn:hover {
  background: #bfceff !important;
  box-shadow: none !important;
}
.cid-tXt7LrX7Kv .mbr-section-title {
  color: #1e4381;
}
.cid-tXt7LrX7Kv .mbr-section-subtitle {
  color: #f3722f;
}
.cid-tXt7LrX7Kv .mbr-text {
  color: #1e4381;
}
.cid-tXmh1S4EEK {
  background-color: #e1e8ff;
}
.cid-tXmh1S4EEK H1 {
  color: #57468b;
}
.cid-tXmh1S4EEK .mbr-text,
.cid-tXmh1S4EEK .mbr-section-btn {
  color: #232323;
}
.cid-tXmh1S4EEK H3 {
  color: #716c80;
}
.cid-tXmh1S4EEK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXmh1S4EEK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXmhYAOrBE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #7f1933;
}
.cid-tXmhYAOrBE .mbr-section-head {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tXmhYAOrBE .mbr-section-head {
    margin-bottom: 16px;
  }
}
.cid-tXmhYAOrBE .mbr-section-head .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-tXmhYAOrBE .mbr-section-head .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
.cid-tXmhYAOrBE .mbr-section-head .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXmhYAOrBE .google-map {
  height: 30rem;
  position: relative;
}
.cid-tXmhYAOrBE .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tXmhYAOrBE .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-tXmhYAOrBE .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tXmhYAOrBE .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tXmhYAOrBE .mbr-section-subtitle {
  color: #FF4712;
  text-align: center;
}
.cid-tXmhYAOrBE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tXmibzwU0R {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #e1e8ff;
}
.cid-tXmibzwU0R .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXmibzwU0R .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tXmibzwU0R .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXmibzwU0R .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tXmibzwU0R a {
  font-weight: 600;
}
.cid-tXmibzwU0R a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tXmibzwU0R .col-lg-3,
  .cid-tXmibzwU0R .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tXmibzwU0R .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tXmibzwU0R .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tXmibzwU0R h5 {
  margin: 0;
}
.cid-tXmibzwU0R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXmibzwU0R .iconfont-wrapper {
  position: relative;
}
.cid-tXmibzwU0R .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tXmibzwU0R .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tXmibzwU0R .sociconfont-wrapper {
  display: flex;
}
.cid-tXmibzwU0R .card-title,
.cid-tXmibzwU0R .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tXmibzwU0R .card-text {
  color: #000000;
}
.cid-tXmibzwU0R .mbr-section-title {
  color: #000000;
}
.cid-tXmibzwU0R .main-title,
.cid-tXmibzwU0R .iconfont-wrapper {
  text-align: left;
}
.cid-tXo7pu0ccA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #7f1933;
}
.cid-tXmzAY6B4b .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-tXmzAY6B4b .collapsed {
  flex-direction: row!important;
}
.cid-tXmzAY6B4b .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXmzAY6B4b .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXmzAY6B4b .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tXmzAY6B4b .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tXmzAY6B4b .nav-item:focus,
.cid-tXmzAY6B4b .nav-link:focus {
  outline: none;
}
.cid-tXmzAY6B4b .text-white:hover,
.cid-tXmzAY6B4b .text-white:active,
.cid-tXmzAY6B4b .text-white:focus {
  color: white!important;
}
.cid-tXmzAY6B4b .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tXmzAY6B4b .dropdown-item:hover {
  color: black!important;
}
.cid-tXmzAY6B4b .dropdown-menu {
  background-color: white!important;
}
.cid-tXmzAY6B4b .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tXmzAY6B4b .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tXmzAY6B4b .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tXmzAY6B4b .nav-item .nav-link {
    position: relative;
  }
}
.cid-tXmzAY6B4b .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tXmzAY6B4b .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXmzAY6B4b .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tXmzAY6B4b .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tXmzAY6B4b .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tXmzAY6B4b .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #7f1933;
}
.cid-tXmzAY6B4b .navbar.opened {
  transition: all .3s;
  background: #7f1933 !important;
}
.cid-tXmzAY6B4b .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tXmzAY6B4b .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXmzAY6B4b .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXmzAY6B4b .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tXmzAY6B4b .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tXmzAY6B4b .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXmzAY6B4b .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXmzAY6B4b .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tXmzAY6B4b .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXmzAY6B4b .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tXmzAY6B4b .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tXmzAY6B4b .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXmzAY6B4b .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXmzAY6B4b .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tXmzAY6B4b .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXmzAY6B4b .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXmzAY6B4b .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tXmzAY6B4b .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tXmzAY6B4b .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXmzAY6B4b .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXmzAY6B4b .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tXmzAY6B4b .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tXmzAY6B4b .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tXmzAY6B4b .navbar.navbar-short {
  background: #7f1933 !important;
  min-height: 60px;
}
.cid-tXmzAY6B4b .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tXmzAY6B4b .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tXmzAY6B4b .navbar-caption {
  font-weight: 600!important;
}
.cid-tXmzAY6B4b .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXmzAY6B4b .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXmzAY6B4b .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXmzAY6B4b .dropdown-item.active,
.cid-tXmzAY6B4b .dropdown-item:active {
  background-color: transparent;
}
.cid-tXmzAY6B4b .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXmzAY6B4b .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXmzAY6B4b .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXmzAY6B4b .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7f1933;
}
.cid-tXmzAY6B4b .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXmzAY6B4b ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tXmzAY6B4b .navbar-buttons {
  text-align: center;
}
.cid-tXmzAY6B4b button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tXmzAY6B4b button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b1a374;
}
.cid-tXmzAY6B4b button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tXmzAY6B4b button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tXmzAY6B4b button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tXmzAY6B4b button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tXmzAY6B4b nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tXmzAY6B4b nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tXmzAY6B4b nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tXmzAY6B4b nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tXmzAY6B4b .nav-link {
  font-weight: 600!important;
}
.cid-tXmzAY6B4b a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tXmzAY6B4b .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tXmzAY6B4b .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tXmzAY6B4b .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXmzAY6B4b .navbar {
    height: 77px;
  }
  .cid-tXmzAY6B4b .navbar.opened {
    height: auto;
  }
  .cid-tXmzAY6B4b .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXtCwwVOB2 {
  background-color: #f1f1f2;
}
.cid-tXtCwwVOB2 .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-tXtCwwVOB2 .row {
    padding: 0 12px;
  }
}
.cid-tXtCwwVOB2 .row::after {
  content: '';
  display: block;
  background: #7f1933;
  position: absolute;
  top: 0;
  right: 0;
  width: 27%;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tXtCwwVOB2 .row::after {
    display: none;
  }
}
.cid-tXtCwwVOB2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtCwwVOB2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXtCwwVOB2 .image-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-tXtCwwVOB2 .image-wrapper {
    padding: 0 0 60px;
  }
}
.cid-tXtCwwVOB2 .image-wrapper::before {
  content: '';
  display: block;
  background-color: #f3722f;
  position: absolute;
  top: 0;
  right: -7rem;
  width: 230px;
  height: 120px;
  border-radius: 20rem 20rem 0 0;
}
@media (max-width: 992px) {
  .cid-tXtCwwVOB2 .image-wrapper::before {
    display: none;
  }
}
.cid-tXtCwwVOB2 .image-wrapper::after {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  top: 120px;
  right: -7rem;
  width: 230px;
  height: 120px;
  border-radius: 20rem 20rem 0 0;
}
@media (max-width: 992px) {
  .cid-tXtCwwVOB2 .image-wrapper::after {
    display: none;
  }
}
.cid-tXtCwwVOB2 .image-wrapper img {
  width: 100%;
  height: 626px;
  object-fit: cover;
}
.cid-tXtCwwVOB2 .title {
  display: flex;
  align-items: center;
}
.cid-tXtCwwVOB2 .title-wrapper {
  z-index: 1;
}
.cid-tXtCwwVOB2 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 15px;
}
.cid-tXtCwwVOB2 .title-wrapper .mbr-section-title {
  margin-bottom: 8px;
}
.cid-tXtCwwVOB2 .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tXtCwwVOB2 .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #bfceff;
  box-shadow: none;
}
.cid-tXtCwwVOB2 .title-wrapper .mbr-section-btn .btn:hover {
  background: #bfceff !important;
  box-shadow: none !important;
}
.cid-tXtCwwVOB2 .mbr-section-title {
  color: #1e4381;
}
.cid-tXtCwwVOB2 .mbr-section-subtitle {
  color: #f3722f;
}
.cid-tXtCwwVOB2 .mbr-text {
  color: #1e4381;
}
.cid-tXmzAYPjsx {
  background-color: #e1e8ff;
}
.cid-tXmzAYPjsx H1 {
  color: #57468b;
}
.cid-tXmzAYPjsx .mbr-text,
.cid-tXmzAYPjsx .mbr-section-btn {
  color: #232323;
}
.cid-tXmzAYPjsx H3 {
  color: #716c80;
}
.cid-tXmzAYPjsx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXmzAYPjsx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXmzAZ70z9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #cc2952;
}
.cid-tXmzAZ70z9 .mbr-section-head {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tXmzAZ70z9 .mbr-section-head {
    margin-bottom: 16px;
  }
}
.cid-tXmzAZ70z9 .mbr-section-head .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-tXmzAZ70z9 .mbr-section-head .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
.cid-tXmzAZ70z9 .mbr-section-head .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXmzAZ70z9 .google-map {
  height: 30rem;
  position: relative;
}
.cid-tXmzAZ70z9 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tXmzAZ70z9 .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-tXmzAZ70z9 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tXmzAZ70z9 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tXmzAZ70z9 .mbr-section-subtitle {
  color: #FF4712;
  text-align: center;
}
.cid-tXmzAZ70z9 .mbr-section-title {
  color: #20232a;
  text-align: center;
}
.cid-tXmzAZmVZO {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #e1e8ff;
}
.cid-tXmzAZmVZO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXmzAZmVZO .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tXmzAZmVZO .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXmzAZmVZO .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tXmzAZmVZO a {
  font-weight: 600;
}
.cid-tXmzAZmVZO a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tXmzAZmVZO .col-lg-3,
  .cid-tXmzAZmVZO .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tXmzAZmVZO .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tXmzAZmVZO .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tXmzAZmVZO h5 {
  margin: 0;
}
.cid-tXmzAZmVZO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXmzAZmVZO .iconfont-wrapper {
  position: relative;
}
.cid-tXmzAZmVZO .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tXmzAZmVZO .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tXmzAZmVZO .sociconfont-wrapper {
  display: flex;
}
.cid-tXmzAZmVZO .card-title,
.cid-tXmzAZmVZO .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tXmzAZmVZO .card-text {
  color: #000000;
}
.cid-tXmzAZmVZO .mbr-section-title {
  color: #000000;
}
.cid-tXmzAZmVZO .main-title,
.cid-tXmzAZmVZO .iconfont-wrapper {
  text-align: left;
}
.cid-tXo7pu0ccA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #7f1933;
}
.cid-tXtFprum28 .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-tXtFprum28 .collapsed {
  flex-direction: row!important;
}
.cid-tXtFprum28 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXtFprum28 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXtFprum28 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tXtFprum28 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tXtFprum28 .nav-item:focus,
.cid-tXtFprum28 .nav-link:focus {
  outline: none;
}
.cid-tXtFprum28 .text-white:hover,
.cid-tXtFprum28 .text-white:active,
.cid-tXtFprum28 .text-white:focus {
  color: white!important;
}
.cid-tXtFprum28 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tXtFprum28 .dropdown-item:hover {
  color: black!important;
}
.cid-tXtFprum28 .dropdown-menu {
  background-color: white!important;
}
.cid-tXtFprum28 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tXtFprum28 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tXtFprum28 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tXtFprum28 .nav-item .nav-link {
    position: relative;
  }
}
.cid-tXtFprum28 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tXtFprum28 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXtFprum28 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tXtFprum28 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tXtFprum28 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tXtFprum28 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #7f1933;
}
.cid-tXtFprum28 .navbar.opened {
  transition: all .3s;
  background: #7f1933 !important;
}
.cid-tXtFprum28 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tXtFprum28 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXtFprum28 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXtFprum28 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tXtFprum28 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tXtFprum28 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXtFprum28 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXtFprum28 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tXtFprum28 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXtFprum28 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tXtFprum28 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tXtFprum28 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXtFprum28 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXtFprum28 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tXtFprum28 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXtFprum28 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXtFprum28 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tXtFprum28 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tXtFprum28 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXtFprum28 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXtFprum28 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tXtFprum28 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tXtFprum28 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tXtFprum28 .navbar.navbar-short {
  background: #7f1933 !important;
  min-height: 60px;
}
.cid-tXtFprum28 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tXtFprum28 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tXtFprum28 .navbar-caption {
  font-weight: 600!important;
}
.cid-tXtFprum28 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXtFprum28 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXtFprum28 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXtFprum28 .dropdown-item.active,
.cid-tXtFprum28 .dropdown-item:active {
  background-color: transparent;
}
.cid-tXtFprum28 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXtFprum28 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXtFprum28 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXtFprum28 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7f1933;
}
.cid-tXtFprum28 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXtFprum28 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tXtFprum28 .navbar-buttons {
  text-align: center;
}
.cid-tXtFprum28 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tXtFprum28 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b1a374;
}
.cid-tXtFprum28 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tXtFprum28 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tXtFprum28 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tXtFprum28 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tXtFprum28 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tXtFprum28 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tXtFprum28 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tXtFprum28 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tXtFprum28 .nav-link {
  font-weight: 600!important;
}
.cid-tXtFprum28 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tXtFprum28 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tXtFprum28 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tXtFprum28 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXtFprum28 .navbar {
    height: 77px;
  }
  .cid-tXtFprum28 .navbar.opened {
    height: auto;
  }
  .cid-tXtFprum28 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXtFprVzpD {
  background-color: #f1f1f2;
}
.cid-tXtFprVzpD .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-tXtFprVzpD .row {
    padding: 0 12px;
  }
}
.cid-tXtFprVzpD .row::after {
  content: '';
  display: block;
  background: #7f1933;
  position: absolute;
  top: 0;
  right: 0;
  width: 27%;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tXtFprVzpD .row::after {
    display: none;
  }
}
.cid-tXtFprVzpD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtFprVzpD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXtFprVzpD .image-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-tXtFprVzpD .image-wrapper {
    padding: 0 0 60px;
  }
}
.cid-tXtFprVzpD .image-wrapper::before {
  content: '';
  display: block;
  background-color: #f3722f;
  position: absolute;
  top: 0;
  right: -7rem;
  width: 230px;
  height: 120px;
  border-radius: 20rem 20rem 0 0;
}
@media (max-width: 992px) {
  .cid-tXtFprVzpD .image-wrapper::before {
    display: none;
  }
}
.cid-tXtFprVzpD .image-wrapper::after {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  top: 120px;
  right: -7rem;
  width: 230px;
  height: 120px;
  border-radius: 20rem 20rem 0 0;
}
@media (max-width: 992px) {
  .cid-tXtFprVzpD .image-wrapper::after {
    display: none;
  }
}
.cid-tXtFprVzpD .image-wrapper img {
  width: 100%;
  height: 626px;
  object-fit: cover;
}
.cid-tXtFprVzpD .title {
  display: flex;
  align-items: center;
}
.cid-tXtFprVzpD .title-wrapper {
  z-index: 1;
}
.cid-tXtFprVzpD .title-wrapper .mbr-section-subtitle {
  margin-bottom: 15px;
}
.cid-tXtFprVzpD .title-wrapper .mbr-section-title {
  margin-bottom: 8px;
}
.cid-tXtFprVzpD .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tXtFprVzpD .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #bfceff;
  box-shadow: none;
}
.cid-tXtFprVzpD .title-wrapper .mbr-section-btn .btn:hover {
  background: #bfceff !important;
  box-shadow: none !important;
}
.cid-tXtFprVzpD .mbr-section-title {
  color: #1e4381;
}
.cid-tXtFprVzpD .mbr-section-subtitle {
  color: #f3722f;
}
.cid-tXtFprVzpD .mbr-text {
  color: #1e4381;
}
.cid-tXtFpsciyp {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tXtFpsciyp H1 {
  color: #ff3366;
}
.cid-tXtFpsciyp .align-left {
  margin: auto;
}
.cid-tXtFpsciyp .row {
  justify-content: space-between;
}
.cid-tXtFpsciyp .mbr-text,
.cid-tXtFpsciyp .mbr-section-btn {
  color: #716c80;
}
.cid-tXtFpsciyp .block-border {
  border-left: 2px solid #efefef;
  padding-left: 4rem;
}
.cid-tXtFpsciyp .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tXtFpsciyp .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-tXtFpsciyp .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-tXtFpsciyp .link:hover {
  color: #57468b !important;
}
.cid-tXtFpsciyp .link:hover .link-ico {
  color: #57468b !important;
  padding-left: 10px;
}
.cid-tXtFpsciyp DIV {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-tXtFpsciyp .block-border {
    border: none;
    padding-left: 1rem;
  }
  .cid-tXtFpsciyp h1 {
    padding-bottom: 1rem;
  }
}
.cid-tXtFpsciyp .mbr-text,
.cid-tXtFpsciyp .media-content {
  color: #ff3366;
}
.cid-tXtFpspe3r {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f3722f;
}
.cid-tXtFpspe3r img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-tXtFpspe3r H1 {
  color: #57468b;
}
.cid-tXtFpspe3r .mbr-text,
.cid-tXtFpspe3r .mbr-section-btn {
  color: #716c80;
}
.cid-tXtFpspe3r H3 {
  color: #716c80;
}
.cid-tXtFpspe3r .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tXtFpspe3r .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-tXtFpspe3r .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-tXtFpspe3r .link:hover {
  color: #57468b !important;
}
.cid-tXtFpspe3r .link:hover .link-ico {
  color: #57468b !important;
  padding-left: 10px;
}
.cid-tXtFpspe3r DIV {
  color: #57468b;
}
.cid-tXtFpspe3r .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtFpspe3r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXtFpspe3r .mbr-text,
.cid-tXtFpspe3r .media-content {
  color: #232323;
}
.cid-tXtFpsCaaG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7f1933;
}
.cid-tXtFpsCaaG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtFpsCaaG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tXtFpsCaaG .container {
    padding: 0 30px;
  }
}
.cid-tXtFpsCaaG .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-tXtFpsCaaG .row {
    margin: 0 -34px;
  }
}
.cid-tXtFpsCaaG .title-wrapper {
  margin-bottom: 30px;
}
.cid-tXtFpsCaaG .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tXtFpsCaaG .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXtFpsCaaG .card {
  padding: 0 34px;
}
@media (max-width: 992px) {
  .cid-tXtFpsCaaG .card {
    margin-bottom: 40px;
    padding: 0 12px;
  }
}
.cid-tXtFpsCaaG .card .card-wrapper .mbr-number {
  margin-bottom: 30px;
}
.cid-tXtFpsCaaG .card .card-wrapper .mbr-card-title {
  margin-bottom: 30px;
}
.cid-tXtFpsCaaG .card .card-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tXtFpsCaaG .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-tXtFpsCaaG .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-tXtFpsCaaG .mbr-number {
  color: #212529;
  text-align: center;
}
.cid-tXtFpsCaaG .mbr-card-title {
  color: #ffffff;
  text-align: center;
}
.cid-tXtFpsCaaG .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-tXtFpsZ32Y {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f3722f;
}
.cid-tXtFpsZ32Y H1 {
  color: #ffffff;
}
.cid-tXtFpsZ32Y .align-left {
  margin: auto;
}
.cid-tXtFpsZ32Y .row {
  justify-content: space-between;
}
.cid-tXtFpsZ32Y .mbr-text,
.cid-tXtFpsZ32Y .mbr-section-btn {
  color: #716c80;
}
.cid-tXtFpsZ32Y .block-border {
  border-left: 2px solid #7f1933;
  padding-left: 4rem;
}
.cid-tXtFpsZ32Y .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tXtFpsZ32Y .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-tXtFpsZ32Y .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-tXtFpsZ32Y .link:hover {
  color: #57468b !important;
}
.cid-tXtFpsZ32Y .link:hover .link-ico {
  color: #57468b !important;
  padding-left: 10px;
}
.cid-tXtFpsZ32Y DIV {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-tXtFpsZ32Y .block-border {
    border: none;
    padding-left: 1rem;
  }
  .cid-tXtFpsZ32Y h1 {
    padding-bottom: 1rem;
  }
}
.cid-tXtFpsZ32Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtFpsZ32Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXtFpsZ32Y .mbr-text,
.cid-tXtFpsZ32Y .media-content {
  color: #ffffff;
}
.cid-tXtFptbu17 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cc2952;
}
.cid-tXtFptbu17 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtFptbu17 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXtFptbu17 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tXtFptbu17 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXtFptbu17 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tXtFptbu17 .mbr-section-title {
  color: #131313;
}
.cid-tXtFptbu17 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tXtFptbu17 .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tXtFptbu17 .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tXtFptbu17 .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #7787a5;
  box-shadow: 4px 4px 0 #7787a5;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tXtFptbu17 .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tXtFptbu17 .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tXtFptbu17 .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tXtFptbu17 .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tXtFptbu17 .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tXtFptbu17 .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tXtFptbu17 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tXtFptbu17 .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tXtFptbu17 .content-wrap {
    margin-top: 0;
  }
}
.cid-tXtFptbu17 .card-title {
  color: #131313;
}
.cid-tXtFptbu17 .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXtFptbu17 .card-text {
    margin-top: 15px;
  }
}
.cid-tXtFptbu17 .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXtFptbu17 .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tXtFptbu17 .card-link {
    margin-top: 15px;
  }
}
.cid-tXtFptbu17 .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tXtFptbu17 .card-title,
.cid-tXtFptbu17 .iconfont-wrapper {
  text-align: center;
}
.cid-tXtFptyECH {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #f3722f;
}
.cid-tXtFptyECH .nav-tabs .nav-item.open .nav-link:focus,
.cid-tXtFptyECH .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tXtFptyECH .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-tXtFptyECH .nav-tabs .nav-item {
  padding: .5rem;
}
.cid-tXtFptyECH .nav-tabs .nav-link {
  color: #ffffff;
  font-style: normal;
  font-weight: 500;
  background-color: #5580ff;
  border-radius: .25rem;
  transition: all .5s;
}
.cid-tXtFptyECH .nav-tabs .nav-link:hover {
  cursor: pointer;
  background-color: #57468b;
}
.cid-tXtFptyECH .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background-color: #57468b;
  border-color: #57468b;
}
.cid-tXtFptyECH .nav-tabs .nav-link.active:hover {
  background-color: #57468b;
}
.cid-tXtFptyECH P {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tXtFptyECH .nav-tabs {
    flex-direction: column;
    justify-content: center;
  }
  .cid-tXtFptyECH .mbr-text,
  .cid-tXtFptyECH .nav-link {
    text-align: center;
  }
}
.cid-tXtFptS6Pj {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #7f1933;
}
.cid-tXtFptS6Pj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtFptS6Pj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tXtFptS6Pj .container {
    padding: 0 30px;
  }
}
.cid-tXtFptS6Pj .row {
  justify-content: center;
}
.cid-tXtFptS6Pj .title-wrapper {
  margin-bottom: 40px;
}
.cid-tXtFptS6Pj .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tXtFptS6Pj .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXtFptS6Pj .card {
  margin-bottom: 40px;
}
.cid-tXtFptS6Pj .card .card-wrapper .mbr-number {
  margin: 20px 0;
}
.cid-tXtFptS6Pj .card .card-wrapper .mbr-card-title {
  margin-bottom: 25px;
}
.cid-tXtFptS6Pj .card .card-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tXtFptS6Pj .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-tXtFptS6Pj .mbr-section-title {
  color: #212529;
}
.cid-tXtFptS6Pj .mbr-number {
  color: #212529;
  text-align: center;
}
.cid-tXtFptS6Pj .mbr-card-title {
  color: #ffffff;
  text-align: center;
}
.cid-tXtFptS6Pj .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tXtFptS6Pj .mbr-section-title,
.cid-tXtFptS6Pj .mbr-section-btn {
  text-align: center;
}
.cid-tXtFpufxoM {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-tXtFpufxoM img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-tXtFpufxoM H1 {
  color: #57468b;
}
.cid-tXtFpufxoM .mbr-text,
.cid-tXtFpufxoM .mbr-section-btn {
  color: #716c80;
}
.cid-tXtFpufxoM H3 {
  color: #716c80;
}
.cid-tXtFpufxoM .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tXtFpufxoM .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-tXtFpufxoM .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-tXtFpufxoM .link:hover {
  color: #57468b !important;
}
.cid-tXtFpufxoM .link:hover .link-ico {
  color: #57468b !important;
  padding-left: 10px;
}
.cid-tXtFpufxoM DIV {
  color: #57468b;
}
.cid-tXtFpur6Xn {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #7f1933;
}
.cid-tXtFpur6Xn .card-header {
  background: transparent;
}
.cid-tXtFpur6Xn .mbr-iconfont {
  font-size: 1.4rem!important;
}
.cid-tXtFpur6Xn .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-tXtFpur6Xn .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tXtFpur6Xn .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tXtFpur6Xn .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tXtFpur6Xn .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tXtFpur6Xn .card .panel-body {
  color: #767676;
}
.cid-tXtFpur6Xn h4 {
  flex-direction: row-reverse;
  display: flex;
  background: #f2f6ff;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  border: none;
  padding: 1.4rem 1.6rem;
}
.cid-tXtFpur6Xn H4 {
  color: #57468b;
}
.cid-tXtFpur6Xn H2 {
  color: #e1e8ff;
}
.cid-tXtFpur6Xn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtFpur6Xn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXtFpuQ0EJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f3722f;
}
.cid-tXtFpuQ0EJ H1 {
  color: #ffffff;
}
.cid-tXtFpuQ0EJ .mbr-text,
.cid-tXtFpuQ0EJ .mbr-section-btn {
  color: #ffffff;
}
.cid-tXtFpuQ0EJ H3 {
  color: #716c80;
}
.cid-tXtFpv22wj {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #7f1933;
  position: relative;
  overflow: hidden;
}
.cid-tXtFpv22wj svg {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.2);
  animation: wave 5s ease-in-out infinite;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
@keyframes wave {
  from {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
  50% {
    transform: rotate(0.2deg) translate(-50%) scale(2.1, 1.3);
  }
  to {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
}
.cid-tXtFpv22wj .mbr-text,
.cid-tXtFpv22wj .mbr-section-btn {
  color: #ffffff;
}
.cid-tXtFpv22wj #e12_areaS3 {
  fill: #f3722f !important;
}
.cid-tXtFpv22wj #e19_areaS3 {
  fill: #cc2952 !important;
}
.cid-tXtFpv22wj H1 {
  color: #ffffff;
}
.cid-tXtFpv22wj img {
  width: 70%;
  border-radius: 10px;
  animation: line 4s ease-in-out infinite;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-tXtFpv22wj .box {
  width: 95%;
  height: 90%;
  opacity: 0.5;
  background-color: #c8f1ee;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-tXtFpv22wj .box {
    top: 2%;
    width: 97%;
    height: 96%;
  }
}
@media (max-width: 576px) {
  .cid-tXtFpv22wj img {
    width: 100%;
  }
}
.cid-tXtFpvf5yb {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f3722f;
}
.cid-tXtFpvf5yb .mbr-text,
.cid-tXtFpvf5yb .mbr-section-btn {
  color: #ffffff;
}
.cid-tXtFpvf5yb .relative {
  z-index: 2;
  position: relative;
  padding: 0 2rem;
  padding-right: 10rem;
}
.cid-tXtFpvf5yb .author-box {
  display: flex;
  flex-direction: row;
}
.cid-tXtFpvf5yb .ico1 {
  font-size: 2rem;
}
.cid-tXtFpvf5yb .ico2 {
  position: absolute;
  bottom: 0%;
  right: 1.5rem;
  font-size: 6rem!important;
  z-index: 1;
  opacity: 0.1;
}
.cid-tXtFpvf5yb H3 {
  color: #57468b;
}
.cid-tXtFpvf5yb H4 {
  color: #716c80;
}
.cid-tXtFpvf5yb .text {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tXtFpvf5yb .relative {
    padding: 0;
  }
}
.cid-tXtFpvucd0 {
  background-image: url("../../../assets/images/istockphoto-1036018388-612x612-1-612x344.jpg");
}
.cid-tXtFpvucd0 .container {
  height: 40rem;
}
.cid-tXytwsbbMX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tXytwsbbMX .container {
    padding: 0 25px;
  }
}
.cid-tXytwsbbMX .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tXytwsbbMX .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tXytwsbbMX .panel-group {
  border-bottom: 2px solid #f3722f;
}
.cid-tXytwsbbMX .panel-group .card {
  border-top: 2px solid #f3722f;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tXytwsbbMX .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tXytwsbbMX .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tXytwsbbMX .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f3722f;
  box-shadow: inset 52px 0 0 0 #7f1933;
}
.cid-tXytwsbbMX .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f3722f;
  box-shadow: inset 52px 0 0 0 #7f1933;
}
.cid-tXytwsbbMX .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tXytwsbbMX .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #7f1933;
  background-color: #f3722f;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tXytwsbbMX .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tXytwsbbMX .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tXytwsbbMX .mbr-section-title {
  color: #000000;
}
.cid-tXytwsbbMX .panel-title-edit {
  color: #000000;
}
.cid-tXytwsbbMX .panel-text {
  color: #000000;
}
.cid-tXtFpvEAsW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #7f1933;
}
.cid-tXtFpvEAsW .mbr-section-head {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tXtFpvEAsW .mbr-section-head {
    margin-bottom: 16px;
  }
}
.cid-tXtFpvEAsW .mbr-section-head .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-tXtFpvEAsW .mbr-section-head .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
.cid-tXtFpvEAsW .mbr-section-head .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXtFpvEAsW .google-map {
  height: 30rem;
  position: relative;
}
.cid-tXtFpvEAsW .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tXtFpvEAsW .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-tXtFpvEAsW .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tXtFpvEAsW .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tXtFpvEAsW .mbr-section-subtitle {
  color: #FF4712;
  text-align: center;
}
.cid-tXtFpvEAsW .mbr-section-title {
  color: #efefef;
  text-align: center;
}
.cid-tXtFpyVugM {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #e1e8ff;
}
.cid-tXtFpyVugM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtFpyVugM .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tXtFpyVugM .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXtFpyVugM .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tXtFpyVugM a {
  font-weight: 600;
}
.cid-tXtFpyVugM a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tXtFpyVugM .col-lg-3,
  .cid-tXtFpyVugM .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tXtFpyVugM .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tXtFpyVugM .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tXtFpyVugM h5 {
  margin: 0;
}
.cid-tXtFpyVugM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXtFpyVugM .iconfont-wrapper {
  position: relative;
}
.cid-tXtFpyVugM .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tXtFpyVugM .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tXtFpyVugM .sociconfont-wrapper {
  display: flex;
}
.cid-tXtFpyVugM .card-title,
.cid-tXtFpyVugM .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tXtFpyVugM .card-text {
  color: #000000;
}
.cid-tXtFpyVugM .mbr-section-title {
  color: #000000;
}
.cid-tXtFpyVugM .main-title,
.cid-tXtFpyVugM .iconfont-wrapper {
  text-align: left;
}
.cid-tXtFpC3rKz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #7f1933;
}
.cid-tXtKleILW8 .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-tXtKleILW8 .collapsed {
  flex-direction: row!important;
}
.cid-tXtKleILW8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXtKleILW8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXtKleILW8 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tXtKleILW8 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tXtKleILW8 .nav-item:focus,
.cid-tXtKleILW8 .nav-link:focus {
  outline: none;
}
.cid-tXtKleILW8 .text-white:hover,
.cid-tXtKleILW8 .text-white:active,
.cid-tXtKleILW8 .text-white:focus {
  color: white!important;
}
.cid-tXtKleILW8 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tXtKleILW8 .dropdown-item:hover {
  color: black!important;
}
.cid-tXtKleILW8 .dropdown-menu {
  background-color: white!important;
}
.cid-tXtKleILW8 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tXtKleILW8 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tXtKleILW8 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tXtKleILW8 .nav-item .nav-link {
    position: relative;
  }
}
.cid-tXtKleILW8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tXtKleILW8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXtKleILW8 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tXtKleILW8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tXtKleILW8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tXtKleILW8 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #7f1933;
}
.cid-tXtKleILW8 .navbar.opened {
  transition: all .3s;
  background: #7f1933 !important;
}
.cid-tXtKleILW8 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tXtKleILW8 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXtKleILW8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXtKleILW8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tXtKleILW8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tXtKleILW8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXtKleILW8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXtKleILW8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tXtKleILW8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXtKleILW8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tXtKleILW8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tXtKleILW8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXtKleILW8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXtKleILW8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tXtKleILW8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXtKleILW8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXtKleILW8 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tXtKleILW8 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tXtKleILW8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXtKleILW8 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXtKleILW8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tXtKleILW8 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tXtKleILW8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tXtKleILW8 .navbar.navbar-short {
  background: #7f1933 !important;
  min-height: 60px;
}
.cid-tXtKleILW8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tXtKleILW8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tXtKleILW8 .navbar-caption {
  font-weight: 600!important;
}
.cid-tXtKleILW8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXtKleILW8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXtKleILW8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXtKleILW8 .dropdown-item.active,
.cid-tXtKleILW8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tXtKleILW8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXtKleILW8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXtKleILW8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXtKleILW8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7f1933;
}
.cid-tXtKleILW8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXtKleILW8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tXtKleILW8 .navbar-buttons {
  text-align: center;
}
.cid-tXtKleILW8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tXtKleILW8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b1a374;
}
.cid-tXtKleILW8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tXtKleILW8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tXtKleILW8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tXtKleILW8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tXtKleILW8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tXtKleILW8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tXtKleILW8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tXtKleILW8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tXtKleILW8 .nav-link {
  font-weight: 600!important;
}
.cid-tXtKleILW8 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tXtKleILW8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tXtKleILW8 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tXtKleILW8 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXtKleILW8 .navbar {
    height: 77px;
  }
  .cid-tXtKleILW8 .navbar.opened {
    height: auto;
  }
  .cid-tXtKleILW8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXtKlf8FIv {
  background-color: #f1f1f2;
}
.cid-tXtKlf8FIv .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-tXtKlf8FIv .row {
    padding: 0 12px;
  }
}
.cid-tXtKlf8FIv .row::after {
  content: '';
  display: block;
  background: #7f1933;
  position: absolute;
  top: 0;
  right: 0;
  width: 27%;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tXtKlf8FIv .row::after {
    display: none;
  }
}
.cid-tXtKlf8FIv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtKlf8FIv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXtKlf8FIv .image-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-tXtKlf8FIv .image-wrapper {
    padding: 0 0 60px;
  }
}
.cid-tXtKlf8FIv .image-wrapper::before {
  content: '';
  display: block;
  background-color: #f3722f;
  position: absolute;
  top: 0;
  right: -7rem;
  width: 230px;
  height: 120px;
  border-radius: 20rem 20rem 0 0;
}
@media (max-width: 992px) {
  .cid-tXtKlf8FIv .image-wrapper::before {
    display: none;
  }
}
.cid-tXtKlf8FIv .image-wrapper::after {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  top: 120px;
  right: -7rem;
  width: 230px;
  height: 120px;
  border-radius: 20rem 20rem 0 0;
}
@media (max-width: 992px) {
  .cid-tXtKlf8FIv .image-wrapper::after {
    display: none;
  }
}
.cid-tXtKlf8FIv .image-wrapper img {
  width: 100%;
  height: 626px;
  object-fit: cover;
}
.cid-tXtKlf8FIv .title {
  display: flex;
  align-items: center;
}
.cid-tXtKlf8FIv .title-wrapper {
  z-index: 1;
}
.cid-tXtKlf8FIv .title-wrapper .mbr-section-subtitle {
  margin-bottom: 15px;
}
.cid-tXtKlf8FIv .title-wrapper .mbr-section-title {
  margin-bottom: 8px;
}
.cid-tXtKlf8FIv .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tXtKlf8FIv .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #bfceff;
  box-shadow: none;
}
.cid-tXtKlf8FIv .title-wrapper .mbr-section-btn .btn:hover {
  background: #bfceff !important;
  box-shadow: none !important;
}
.cid-tXtKlf8FIv .mbr-section-title {
  color: #1e4381;
}
.cid-tXtKlf8FIv .mbr-section-subtitle {
  color: #f3722f;
}
.cid-tXtKlf8FIv .mbr-text {
  color: #1e4381;
}
.cid-tXtKlfrGVF {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tXtKlfrGVF H1 {
  color: #ff3366;
}
.cid-tXtKlfrGVF .align-left {
  margin: auto;
}
.cid-tXtKlfrGVF .row {
  justify-content: space-between;
}
.cid-tXtKlfrGVF .mbr-text,
.cid-tXtKlfrGVF .mbr-section-btn {
  color: #716c80;
}
.cid-tXtKlfrGVF .block-border {
  border-left: 2px solid #efefef;
  padding-left: 4rem;
}
.cid-tXtKlfrGVF .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tXtKlfrGVF .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-tXtKlfrGVF .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-tXtKlfrGVF .link:hover {
  color: #57468b !important;
}
.cid-tXtKlfrGVF .link:hover .link-ico {
  color: #57468b !important;
  padding-left: 10px;
}
.cid-tXtKlfrGVF DIV {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-tXtKlfrGVF .block-border {
    border: none;
    padding-left: 1rem;
  }
  .cid-tXtKlfrGVF h1 {
    padding-bottom: 1rem;
  }
}
.cid-tXtKlfrGVF .mbr-text,
.cid-tXtKlfrGVF .media-content {
  color: #ff3366;
}
.cid-tXtKlfEfF0 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f3722f;
}
.cid-tXtKlfEfF0 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-tXtKlfEfF0 H1 {
  color: #57468b;
}
.cid-tXtKlfEfF0 .mbr-text,
.cid-tXtKlfEfF0 .mbr-section-btn {
  color: #716c80;
}
.cid-tXtKlfEfF0 H3 {
  color: #716c80;
}
.cid-tXtKlfEfF0 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tXtKlfEfF0 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-tXtKlfEfF0 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-tXtKlfEfF0 .link:hover {
  color: #57468b !important;
}
.cid-tXtKlfEfF0 .link:hover .link-ico {
  color: #57468b !important;
  padding-left: 10px;
}
.cid-tXtKlfEfF0 DIV {
  color: #57468b;
}
.cid-tXtKlfEfF0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtKlfEfF0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXtKlfEfF0 .mbr-text,
.cid-tXtKlfEfF0 .media-content {
  color: #232323;
}
.cid-tXtKlfVPLB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7f1933;
}
.cid-tXtKlfVPLB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtKlfVPLB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tXtKlfVPLB .container {
    padding: 0 30px;
  }
}
.cid-tXtKlfVPLB .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-tXtKlfVPLB .row {
    margin: 0 -34px;
  }
}
.cid-tXtKlfVPLB .title-wrapper {
  margin-bottom: 30px;
}
.cid-tXtKlfVPLB .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tXtKlfVPLB .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXtKlfVPLB .card {
  padding: 0 34px;
}
@media (max-width: 992px) {
  .cid-tXtKlfVPLB .card {
    margin-bottom: 40px;
    padding: 0 12px;
  }
}
.cid-tXtKlfVPLB .card .card-wrapper .mbr-number {
  margin-bottom: 30px;
}
.cid-tXtKlfVPLB .card .card-wrapper .mbr-card-title {
  margin-bottom: 30px;
}
.cid-tXtKlfVPLB .card .card-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tXtKlfVPLB .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-tXtKlfVPLB .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-tXtKlfVPLB .mbr-number {
  color: #212529;
  text-align: center;
}
.cid-tXtKlfVPLB .mbr-card-title {
  color: #ffffff;
  text-align: center;
}
.cid-tXtKlfVPLB .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-tXtKlghxMw {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f3722f;
}
.cid-tXtKlghxMw H1 {
  color: #ffffff;
}
.cid-tXtKlghxMw .align-left {
  margin: auto;
}
.cid-tXtKlghxMw .row {
  justify-content: space-between;
}
.cid-tXtKlghxMw .mbr-text,
.cid-tXtKlghxMw .mbr-section-btn {
  color: #716c80;
}
.cid-tXtKlghxMw .block-border {
  border-left: 2px solid #7f1933;
  padding-left: 4rem;
}
.cid-tXtKlghxMw .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tXtKlghxMw .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-tXtKlghxMw .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-tXtKlghxMw .link:hover {
  color: #57468b !important;
}
.cid-tXtKlghxMw .link:hover .link-ico {
  color: #57468b !important;
  padding-left: 10px;
}
.cid-tXtKlghxMw DIV {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-tXtKlghxMw .block-border {
    border: none;
    padding-left: 1rem;
  }
  .cid-tXtKlghxMw h1 {
    padding-bottom: 1rem;
  }
}
.cid-tXtKlghxMw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtKlghxMw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXtKlghxMw .mbr-text,
.cid-tXtKlghxMw .media-content {
  color: #ffffff;
}
.cid-tXtKlgq2fV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cc2952;
}
.cid-tXtKlgq2fV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtKlgq2fV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXtKlgq2fV .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tXtKlgq2fV .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXtKlgq2fV .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tXtKlgq2fV .mbr-section-title {
  color: #131313;
}
.cid-tXtKlgq2fV .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tXtKlgq2fV .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tXtKlgq2fV .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tXtKlgq2fV .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #7787a5;
  box-shadow: 4px 4px 0 #7787a5;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tXtKlgq2fV .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tXtKlgq2fV .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tXtKlgq2fV .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tXtKlgq2fV .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tXtKlgq2fV .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tXtKlgq2fV .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tXtKlgq2fV .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tXtKlgq2fV .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tXtKlgq2fV .content-wrap {
    margin-top: 0;
  }
}
.cid-tXtKlgq2fV .card-title {
  color: #131313;
}
.cid-tXtKlgq2fV .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXtKlgq2fV .card-text {
    margin-top: 15px;
  }
}
.cid-tXtKlgq2fV .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXtKlgq2fV .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tXtKlgq2fV .card-link {
    margin-top: 15px;
  }
}
.cid-tXtKlgq2fV .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tXtKlgq2fV .card-title,
.cid-tXtKlgq2fV .iconfont-wrapper {
  text-align: center;
}
.cid-tXtKlgQ6SA {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #f3722f;
}
.cid-tXtKlgQ6SA .nav-tabs .nav-item.open .nav-link:focus,
.cid-tXtKlgQ6SA .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tXtKlgQ6SA .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-tXtKlgQ6SA .nav-tabs .nav-item {
  padding: .5rem;
}
.cid-tXtKlgQ6SA .nav-tabs .nav-link {
  color: #ffffff;
  font-style: normal;
  font-weight: 500;
  background-color: #5580ff;
  border-radius: .25rem;
  transition: all .5s;
}
.cid-tXtKlgQ6SA .nav-tabs .nav-link:hover {
  cursor: pointer;
  background-color: #57468b;
}
.cid-tXtKlgQ6SA .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background-color: #57468b;
  border-color: #57468b;
}
.cid-tXtKlgQ6SA .nav-tabs .nav-link.active:hover {
  background-color: #57468b;
}
.cid-tXtKlgQ6SA P {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tXtKlgQ6SA .nav-tabs {
    flex-direction: column;
    justify-content: center;
  }
  .cid-tXtKlgQ6SA .mbr-text,
  .cid-tXtKlgQ6SA .nav-link {
    text-align: center;
  }
}
.cid-tXtKlh70HP {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #7f1933;
}
.cid-tXtKlh70HP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtKlh70HP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tXtKlh70HP .container {
    padding: 0 30px;
  }
}
.cid-tXtKlh70HP .row {
  justify-content: center;
}
.cid-tXtKlh70HP .title-wrapper {
  margin-bottom: 40px;
}
.cid-tXtKlh70HP .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tXtKlh70HP .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXtKlh70HP .card {
  margin-bottom: 40px;
}
.cid-tXtKlh70HP .card .card-wrapper .mbr-number {
  margin: 20px 0;
}
.cid-tXtKlh70HP .card .card-wrapper .mbr-card-title {
  margin-bottom: 25px;
}
.cid-tXtKlh70HP .card .card-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tXtKlh70HP .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-tXtKlh70HP .mbr-section-title {
  color: #212529;
}
.cid-tXtKlh70HP .mbr-number {
  color: #212529;
  text-align: center;
}
.cid-tXtKlh70HP .mbr-card-title {
  color: #ffffff;
  text-align: center;
}
.cid-tXtKlh70HP .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tXtKlh70HP .mbr-section-title,
.cid-tXtKlh70HP .mbr-section-btn {
  text-align: center;
}
.cid-tXtKlhqQK9 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-tXtKlhqQK9 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-tXtKlhqQK9 H1 {
  color: #57468b;
}
.cid-tXtKlhqQK9 .mbr-text,
.cid-tXtKlhqQK9 .mbr-section-btn {
  color: #716c80;
}
.cid-tXtKlhqQK9 H3 {
  color: #716c80;
}
.cid-tXtKlhqQK9 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tXtKlhqQK9 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-tXtKlhqQK9 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-tXtKlhqQK9 .link:hover {
  color: #57468b !important;
}
.cid-tXtKlhqQK9 .link:hover .link-ico {
  color: #57468b !important;
  padding-left: 10px;
}
.cid-tXtKlhqQK9 DIV {
  color: #57468b;
}
.cid-tXtKlhEeBK {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #7f1933;
}
.cid-tXtKlhEeBK .card-header {
  background: transparent;
}
.cid-tXtKlhEeBK .mbr-iconfont {
  font-size: 1.4rem!important;
}
.cid-tXtKlhEeBK .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-tXtKlhEeBK .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tXtKlhEeBK .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tXtKlhEeBK .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tXtKlhEeBK .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tXtKlhEeBK .card .panel-body {
  color: #767676;
}
.cid-tXtKlhEeBK h4 {
  flex-direction: row-reverse;
  display: flex;
  background: #f2f6ff;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  border: none;
  padding: 1.4rem 1.6rem;
}
.cid-tXtKlhEeBK H4 {
  color: #57468b;
}
.cid-tXtKlhEeBK H2 {
  color: #e1e8ff;
}
.cid-tXtKlhEeBK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtKlhEeBK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXtKli3LLT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f3722f;
}
.cid-tXtKli3LLT H1 {
  color: #ffffff;
}
.cid-tXtKli3LLT .mbr-text,
.cid-tXtKli3LLT .mbr-section-btn {
  color: #ffffff;
}
.cid-tXtKli3LLT H3 {
  color: #716c80;
}
.cid-tXtKlifem3 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #7f1933;
  position: relative;
  overflow: hidden;
}
.cid-tXtKlifem3 svg {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.2);
  animation: wave 5s ease-in-out infinite;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
@keyframes wave {
  from {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
  50% {
    transform: rotate(0.2deg) translate(-50%) scale(2.1, 1.3);
  }
  to {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
}
.cid-tXtKlifem3 .mbr-text,
.cid-tXtKlifem3 .mbr-section-btn {
  color: #ffffff;
}
.cid-tXtKlifem3 #e12_areaS3 {
  fill: #f3722f !important;
}
.cid-tXtKlifem3 #e19_areaS3 {
  fill: #cc2952 !important;
}
.cid-tXtKlifem3 H1 {
  color: #ffffff;
}
.cid-tXtKlifem3 img {
  width: 70%;
  border-radius: 10px;
  animation: line 4s ease-in-out infinite;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-tXtKlifem3 .box {
  width: 95%;
  height: 90%;
  opacity: 0.5;
  background-color: #c8f1ee;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-tXtKlifem3 .box {
    top: 2%;
    width: 97%;
    height: 96%;
  }
}
@media (max-width: 576px) {
  .cid-tXtKlifem3 img {
    width: 100%;
  }
}
.cid-tXtWiFl8b6 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tXtWiFl8b6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtWiFl8b6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXtWiFl8b6 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tXtWiFl8b6 .container-fluid {
    padding: 0 12px;
  }
}
.cid-tXtWiFl8b6 .container-fluid .row {
  padding: 0;
}
.cid-tXtWiFl8b6 .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tXtWiFl8b6 .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tXtWiFl8b6 .card {
    padding: 48px 20px;
  }
}
.cid-tXtWiFl8b6 .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-tXtWiFl8b6 .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXtWiFl8b6 .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-tXtWiFl8b6 .app-video-wrapper::before {
  color: #ff5640;
  text-shadow: none;
}
.cid-tXtWiFl8b6 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tXtKliwiVb {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f3722f;
}
.cid-tXtKliwiVb .mbr-text,
.cid-tXtKliwiVb .mbr-section-btn {
  color: #ffffff;
}
.cid-tXtKliwiVb .relative {
  z-index: 2;
  position: relative;
  padding: 0 2rem;
  padding-right: 10rem;
}
.cid-tXtKliwiVb .author-box {
  display: flex;
  flex-direction: row;
}
.cid-tXtKliwiVb .ico1 {
  font-size: 2rem;
}
.cid-tXtKliwiVb .ico2 {
  position: absolute;
  bottom: 0%;
  right: 1.5rem;
  font-size: 6rem!important;
  z-index: 1;
  opacity: 0.1;
}
.cid-tXtKliwiVb H3 {
  color: #57468b;
}
.cid-tXtKliwiVb H4 {
  color: #716c80;
}
.cid-tXtKliwiVb .text {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tXtKliwiVb .relative {
    padding: 0;
  }
}
.cid-tXtKliI13C {
  background-image: url("../../../assets/images/istockphoto-1027594480-612x612-1-612x408.jpg");
}
.cid-tXtKliI13C .container {
  height: 40rem;
}
.cid-tXyCChQZFY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tXyCChQZFY .container {
    padding: 0 25px;
  }
}
.cid-tXyCChQZFY .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tXyCChQZFY .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tXyCChQZFY .panel-group {
  border-bottom: 2px solid #f3722f;
}
.cid-tXyCChQZFY .panel-group .card {
  border-top: 2px solid #f3722f;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tXyCChQZFY .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tXyCChQZFY .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tXyCChQZFY .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f3722f;
  box-shadow: inset 52px 0 0 0 #7f1933;
}
.cid-tXyCChQZFY .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f3722f;
  box-shadow: inset 52px 0 0 0 #7f1933;
}
.cid-tXyCChQZFY .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tXyCChQZFY .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #7f1933;
  background-color: #f3722f;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tXyCChQZFY .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tXyCChQZFY .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tXyCChQZFY .mbr-section-title {
  color: #000000;
}
.cid-tXyCChQZFY .panel-title-edit {
  color: #000000;
}
.cid-tXyCChQZFY .panel-text {
  color: #000000;
}
.cid-tXtKliSdM0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #7f1933;
}
.cid-tXtKliSdM0 .mbr-section-head {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tXtKliSdM0 .mbr-section-head {
    margin-bottom: 16px;
  }
}
.cid-tXtKliSdM0 .mbr-section-head .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-tXtKliSdM0 .mbr-section-head .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
.cid-tXtKliSdM0 .mbr-section-head .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXtKliSdM0 .google-map {
  height: 30rem;
  position: relative;
}
.cid-tXtKliSdM0 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tXtKliSdM0 .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-tXtKliSdM0 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tXtKliSdM0 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tXtKliSdM0 .mbr-section-subtitle {
  color: #FF4712;
  text-align: center;
}
.cid-tXtKliSdM0 .mbr-section-title {
  color: #efefef;
  text-align: center;
}
.cid-tXtKlj5yPi {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #e1e8ff;
}
.cid-tXtKlj5yPi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtKlj5yPi .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tXtKlj5yPi .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXtKlj5yPi .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tXtKlj5yPi a {
  font-weight: 600;
}
.cid-tXtKlj5yPi a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tXtKlj5yPi .col-lg-3,
  .cid-tXtKlj5yPi .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tXtKlj5yPi .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tXtKlj5yPi .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tXtKlj5yPi h5 {
  margin: 0;
}
.cid-tXtKlj5yPi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXtKlj5yPi .iconfont-wrapper {
  position: relative;
}
.cid-tXtKlj5yPi .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tXtKlj5yPi .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tXtKlj5yPi .sociconfont-wrapper {
  display: flex;
}
.cid-tXtKlj5yPi .card-title,
.cid-tXtKlj5yPi .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tXtKlj5yPi .card-text {
  color: #000000;
}
.cid-tXtKlj5yPi .mbr-section-title {
  color: #000000;
}
.cid-tXtKlj5yPi .main-title,
.cid-tXtKlj5yPi .iconfont-wrapper {
  text-align: left;
}
.cid-tXtKljqkns {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #7f1933;
}
.cid-tXtXAnj4Hi .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-tXtXAnj4Hi .collapsed {
  flex-direction: row!important;
}
.cid-tXtXAnj4Hi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tXtXAnj4Hi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tXtXAnj4Hi .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tXtXAnj4Hi .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-tXtXAnj4Hi .nav-item:focus,
.cid-tXtXAnj4Hi .nav-link:focus {
  outline: none;
}
.cid-tXtXAnj4Hi .text-white:hover,
.cid-tXtXAnj4Hi .text-white:active,
.cid-tXtXAnj4Hi .text-white:focus {
  color: white!important;
}
.cid-tXtXAnj4Hi .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-tXtXAnj4Hi .dropdown-item:hover {
  color: black!important;
}
.cid-tXtXAnj4Hi .dropdown-menu {
  background-color: white!important;
}
.cid-tXtXAnj4Hi .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-tXtXAnj4Hi .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-tXtXAnj4Hi .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-tXtXAnj4Hi .nav-item .nav-link {
    position: relative;
  }
}
.cid-tXtXAnj4Hi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tXtXAnj4Hi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tXtXAnj4Hi .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tXtXAnj4Hi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tXtXAnj4Hi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tXtXAnj4Hi .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #7f1933;
}
.cid-tXtXAnj4Hi .navbar.opened {
  transition: all .3s;
  background: #7f1933 !important;
}
.cid-tXtXAnj4Hi .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tXtXAnj4Hi .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tXtXAnj4Hi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tXtXAnj4Hi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tXtXAnj4Hi .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tXtXAnj4Hi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXtXAnj4Hi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXtXAnj4Hi .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tXtXAnj4Hi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXtXAnj4Hi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tXtXAnj4Hi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tXtXAnj4Hi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tXtXAnj4Hi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXtXAnj4Hi .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tXtXAnj4Hi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXtXAnj4Hi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXtXAnj4Hi .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tXtXAnj4Hi .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tXtXAnj4Hi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXtXAnj4Hi .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tXtXAnj4Hi .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tXtXAnj4Hi .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tXtXAnj4Hi .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tXtXAnj4Hi .navbar.navbar-short {
  background: #7f1933 !important;
  min-height: 60px;
}
.cid-tXtXAnj4Hi .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tXtXAnj4Hi .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tXtXAnj4Hi .navbar-caption {
  font-weight: 600!important;
}
.cid-tXtXAnj4Hi .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXtXAnj4Hi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tXtXAnj4Hi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXtXAnj4Hi .dropdown-item.active,
.cid-tXtXAnj4Hi .dropdown-item:active {
  background-color: transparent;
}
.cid-tXtXAnj4Hi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXtXAnj4Hi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXtXAnj4Hi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXtXAnj4Hi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #7f1933;
}
.cid-tXtXAnj4Hi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tXtXAnj4Hi ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tXtXAnj4Hi .navbar-buttons {
  text-align: center;
}
.cid-tXtXAnj4Hi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tXtXAnj4Hi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b1a374;
}
.cid-tXtXAnj4Hi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tXtXAnj4Hi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tXtXAnj4Hi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tXtXAnj4Hi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tXtXAnj4Hi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tXtXAnj4Hi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tXtXAnj4Hi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tXtXAnj4Hi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tXtXAnj4Hi .nav-link {
  font-weight: 600!important;
}
.cid-tXtXAnj4Hi a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tXtXAnj4Hi .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tXtXAnj4Hi .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tXtXAnj4Hi .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tXtXAnj4Hi .navbar {
    height: 77px;
  }
  .cid-tXtXAnj4Hi .navbar.opened {
    height: auto;
  }
  .cid-tXtXAnj4Hi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXtXAnJXWy {
  background-color: #f1f1f2;
}
.cid-tXtXAnJXWy .row {
  padding: 0 110px;
}
@media (max-width: 992px) {
  .cid-tXtXAnJXWy .row {
    padding: 0 12px;
  }
}
.cid-tXtXAnJXWy .row::after {
  content: '';
  display: block;
  background: #7f1933;
  position: absolute;
  top: 0;
  right: 0;
  width: 27%;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tXtXAnJXWy .row::after {
    display: none;
  }
}
.cid-tXtXAnJXWy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtXAnJXWy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXtXAnJXWy .image-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-tXtXAnJXWy .image-wrapper {
    padding: 0 0 60px;
  }
}
.cid-tXtXAnJXWy .image-wrapper::before {
  content: '';
  display: block;
  background-color: #f3722f;
  position: absolute;
  top: 0;
  right: -7rem;
  width: 230px;
  height: 120px;
  border-radius: 20rem 20rem 0 0;
}
@media (max-width: 992px) {
  .cid-tXtXAnJXWy .image-wrapper::before {
    display: none;
  }
}
.cid-tXtXAnJXWy .image-wrapper::after {
  content: '';
  display: block;
  background-color: #1e4381;
  position: absolute;
  top: 120px;
  right: -7rem;
  width: 230px;
  height: 120px;
  border-radius: 20rem 20rem 0 0;
}
@media (max-width: 992px) {
  .cid-tXtXAnJXWy .image-wrapper::after {
    display: none;
  }
}
.cid-tXtXAnJXWy .image-wrapper img {
  width: 100%;
  height: 626px;
  object-fit: cover;
}
.cid-tXtXAnJXWy .title {
  display: flex;
  align-items: center;
}
.cid-tXtXAnJXWy .title-wrapper {
  z-index: 1;
}
.cid-tXtXAnJXWy .title-wrapper .mbr-section-subtitle {
  margin-bottom: 15px;
}
.cid-tXtXAnJXWy .title-wrapper .mbr-section-title {
  margin-bottom: 8px;
}
.cid-tXtXAnJXWy .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tXtXAnJXWy .title-wrapper .mbr-section-btn .btn {
  max-height: 34px;
  border: 1px solid #bfceff;
  box-shadow: none;
}
.cid-tXtXAnJXWy .title-wrapper .mbr-section-btn .btn:hover {
  background: #bfceff !important;
  box-shadow: none !important;
}
.cid-tXtXAnJXWy .mbr-section-title {
  color: #1e4381;
}
.cid-tXtXAnJXWy .mbr-section-subtitle {
  color: #f3722f;
}
.cid-tXtXAnJXWy .mbr-text {
  color: #1e4381;
}
.cid-tXtXAnX0CX {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tXtXAnX0CX H1 {
  color: #ff3366;
}
.cid-tXtXAnX0CX .align-left {
  margin: auto;
}
.cid-tXtXAnX0CX .row {
  justify-content: space-between;
}
.cid-tXtXAnX0CX .mbr-text,
.cid-tXtXAnX0CX .mbr-section-btn {
  color: #716c80;
}
.cid-tXtXAnX0CX .block-border {
  border-left: 2px solid #efefef;
  padding-left: 4rem;
}
.cid-tXtXAnX0CX .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tXtXAnX0CX .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-tXtXAnX0CX .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-tXtXAnX0CX .link:hover {
  color: #57468b !important;
}
.cid-tXtXAnX0CX .link:hover .link-ico {
  color: #57468b !important;
  padding-left: 10px;
}
.cid-tXtXAnX0CX DIV {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-tXtXAnX0CX .block-border {
    border: none;
    padding-left: 1rem;
  }
  .cid-tXtXAnX0CX h1 {
    padding-bottom: 1rem;
  }
}
.cid-tXtXAnX0CX .mbr-text,
.cid-tXtXAnX0CX .media-content {
  color: #ff3366;
}
.cid-tXtXAocWV8 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f3722f;
}
.cid-tXtXAocWV8 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-tXtXAocWV8 H1 {
  color: #57468b;
}
.cid-tXtXAocWV8 .mbr-text,
.cid-tXtXAocWV8 .mbr-section-btn {
  color: #716c80;
}
.cid-tXtXAocWV8 H3 {
  color: #716c80;
}
.cid-tXtXAocWV8 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tXtXAocWV8 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-tXtXAocWV8 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-tXtXAocWV8 .link:hover {
  color: #57468b !important;
}
.cid-tXtXAocWV8 .link:hover .link-ico {
  color: #57468b !important;
  padding-left: 10px;
}
.cid-tXtXAocWV8 DIV {
  color: #57468b;
}
.cid-tXtXAocWV8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtXAocWV8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXtXAocWV8 .mbr-text,
.cid-tXtXAocWV8 .media-content {
  color: #232323;
}
.cid-tXtXAonghz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #7f1933;
}
.cid-tXtXAonghz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtXAonghz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tXtXAonghz .container {
    padding: 0 30px;
  }
}
.cid-tXtXAonghz .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-tXtXAonghz .row {
    margin: 0 -34px;
  }
}
.cid-tXtXAonghz .title-wrapper {
  margin-bottom: 30px;
}
.cid-tXtXAonghz .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tXtXAonghz .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXtXAonghz .card {
  padding: 0 34px;
}
@media (max-width: 992px) {
  .cid-tXtXAonghz .card {
    margin-bottom: 40px;
    padding: 0 12px;
  }
}
.cid-tXtXAonghz .card .card-wrapper .mbr-number {
  margin-bottom: 30px;
}
.cid-tXtXAonghz .card .card-wrapper .mbr-card-title {
  margin-bottom: 30px;
}
.cid-tXtXAonghz .card .card-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tXtXAonghz .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-tXtXAonghz .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-tXtXAonghz .mbr-number {
  color: #212529;
  text-align: center;
}
.cid-tXtXAonghz .mbr-card-title {
  color: #ffffff;
  text-align: center;
}
.cid-tXtXAonghz .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-tXtXAoKib5 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f3722f;
}
.cid-tXtXAoKib5 H1 {
  color: #ffffff;
}
.cid-tXtXAoKib5 .align-left {
  margin: auto;
}
.cid-tXtXAoKib5 .row {
  justify-content: space-between;
}
.cid-tXtXAoKib5 .mbr-text,
.cid-tXtXAoKib5 .mbr-section-btn {
  color: #716c80;
}
.cid-tXtXAoKib5 .block-border {
  border-left: 2px solid #7f1933;
  padding-left: 4rem;
}
.cid-tXtXAoKib5 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tXtXAoKib5 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-tXtXAoKib5 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-tXtXAoKib5 .link:hover {
  color: #57468b !important;
}
.cid-tXtXAoKib5 .link:hover .link-ico {
  color: #57468b !important;
  padding-left: 10px;
}
.cid-tXtXAoKib5 DIV {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-tXtXAoKib5 .block-border {
    border: none;
    padding-left: 1rem;
  }
  .cid-tXtXAoKib5 h1 {
    padding-bottom: 1rem;
  }
}
.cid-tXtXAoKib5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtXAoKib5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXtXAoKib5 .mbr-text,
.cid-tXtXAoKib5 .media-content {
  color: #ffffff;
}
.cid-tXtXAoX2Sn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cc2952;
}
.cid-tXtXAoX2Sn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtXAoX2Sn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXtXAoX2Sn .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tXtXAoX2Sn .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tXtXAoX2Sn .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tXtXAoX2Sn .mbr-section-title {
  color: #131313;
}
.cid-tXtXAoX2Sn .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tXtXAoX2Sn .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tXtXAoX2Sn .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tXtXAoX2Sn .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #7787a5;
  box-shadow: 4px 4px 0 #7787a5;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tXtXAoX2Sn .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tXtXAoX2Sn .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tXtXAoX2Sn .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-tXtXAoX2Sn .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tXtXAoX2Sn .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-tXtXAoX2Sn .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-tXtXAoX2Sn .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tXtXAoX2Sn .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-tXtXAoX2Sn .content-wrap {
    margin-top: 0;
  }
}
.cid-tXtXAoX2Sn .card-title {
  color: #131313;
}
.cid-tXtXAoX2Sn .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXtXAoX2Sn .card-text {
    margin-top: 15px;
  }
}
.cid-tXtXAoX2Sn .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tXtXAoX2Sn .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tXtXAoX2Sn .card-link {
    margin-top: 15px;
  }
}
.cid-tXtXAoX2Sn .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tXtXAoX2Sn .card-title,
.cid-tXtXAoX2Sn .iconfont-wrapper {
  text-align: center;
}
.cid-tXtXApkalS {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #f3722f;
}
.cid-tXtXApkalS .nav-tabs .nav-item.open .nav-link:focus,
.cid-tXtXApkalS .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tXtXApkalS .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: none;
}
.cid-tXtXApkalS .nav-tabs .nav-item {
  padding: .5rem;
}
.cid-tXtXApkalS .nav-tabs .nav-link {
  color: #ffffff;
  font-style: normal;
  font-weight: 500;
  background-color: #5580ff;
  border-radius: .25rem;
  transition: all .5s;
}
.cid-tXtXApkalS .nav-tabs .nav-link:hover {
  cursor: pointer;
  background-color: #57468b;
}
.cid-tXtXApkalS .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background-color: #57468b;
  border-color: #57468b;
}
.cid-tXtXApkalS .nav-tabs .nav-link.active:hover {
  background-color: #57468b;
}
.cid-tXtXApkalS P {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tXtXApkalS .nav-tabs {
    flex-direction: column;
    justify-content: center;
  }
  .cid-tXtXApkalS .mbr-text,
  .cid-tXtXApkalS .nav-link {
    text-align: center;
  }
}
.cid-tXtXApAfo2 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #7f1933;
}
.cid-tXtXApAfo2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtXApAfo2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tXtXApAfo2 .container {
    padding: 0 30px;
  }
}
.cid-tXtXApAfo2 .row {
  justify-content: center;
}
.cid-tXtXApAfo2 .title-wrapper {
  margin-bottom: 40px;
}
.cid-tXtXApAfo2 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tXtXApAfo2 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXtXApAfo2 .card {
  margin-bottom: 40px;
}
.cid-tXtXApAfo2 .card .card-wrapper .mbr-number {
  margin: 20px 0;
}
.cid-tXtXApAfo2 .card .card-wrapper .mbr-card-title {
  margin-bottom: 25px;
}
.cid-tXtXApAfo2 .card .card-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tXtXApAfo2 .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-tXtXApAfo2 .mbr-section-title {
  color: #212529;
}
.cid-tXtXApAfo2 .mbr-number {
  color: #212529;
  text-align: center;
}
.cid-tXtXApAfo2 .mbr-card-title {
  color: #ffffff;
  text-align: center;
}
.cid-tXtXApAfo2 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tXtXApAfo2 .mbr-section-title,
.cid-tXtXApAfo2 .mbr-section-btn {
  text-align: center;
}
.cid-tXtXApVSEC {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-tXtXApVSEC img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-tXtXApVSEC H1 {
  color: #57468b;
}
.cid-tXtXApVSEC .mbr-text,
.cid-tXtXApVSEC .mbr-section-btn {
  color: #716c80;
}
.cid-tXtXApVSEC H3 {
  color: #716c80;
}
.cid-tXtXApVSEC .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tXtXApVSEC .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-tXtXApVSEC .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-tXtXApVSEC .link:hover {
  color: #57468b !important;
}
.cid-tXtXApVSEC .link:hover .link-ico {
  color: #57468b !important;
  padding-left: 10px;
}
.cid-tXtXApVSEC DIV {
  color: #57468b;
}
.cid-tXtXApVSEC .mbr-text,
.cid-tXtXApVSEC .media-content {
  color: #232323;
}
.cid-tXtXAq9liR {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #7f1933;
}
.cid-tXtXAq9liR .card-header {
  background: transparent;
}
.cid-tXtXAq9liR .mbr-iconfont {
  font-size: 1.4rem!important;
}
.cid-tXtXAq9liR .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-tXtXAq9liR .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tXtXAq9liR .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tXtXAq9liR .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tXtXAq9liR .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tXtXAq9liR .card .panel-body {
  color: #767676;
}
.cid-tXtXAq9liR h4 {
  flex-direction: row-reverse;
  display: flex;
  background: #f2f6ff;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  border: none;
  padding: 1.4rem 1.6rem;
}
.cid-tXtXAq9liR H4 {
  color: #57468b;
}
.cid-tXtXAq9liR H2 {
  color: #e1e8ff;
}
.cid-tXtXAq9liR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtXAq9liR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXtXAqwqZ6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f3722f;
}
.cid-tXtXAqwqZ6 H1 {
  color: #ffffff;
}
.cid-tXtXAqwqZ6 .mbr-text,
.cid-tXtXAqwqZ6 .mbr-section-btn {
  color: #ffffff;
}
.cid-tXtXAqwqZ6 H3 {
  color: #716c80;
}
.cid-tXtXAqHXv2 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #7f1933;
  position: relative;
  overflow: hidden;
}
.cid-tXtXAqHXv2 svg {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.2);
  animation: wave 5s ease-in-out infinite;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
@keyframes wave {
  from {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
  50% {
    transform: rotate(0.2deg) translate(-50%) scale(2.1, 1.3);
  }
  to {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
}
.cid-tXtXAqHXv2 .mbr-text,
.cid-tXtXAqHXv2 .mbr-section-btn {
  color: #ffffff;
}
.cid-tXtXAqHXv2 #e12_areaS3 {
  fill: #f3722f !important;
}
.cid-tXtXAqHXv2 #e19_areaS3 {
  fill: #cc2952 !important;
}
.cid-tXtXAqHXv2 H1 {
  color: #ffffff;
}
.cid-tXtXAqHXv2 img {
  width: 70%;
  border-radius: 10px;
  animation: line 4s ease-in-out infinite;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-tXtXAqHXv2 .box {
  width: 95%;
  height: 90%;
  opacity: 0.5;
  background-color: #c8f1ee;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 0.5rem;
}
@media (max-width: 1200px) {
  .cid-tXtXAqHXv2 .box {
    top: 2%;
    width: 97%;
    height: 96%;
  }
}
@media (max-width: 576px) {
  .cid-tXtXAqHXv2 img {
    width: 100%;
  }
}
.cid-tXtXAqW2TJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tXtXAqW2TJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtXAqW2TJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXtXAqW2TJ .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tXtXAqW2TJ .container-fluid {
    padding: 0 12px;
  }
}
.cid-tXtXAqW2TJ .container-fluid .row {
  padding: 0;
}
.cid-tXtXAqW2TJ .row {
  border: 3px solid #d2d2d2;
  margin-top: -3px;
  border-radius: 5px;
}
.cid-tXtXAqW2TJ .card {
  padding: 64px 28px;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-tXtXAqW2TJ .card {
    padding: 48px 20px;
  }
}
.cid-tXtXAqW2TJ .card .title-wrapper {
  width: 80%;
  margin: 0 auto 48px;
}
.cid-tXtXAqW2TJ .card .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXtXAqW2TJ .card .video-block {
  width: 80%;
  margin: 0 auto;
  border: 5px solid #d2d2d2;
}
.cid-tXtXAqW2TJ .app-video-wrapper::before {
  color: #ff5640;
  text-shadow: none;
}
.cid-tXtXAqW2TJ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tXtXAr8MN8 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f3722f;
}
.cid-tXtXAr8MN8 .mbr-text,
.cid-tXtXAr8MN8 .mbr-section-btn {
  color: #ffffff;
}
.cid-tXtXAr8MN8 .relative {
  z-index: 2;
  position: relative;
  padding: 0 2rem;
  padding-right: 10rem;
}
.cid-tXtXAr8MN8 .author-box {
  display: flex;
  flex-direction: row;
}
.cid-tXtXAr8MN8 .ico1 {
  font-size: 2rem;
}
.cid-tXtXAr8MN8 .ico2 {
  position: absolute;
  bottom: 0%;
  right: 1.5rem;
  font-size: 6rem!important;
  z-index: 1;
  opacity: 0.1;
}
.cid-tXtXAr8MN8 H3 {
  color: #57468b;
}
.cid-tXtXAr8MN8 H4 {
  color: #716c80;
}
.cid-tXtXAr8MN8 .text {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-tXtXAr8MN8 .relative {
    padding: 0;
  }
}
.cid-tXtXArloY2 {
  background-image: url("../../../assets/images/big-black-dumpster-driveway.webp");
}
.cid-tXtXArloY2 .container {
  height: 40rem;
}
.cid-tXyD6rWM4v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tXyD6rWM4v .container {
    padding: 0 25px;
  }
}
.cid-tXyD6rWM4v .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tXyD6rWM4v .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tXyD6rWM4v .panel-group {
  border-bottom: 2px solid #f3722f;
}
.cid-tXyD6rWM4v .panel-group .card {
  border-top: 2px solid #f3722f;
  border-radius: 0 !important;
  padding: 0;
}
.cid-tXyD6rWM4v .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-tXyD6rWM4v .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tXyD6rWM4v .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f3722f;
  box-shadow: inset 52px 0 0 0 #7f1933;
}
.cid-tXyD6rWM4v .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f3722f;
  box-shadow: inset 52px 0 0 0 #7f1933;
}
.cid-tXyD6rWM4v .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tXyD6rWM4v .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #7f1933;
  background-color: #f3722f;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-tXyD6rWM4v .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-tXyD6rWM4v .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-tXyD6rWM4v .mbr-section-title {
  color: #000000;
}
.cid-tXyD6rWM4v .panel-title-edit {
  color: #000000;
}
.cid-tXyD6rWM4v .panel-text {
  color: #000000;
}
.cid-tXtXArwYiA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #7f1933;
}
.cid-tXtXArwYiA .mbr-section-head {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tXtXArwYiA .mbr-section-head {
    margin-bottom: 16px;
  }
}
.cid-tXtXArwYiA .mbr-section-head .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-tXtXArwYiA .mbr-section-head .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
.cid-tXtXArwYiA .mbr-section-head .mbr-section-title {
  margin-bottom: 0;
}
.cid-tXtXArwYiA .google-map {
  height: 30rem;
  position: relative;
}
.cid-tXtXArwYiA .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tXtXArwYiA .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-tXtXArwYiA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tXtXArwYiA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tXtXArwYiA .mbr-section-subtitle {
  color: #FF4712;
  text-align: center;
}
.cid-tXtXArwYiA .mbr-section-title {
  color: #efefef;
  text-align: center;
}
.cid-tXtXArKuid {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #e1e8ff;
}
.cid-tXtXArKuid .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXtXArKuid .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tXtXArKuid .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXtXArKuid .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-tXtXArKuid a {
  font-weight: 600;
}
.cid-tXtXArKuid a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-tXtXArKuid .col-lg-3,
  .cid-tXtXArKuid .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-tXtXArKuid .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-tXtXArKuid .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tXtXArKuid h5 {
  margin: 0;
}
.cid-tXtXArKuid .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXtXArKuid .iconfont-wrapper {
  position: relative;
}
.cid-tXtXArKuid .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-tXtXArKuid .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-tXtXArKuid .sociconfont-wrapper {
  display: flex;
}
.cid-tXtXArKuid .card-title,
.cid-tXtXArKuid .iconfont-wrapper {
  color: #1d1d1f;
}
.cid-tXtXArKuid .card-text {
  color: #000000;
}
.cid-tXtXArKuid .mbr-section-title {
  color: #000000;
}
.cid-tXtXArKuid .main-title,
.cid-tXtXArKuid .iconfont-wrapper {
  text-align: left;
}
.cid-tXtXAs96lv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #7f1933;
}
