body {
  font-family: Inter;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #f36872 !important;
}
.bg-success {
  background-color: #522c67 !important;
}
.bg-info {
  background-color: #ffbf4f !important;
}
.bg-warning {
  background-color: #5ec049 !important;
}
.bg-danger {
  background-color: #338ba0 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f36872 !important;
  border-color: #f36872 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #ed1827 !important;
  border-color: #ed1827 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ed1827 !important;
  border-color: #ed1827 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #d83c47 !important;
  border-color: #d83c47 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #9e2028 !important;
  border-color: #9e2028 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #9e2028 !important;
  border-color: #9e2028 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffbf4f !important;
  border-color: #ffbf4f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #f79d00 !important;
  border-color: #f79d00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #f79d00 !important;
  border-color: #f79d00 !important;
}
.btn-success,
.btn-success:active {
  background-color: #522c67 !important;
  border-color: #522c67 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #22122a !important;
  border-color: #22122a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #22122a !important;
  border-color: #22122a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #5ec049 !important;
  border-color: #5ec049 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #3d842e !important;
  border-color: #3d842e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #3d842e !important;
  border-color: #3d842e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #338ba0 !important;
  border-color: #338ba0 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #1e525e !important;
  border-color: #1e525e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e525e !important;
  border-color: #1e525e !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f36872;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ed1827 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f36872 !important;
  border-color: #f36872 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d83c47;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #9e2028 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #d83c47 !important;
  border-color: #d83c47 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffbf4f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #f79d00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ffbf4f !important;
  border-color: #ffbf4f !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #522c67;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #22122a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #522c67 !important;
  border-color: #522c67 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #5ec049;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #3d842e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #5ec049 !important;
  border-color: #5ec049 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #338ba0;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #1e525e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #338ba0 !important;
  border-color: #338ba0 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #f36872 !important;
}
.text-secondary {
  color: #d83c47 !important;
}
.text-success {
  color: #522c67 !important;
}
.text-info {
  color: #ffbf4f !important;
}
.text-warning {
  color: #5ec049 !important;
}
.text-danger {
  color: #338ba0 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #e31221 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #911d25 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #190d20 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #e89400 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #38792a !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #1a4853 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  /*  background-position: 0px 1.2em; */
}
.nav-tabs .nav-link.active {
  color: #f36872;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffbf4f;
}
.alert-warning {
  background-color: #5ec049;
}
.alert-danger {
  background-color: #338ba0;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f36872;
  border-color: #f36872;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #f36872;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #975ab9;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #b2e1a8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #7dc4d6;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #f36872 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #f36872;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f36872;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f36872;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #f36872;
  border-bottom-color: #f36872;
}
.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: #000000 !important;
  background-color: #f36872 !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: #d83c47 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23f36872' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uvXqFhX8xG {
  z-index: 1000;
  width: 100%;
}
.cid-uvXqFhX8xG nav.navbar {
  position: fixed;
}
.cid-uvXqFhX8xG .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvXqFhX8xG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvXqFhX8xG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvXqFhX8xG .dropdown-item:hover,
.cid-uvXqFhX8xG .dropdown-item:focus {
  background: #f36872 !important;
  color: white !important;
}
.cid-uvXqFhX8xG .dropdown-item:hover span {
  color: white;
}
.cid-uvXqFhX8xG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvXqFhX8xG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvXqFhX8xG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvXqFhX8xG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvXqFhX8xG .nav-link {
  position: relative;
}
.cid-uvXqFhX8xG .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uvXqFhX8xG .container {
    flex-wrap: nowrap;
  }
}
.cid-uvXqFhX8xG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvXqFhX8xG .dropdown-menu,
.cid-uvXqFhX8xG .navbar.opened {
  background: #900812 !important;
}
.cid-uvXqFhX8xG .nav-item:focus,
.cid-uvXqFhX8xG .nav-link:focus {
  outline: none;
}
.cid-uvXqFhX8xG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvXqFhX8xG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvXqFhX8xG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvXqFhX8xG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvXqFhX8xG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvXqFhX8xG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvXqFhX8xG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(144, 8, 18, 0.8);
}
.cid-uvXqFhX8xG .navbar.opened {
  transition: all 0.3s;
}
.cid-uvXqFhX8xG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvXqFhX8xG .navbar .navbar-logo img {
  width: auto;
}
.cid-uvXqFhX8xG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvXqFhX8xG .navbar.collapsed {
  justify-content: center;
}
.cid-uvXqFhX8xG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvXqFhX8xG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uvXqFhX8xG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvXqFhX8xG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvXqFhX8xG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uvXqFhX8xG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvXqFhX8xG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvXqFhX8xG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvXqFhX8xG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvXqFhX8xG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvXqFhX8xG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvXqFhX8xG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvXqFhX8xG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uvXqFhX8xG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvXqFhX8xG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvXqFhX8xG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvXqFhX8xG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvXqFhX8xG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvXqFhX8xG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvXqFhX8xG .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvXqFhX8xG .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvXqFhX8xG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvXqFhX8xG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvXqFhX8xG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvXqFhX8xG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvXqFhX8xG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvXqFhX8xG .dropdown-item.active,
.cid-uvXqFhX8xG .dropdown-item:active {
  background-color: transparent;
}
.cid-uvXqFhX8xG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvXqFhX8xG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvXqFhX8xG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvXqFhX8xG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #900812;
}
.cid-uvXqFhX8xG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvXqFhX8xG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvXqFhX8xG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvXqFhX8xG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvXqFhX8xG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvXqFhX8xG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e8e8e8;
}
.cid-uvXqFhX8xG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvXqFhX8xG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvXqFhX8xG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvXqFhX8xG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvXqFhX8xG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvXqFhX8xG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvXqFhX8xG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvXqFhX8xG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvXqFhX8xG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvXqFhX8xG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvXqFhX8xG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvXqFhX8xG .navbar {
    height: 70px;
  }
  .cid-uvXqFhX8xG .navbar.opened {
    height: auto;
  }
  .cid-uvXqFhX8xG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tG2zT5KphV {
  padding-top: 225px;
  padding-bottom: 300px;
  background-image: url("../../../assets/images/mbr-2.webp");
}
.cid-tG2zT5KphV .mbr-iconfont {
  font-size: 50px;
  color: #ffffff;
}
.cid-tG2zT5KphV .mbr-section-title {
  color: #ffffff;
  width: 100%;
  margin-bottom: 15px;
  margin-top: 20px;
}
.cid-tG2zT5KphV .mbr-section-subtitle {
  color: #ffffff;
  width: 100%;
  position: relative;
  padding-top: 25px;
}
.cid-tG2zT5KphV .mbr-section-subtitle::before {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 2px;
  background-color: #fff;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.cid-tG2zT5KphV .mbr-text {
  color: #ffffff;
  width: 100;
}
.cid-tG2zT5KphV .content-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #d83c47;
  margin-left: 0.6rem;
}
.cid-tG2zT5KphV .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #ffffff;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tG2zT5KphV .mbr-section-btn .btn {
  border-radius: 3px;
  padding: 12px 40px !important;
  margin-right: 20px;
}
@media (max-width: 991px) {
  .cid-tG2zT5KphV .separator,
  .cid-tG2zT5KphV .sep-holder,
  .cid-tG2zT5KphV .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tG2zT5KphV .buttons-wrap {
    flex-direction: column;
  }
}
.cid-tG2zT5KphV .items {
  display: flex;
  flex-direction: row;
  position: relative;
  padding-top: 25px;
}
.cid-tG2zT5KphV .items::before {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 2px;
  background-color: #ffffff;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.cid-tG2zT5KphV .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
}
.cid-tG2zT5KphV .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  padding-left: 1rem;
  font-size: 1rem;
  margin: auto;
  color: #ffffff;
}
.cid-tG2zT5KphV .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-tG2zT5KphV .items .list-item:last-child .listico {
  display: none;
}
.cid-tG2zT5KphV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG2zT5KphV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG2zcCs9KM {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ede7e2;
}
.cid-tG2zcCs9KM .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-tG2zcCs9KM .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tG2zcCs9KM .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-tG2zcCs9KM .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tG2zcCs9KM .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-tG2zcCs9KM .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uvZLfVfCHF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #900812;
  overflow: hidden;
}
.cid-uvZLfVfCHF .media-container-row .mbr-text {
  color: #e8e8e8;
}
.cid-uvXqFhX8xG {
  z-index: 1000;
  width: 100%;
}
.cid-uvXqFhX8xG nav.navbar {
  position: fixed;
}
.cid-uvXqFhX8xG .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvXqFhX8xG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvXqFhX8xG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvXqFhX8xG .dropdown-item:hover,
.cid-uvXqFhX8xG .dropdown-item:focus {
  background: #f36872 !important;
  color: white !important;
}
.cid-uvXqFhX8xG .dropdown-item:hover span {
  color: white;
}
.cid-uvXqFhX8xG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvXqFhX8xG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvXqFhX8xG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvXqFhX8xG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvXqFhX8xG .nav-link {
  position: relative;
}
.cid-uvXqFhX8xG .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uvXqFhX8xG .container {
    flex-wrap: nowrap;
  }
}
.cid-uvXqFhX8xG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvXqFhX8xG .dropdown-menu,
.cid-uvXqFhX8xG .navbar.opened {
  background: #900812 !important;
}
.cid-uvXqFhX8xG .nav-item:focus,
.cid-uvXqFhX8xG .nav-link:focus {
  outline: none;
}
.cid-uvXqFhX8xG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvXqFhX8xG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvXqFhX8xG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvXqFhX8xG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvXqFhX8xG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvXqFhX8xG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvXqFhX8xG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(144, 8, 18, 0.8);
}
.cid-uvXqFhX8xG .navbar.opened {
  transition: all 0.3s;
}
.cid-uvXqFhX8xG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvXqFhX8xG .navbar .navbar-logo img {
  width: auto;
}
.cid-uvXqFhX8xG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvXqFhX8xG .navbar.collapsed {
  justify-content: center;
}
.cid-uvXqFhX8xG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvXqFhX8xG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uvXqFhX8xG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvXqFhX8xG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvXqFhX8xG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uvXqFhX8xG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvXqFhX8xG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvXqFhX8xG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvXqFhX8xG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvXqFhX8xG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvXqFhX8xG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvXqFhX8xG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvXqFhX8xG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uvXqFhX8xG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvXqFhX8xG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvXqFhX8xG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvXqFhX8xG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvXqFhX8xG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvXqFhX8xG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvXqFhX8xG .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvXqFhX8xG .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvXqFhX8xG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvXqFhX8xG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvXqFhX8xG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvXqFhX8xG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvXqFhX8xG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvXqFhX8xG .dropdown-item.active,
.cid-uvXqFhX8xG .dropdown-item:active {
  background-color: transparent;
}
.cid-uvXqFhX8xG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvXqFhX8xG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvXqFhX8xG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvXqFhX8xG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #900812;
}
.cid-uvXqFhX8xG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvXqFhX8xG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvXqFhX8xG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvXqFhX8xG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvXqFhX8xG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvXqFhX8xG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e8e8e8;
}
.cid-uvXqFhX8xG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvXqFhX8xG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvXqFhX8xG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvXqFhX8xG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvXqFhX8xG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvXqFhX8xG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvXqFhX8xG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvXqFhX8xG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvXqFhX8xG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvXqFhX8xG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvXqFhX8xG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvXqFhX8xG .navbar {
    height: 70px;
  }
  .cid-uvXqFhX8xG .navbar.opened {
    height: auto;
  }
  .cid-uvXqFhX8xG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tG4QT3YddC {
  padding-top: 225px;
  padding-bottom: 300px;
  background-image: url("../../../assets/images/mbr-7.webp");
}
.cid-tG4QT3YddC .mbr-iconfont {
  font-size: 50px;
  color: #ffffff;
}
.cid-tG4QT3YddC .mbr-section-title {
  color: #ffffff;
  width: 100%;
  margin-bottom: 15px;
  margin-top: 20px;
}
.cid-tG4QT3YddC .mbr-section-subtitle {
  color: #ffffff;
  width: 100%;
  position: relative;
  padding-top: 25px;
}
.cid-tG4QT3YddC .mbr-section-subtitle::before {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 2px;
  background-color: #fff;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.cid-tG4QT3YddC .mbr-text {
  color: #ffffff;
  width: 100;
}
.cid-tG4QT3YddC .content-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #d83c47;
  margin-left: 0.6rem;
}
.cid-tG4QT3YddC .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #ffffff;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tG4QT3YddC .mbr-section-btn .btn {
  border-radius: 3px;
  padding: 12px 40px !important;
  margin-right: 20px;
}
@media (max-width: 991px) {
  .cid-tG4QT3YddC .separator,
  .cid-tG4QT3YddC .sep-holder,
  .cid-tG4QT3YddC .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tG4QT3YddC .buttons-wrap {
    flex-direction: column;
  }
}
.cid-tG4QT3YddC .items {
  display: flex;
  flex-direction: row;
  position: relative;
  padding-top: 25px;
}
.cid-tG4QT3YddC .items::before {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 2px;
  background-color: #ffffff;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.cid-tG4QT3YddC .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
}
.cid-tG4QT3YddC .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  padding-left: 1rem;
  font-size: 1rem;
  margin: auto;
  color: #ffffff;
}
.cid-tG4QT3YddC .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-tG4QT3YddC .items .list-item:last-child .listico {
  display: none;
}
.cid-tG4QT3YddC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG4QT3YddC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG4QT4U8Hn {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ede7e2;
}
.cid-tG4QT4U8Hn .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-tG4QT4U8Hn .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tG4QT4U8Hn .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-tG4QT4U8Hn .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tG4QT4U8Hn .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-tG4QT4U8Hn .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uvZLfVfCHF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #900812;
  overflow: hidden;
}
.cid-uvZLfVfCHF .media-container-row .mbr-text {
  color: #e8e8e8;
}
.cid-uvXqFhX8xG {
  z-index: 1000;
  width: 100%;
}
.cid-uvXqFhX8xG nav.navbar {
  position: fixed;
}
.cid-uvXqFhX8xG .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvXqFhX8xG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvXqFhX8xG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvXqFhX8xG .dropdown-item:hover,
.cid-uvXqFhX8xG .dropdown-item:focus {
  background: #f36872 !important;
  color: white !important;
}
.cid-uvXqFhX8xG .dropdown-item:hover span {
  color: white;
}
.cid-uvXqFhX8xG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvXqFhX8xG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvXqFhX8xG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvXqFhX8xG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvXqFhX8xG .nav-link {
  position: relative;
}
.cid-uvXqFhX8xG .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uvXqFhX8xG .container {
    flex-wrap: nowrap;
  }
}
.cid-uvXqFhX8xG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvXqFhX8xG .dropdown-menu,
.cid-uvXqFhX8xG .navbar.opened {
  background: #900812 !important;
}
.cid-uvXqFhX8xG .nav-item:focus,
.cid-uvXqFhX8xG .nav-link:focus {
  outline: none;
}
.cid-uvXqFhX8xG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvXqFhX8xG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvXqFhX8xG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvXqFhX8xG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvXqFhX8xG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvXqFhX8xG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvXqFhX8xG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(144, 8, 18, 0.8);
}
.cid-uvXqFhX8xG .navbar.opened {
  transition: all 0.3s;
}
.cid-uvXqFhX8xG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvXqFhX8xG .navbar .navbar-logo img {
  width: auto;
}
.cid-uvXqFhX8xG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvXqFhX8xG .navbar.collapsed {
  justify-content: center;
}
.cid-uvXqFhX8xG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvXqFhX8xG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uvXqFhX8xG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvXqFhX8xG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvXqFhX8xG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uvXqFhX8xG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvXqFhX8xG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvXqFhX8xG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvXqFhX8xG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvXqFhX8xG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvXqFhX8xG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvXqFhX8xG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvXqFhX8xG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uvXqFhX8xG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvXqFhX8xG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvXqFhX8xG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvXqFhX8xG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvXqFhX8xG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvXqFhX8xG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvXqFhX8xG .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvXqFhX8xG .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvXqFhX8xG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvXqFhX8xG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvXqFhX8xG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvXqFhX8xG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvXqFhX8xG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvXqFhX8xG .dropdown-item.active,
.cid-uvXqFhX8xG .dropdown-item:active {
  background-color: transparent;
}
.cid-uvXqFhX8xG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvXqFhX8xG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvXqFhX8xG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvXqFhX8xG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #900812;
}
.cid-uvXqFhX8xG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvXqFhX8xG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvXqFhX8xG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvXqFhX8xG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvXqFhX8xG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvXqFhX8xG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e8e8e8;
}
.cid-uvXqFhX8xG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvXqFhX8xG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvXqFhX8xG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvXqFhX8xG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvXqFhX8xG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvXqFhX8xG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvXqFhX8xG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvXqFhX8xG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvXqFhX8xG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvXqFhX8xG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvXqFhX8xG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvXqFhX8xG .navbar {
    height: 70px;
  }
  .cid-uvXqFhX8xG .navbar.opened {
    height: auto;
  }
  .cid-uvXqFhX8xG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tG4UEZlGxz {
  padding-top: 225px;
  padding-bottom: 300px;
  background-image: url("../../../assets/images/mbr-11.webp");
}
.cid-tG4UEZlGxz .mbr-iconfont {
  font-size: 50px;
  color: #ffffff;
}
.cid-tG4UEZlGxz .mbr-section-title {
  color: #ffffff;
  width: 100%;
  margin-bottom: 15px;
  margin-top: 20px;
}
.cid-tG4UEZlGxz .mbr-section-subtitle {
  color: #ffffff;
  width: 100%;
  position: relative;
  padding-top: 25px;
}
.cid-tG4UEZlGxz .mbr-section-subtitle::before {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 2px;
  background-color: #fff;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.cid-tG4UEZlGxz .mbr-text {
  color: #ffffff;
  width: 100;
}
.cid-tG4UEZlGxz .content-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #d83c47;
  margin-left: 0.6rem;
}
.cid-tG4UEZlGxz .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #ffffff;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tG4UEZlGxz .mbr-section-btn .btn {
  border-radius: 3px;
  padding: 12px 40px !important;
  margin-right: 20px;
}
@media (max-width: 991px) {
  .cid-tG4UEZlGxz .separator,
  .cid-tG4UEZlGxz .sep-holder,
  .cid-tG4UEZlGxz .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tG4UEZlGxz .buttons-wrap {
    flex-direction: column;
  }
}
.cid-tG4UEZlGxz .items {
  display: flex;
  flex-direction: row;
  position: relative;
  padding-top: 25px;
}
.cid-tG4UEZlGxz .items::before {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 2px;
  background-color: #ffffff;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.cid-tG4UEZlGxz .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
}
.cid-tG4UEZlGxz .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  padding-left: 1rem;
  font-size: 1rem;
  margin: auto;
  color: #ffffff;
}
.cid-tG4UEZlGxz .items .list-item .text2 {
  display: inline-block;
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}
.cid-tG4UEZlGxz .items .list-item:last-child .listico {
  display: none;
}
.cid-tG4UEZlGxz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG4UEZlGxz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG4UF04IwL {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ede7e2;
}
.cid-tG4UF04IwL .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-tG4UF04IwL .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tG4UF04IwL .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-tG4UF04IwL .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tG4UF04IwL .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-tG4UF04IwL .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uvZLfVfCHF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #900812;
  overflow: hidden;
}
.cid-uvZLfVfCHF .media-container-row .mbr-text {
  color: #e8e8e8;
}
.cid-uvXqFhX8xG {
  z-index: 1000;
  width: 100%;
}
.cid-uvXqFhX8xG nav.navbar {
  position: fixed;
}
.cid-uvXqFhX8xG .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvXqFhX8xG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvXqFhX8xG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvXqFhX8xG .dropdown-item:hover,
.cid-uvXqFhX8xG .dropdown-item:focus {
  background: #f36872 !important;
  color: white !important;
}
.cid-uvXqFhX8xG .dropdown-item:hover span {
  color: white;
}
.cid-uvXqFhX8xG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvXqFhX8xG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvXqFhX8xG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvXqFhX8xG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvXqFhX8xG .nav-link {
  position: relative;
}
.cid-uvXqFhX8xG .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uvXqFhX8xG .container {
    flex-wrap: nowrap;
  }
}
.cid-uvXqFhX8xG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvXqFhX8xG .dropdown-menu,
.cid-uvXqFhX8xG .navbar.opened {
  background: #900812 !important;
}
.cid-uvXqFhX8xG .nav-item:focus,
.cid-uvXqFhX8xG .nav-link:focus {
  outline: none;
}
.cid-uvXqFhX8xG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvXqFhX8xG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvXqFhX8xG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvXqFhX8xG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvXqFhX8xG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvXqFhX8xG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvXqFhX8xG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(144, 8, 18, 0.8);
}
.cid-uvXqFhX8xG .navbar.opened {
  transition: all 0.3s;
}
.cid-uvXqFhX8xG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvXqFhX8xG .navbar .navbar-logo img {
  width: auto;
}
.cid-uvXqFhX8xG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvXqFhX8xG .navbar.collapsed {
  justify-content: center;
}
.cid-uvXqFhX8xG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvXqFhX8xG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uvXqFhX8xG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvXqFhX8xG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvXqFhX8xG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uvXqFhX8xG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvXqFhX8xG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvXqFhX8xG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvXqFhX8xG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvXqFhX8xG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvXqFhX8xG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvXqFhX8xG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvXqFhX8xG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uvXqFhX8xG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvXqFhX8xG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvXqFhX8xG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvXqFhX8xG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvXqFhX8xG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvXqFhX8xG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvXqFhX8xG .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvXqFhX8xG .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvXqFhX8xG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvXqFhX8xG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvXqFhX8xG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvXqFhX8xG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvXqFhX8xG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvXqFhX8xG .dropdown-item.active,
.cid-uvXqFhX8xG .dropdown-item:active {
  background-color: transparent;
}
.cid-uvXqFhX8xG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvXqFhX8xG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvXqFhX8xG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvXqFhX8xG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #900812;
}
.cid-uvXqFhX8xG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvXqFhX8xG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvXqFhX8xG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvXqFhX8xG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvXqFhX8xG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvXqFhX8xG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e8e8e8;
}
.cid-uvXqFhX8xG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvXqFhX8xG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvXqFhX8xG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvXqFhX8xG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvXqFhX8xG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvXqFhX8xG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvXqFhX8xG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvXqFhX8xG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvXqFhX8xG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvXqFhX8xG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvXqFhX8xG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvXqFhX8xG .navbar {
    height: 70px;
  }
  .cid-uvXqFhX8xG .navbar.opened {
    height: auto;
  }
  .cid-uvXqFhX8xG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvWMB9Uwag {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/mbr.webp");
}
.cid-uvWMB9Uwag .mbr-section-subtitle {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-uvWMB9Uwag .mbr-section-title {
  color: #fff;
  margin-bottom: 40px;
}
.cid-uvWMB9Uwag .counter {
  color: #fff;
  display: inline-flex;
  background-color: #f36872;
  margin-top: 40px;
  margin-bottom: 0px;
  align-items: center;
  box-sizing: border-box;
  border-radius: 8px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 30px;
  padding-top: 10px;
  text-align: left;
  text-size-adjust: 100%;
  text-transform: none;
  box-shadow: rgba(255, 255, 255, 0.1) 0px -2px 0px 0px inset;
  width: 100%;
}
.cid-uvWMB9Uwag .number {
  padding-right: 20px;
  margin-bottom: 0px;
  font-size: 2.75rem;
  line-height: 50px;
}
.cid-uvWMB9Uwag .description {
  margin-bottom: 0px;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 25px;
}
.cid-uvWMB9Uwag .link {
  display: inline-block;
}
.cid-uvWMB9Uwag .resume-link {
  display: inline-block;
  margin-top: 40px;
  color: #fff;
}
.cid-uvWMB9Uwag a::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 2px;
  margin-top: -3px;
  background-color: currentColor;
  transition-property: width;
  transition-timing-function: cubic-bezier(0.46, 0.03, 0.52, 0.96);
  vertical-align: middle;
  margin-right: 7px;
  transition-delay: 0s;
  transition-duration: 0.3s;
}
.cid-uvWMB9Uwag .link:hover a::before {
  width: 30px;
}
.cid-uvWMB9Uwag .mbr-text {
  text-align: left;
}
.cid-uvWMFYhGir {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ecede8;
}
.cid-uvWMFYhGir .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWMFYhGir .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWMFYhGir .text-wrapper {
  border-left: 4px solid #d83c47;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .cid-uvWMFYhGir .text-wrapper {
    padding-left: 0rem;
    border-left: 0;
  }
}
.cid-uvWMFYhGir .image-wrapper {
  position: relative;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uvWMFYhGir .image-wrapper {
    padding: 1rem;
  }
}
.cid-uvWMFYhGir .image-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  transform: rotate(-2deg);
  top: 0;
  width: 100%;
  height: 100%;
  border: 6px solid #d83c47;
  opacity: 0.8;
  border-radius: 3rem;
}
.cid-uvWMFYhGir .image-wrapper img {
  transform: rotate(2deg);
  border-radius: 3rem;
}
.cid-uvWMFYhGir .row {
  align-items: center;
}
.cid-uvWMFYhGir .mbr-section-title {
  color: #9a0712;
}
.cid-uvWMFYhGir .mbr-text,
.cid-uvWMFYhGir .mbr-section-btn {
  color: #491414;
}
.cid-uvWMFYhGir .mbr-section-subtitle {
  color: #491414;
}
.cid-uvWMH7ZXDj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9a0712;
}
.cid-uvWMH7ZXDj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWMH7ZXDj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWMH7ZXDj .container,
.cid-uvWMH7ZXDj .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uvWMH7ZXDj .container,
  .cid-uvWMH7ZXDj .container-fluid {
    padding: 0 20px;
  }
}
.cid-uvWMH7ZXDj .title-wrapper .mbr-section-subtitle {
  margin-bottom: 25px;
}
@media (max-width: 992px) {
  .cid-uvWMH7ZXDj .title-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uvWMH7ZXDj .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uvWMH7ZXDj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvWMH7ZXDj .mbr-section-subtitle {
  color: #ed9b82;
}
.cid-uvX4hX8nix {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uvX4hX8nix img {
  width: auto;
}
.cid-uvWMKawGUd {
  padding-top: 90px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/microphone-1172260-1920-1920x1236.webp");
}
.cid-uvWMKawGUd H1 {
  color: #000000;
}
.cid-uvWMKawGUd .mbr-text,
.cid-uvWMKawGUd .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvWMKawGUd .mbr-subtitle {
  color: #000000;
}
.cid-uvWMKawGUd .mbr-text {
  margin-top: 1.5rem;
}
.cid-uvWMKawGUd .mbr-section-btn {
  margin-top: 2rem;
}
.cid-uvWMKawGUd .mbr-section-title,
.cid-uvWMKawGUd .mbr-section-btn {
  text-align: center;
  color: #e8e8e8;
}
.cid-uvWOPEQ4Vj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uvWOPEQ4Vj img {
  width: auto;
}
.cid-uvWMLo732T {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/baseball-field-1548348-1920-1920x1277.webp");
}
.cid-uvWMLo732T .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #f36872;
  margin-bottom: 2rem;
}
.cid-uvWMLo732T .text-primary {
  color: #ffffff !important;
}
.cid-uvWMLo732T .link {
  opacity: 0;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  transform: translate3d(0, 100%, 0);
  transition: all 0.3s;
}
.cid-uvWMLo732T img {
  border-radius: 10px;
}
.cid-uvWMLo732T .date {
  margin: 20px 0;
  color: #ffffff;
}
.cid-uvWMLo732T .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvWMLo732T .mbr-buttons {
  background-color: #f36872;
}
.cid-uvWMLo732T .header {
  margin-bottom: 50px;
  align-items: center;
}
.cid-uvWMLo732T a {
  text-transform: uppercase;
  color: #f36872;
}
.cid-uvWMLo732T svg {
  padding-left: 15px;
  transition: 0.3s;
}
.cid-uvWMLo732T .link:hover svg {
  padding-left: 7px;
  transition: 0.3s;
}
.cid-uvWMLo732T .card-heading {
  line-height: 1.2;
  margin: 0px;
  color: #ffffff;
}
.cid-uvWMLo732T .item-wrapper:hover {
  cursor: pointer;
}
.cid-uvWMLo732T .item-wrapper:hover .link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.cid-uvWMLo732T .button {
  text-align: right;
}
@media (max-width: 600px) {
  .cid-uvWMLo732T .header {
    margin-bottom: 20px;
  }
  .cid-uvWMLo732T .link {
    margin-top: 20px;
    margin-bottom: 20px;
    opacity: 1;
    transform: none;
  }
  .cid-uvWMLo732T .button {
    text-align: left;
  }
}
@media (min-width: 600px) and (max-width: 1000px) {
  .cid-uvWMLo732T .link {
    margin-bottom: 40px;
  }
}
.cid-uvWMLo732T .mbr-section-btn {
  position: absolute;
  right: 0;
}
.cid-uvWMLo732T .card-heading DIV {
  text-align: left;
}
.cid-uvWMOY3aox {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
  background: linear-gradient(180deg, #000000, #242424);
  background: linear-gradient(90deg, #000000, #242424) !important;
}
.cid-uvWMOY3aox .row {
  flex-direction: row-reverse;
}
.cid-uvWMOY3aox .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-uvWMOY3aox .row {
    padding-bottom: 40px;
  }
}
.cid-uvWMOY3aox .mbr-section-head {
  display: flex;
}
@media (min-width: 992px) {
  .cid-uvWMOY3aox .mbr-section-head {
    padding-left: 20px;
  }
}
.cid-uvWMOY3aox .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.08);
  text-align: left;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-uvWMOY3aox .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-uvWMOY3aox .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-uvWMOY3aox .text-container {
    text-align: center!important;
  }
}
.cid-uvWMOY3aox .mbr-section-title {
  color: #ffffff;
}
.cid-uvWMOY3aox .mbr-section-subtitle {
  margin-top: 20px;
  color: #ffffff;
  opacity: 0.5;
}
.cid-uvWMOY3aox .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 575px) {
  .cid-uvWMOY3aox .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uvWMOY3aox .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uvWMOY3aox .col-video {
  height: auto;
  display: flex;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .cid-uvWMOY3aox .col-video {
    margin-top: 0;
    padding-right: 20px;
  }
}
.cid-uvWMOY3aox .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
}
.cid-uvWMOY3aox .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-uvWMOY3aox .col-video .mbr-media img {
  height: 360px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-uvWMOY3aox .col-video .mbr-media img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-uvWMOY3aox .col-video .mbr-media img {
    height: auto;
  }
}
.cid-uvWMOY3aox .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-uvWMOY3aox .mbr-media {
  position: relative;
}
.cid-uvWMOY3aox .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-uvWMOY3aox .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-uvWMOY3aox .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-uvWMOY3aox .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uvWMOY3aox .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uvWMOY3aox .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uvWMOY3aox .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uvWMOY3aox .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uvWMOY3aox .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWMOY3aox .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWMOY3aox .mbr-section-subtitle,
.cid-uvWMOY3aox .mbr-section-btn {
  text-align: left;
}
.cid-uvWMPEnWvb {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/mbr-3-1920x1280.webp");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.cid-uvWMPEnWvb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWMPEnWvb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWMPEnWvb .container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-uvWMPEnWvb .container {
    max-width: 960px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .cid-uvWMPEnWvb .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uvWMPEnWvb .container {
    max-width: 540px;
  }
}
.cid-uvWMPEnWvb .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-uvWMPEnWvb .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-uvWMPEnWvb .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-uvWMPEnWvb .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-uvWMPEnWvb .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-uvWMPEnWvb .mbr-section-title {
  color: #ffffff;
}
.cid-uvWMPEnWvb .mbr-section-subtitle {
  color: #FF014E;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
@media (max-width: 767px) {
  .cid-uvWMPEnWvb .mbr-section-subtitle {
    padding-top: 0.325rem;
    padding-bottom: 0.325rem;
  }
}
.cid-uvWMPEnWvb .card-row {
  align-items: stretch;
}
.cid-uvWMPEnWvb .card {
  margin-top: 30px;
}
.cid-uvWMPEnWvb .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #000000, #23272b);
}
.cid-uvWMPEnWvb .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-uvWMPEnWvb .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-uvWMPEnWvb .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-uvWMPEnWvb .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-uvWMPEnWvb .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-uvWMPEnWvb .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-uvWMPEnWvb .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-uvWMPEnWvb .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #ff014e;
}
.cid-uvWMPEnWvb .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-uvWMPEnWvb .card-text {
  color: #ffffff;
  margin-bottom: 22px;
  transition: .5s all;
  text-align: center;
}
.cid-uvWMPEnWvb .card-title,
.cid-uvWMPEnWvb .iconfont-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-RK6n4eOdLL {
  background-color: #000000;
  padding-top: 40px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-RK6n4eOdLL .row .form-wrapper {
    margin-top: 1rem;
  }
}
.cid-RK6n4eOdLL .map-wrapper {
  margin-top: 1rem;
}
.cid-RK6n4eOdLL .form-wrapper {
  margin-top: 0rem;
}
.cid-RK6n4eOdLL .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-RK6n4eOdLL .card-wrapper {
  display: flex;
  border-radius: 10px !important;
  background: #232323;
}
.cid-RK6n4eOdLL .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-RK6n4eOdLL .card-wrapper {
    padding: 1rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-RK6n4eOdLL .card-wrapper {
    padding: 1rem 1rem;
  }
}
.cid-RK6n4eOdLL .mbr-iconfont {
  font-size: 4rem;
  padding-right: 2rem;
  color: #f36872;
}
.cid-RK6n4eOdLL .google-map {
  height: 20rem;
  position: relative;
}
.cid-RK6n4eOdLL .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 10px !important;
}
.cid-RK6n4eOdLL .google-map [data-state-details] {
  color: #ff0000;
  height: 1em;
  margin-top: 1em;
  padding-left: 1rem;
  padding-right: 1rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-RK6n4eOdLL .google-map[data-state] {
  background: #ffb300;
}
.cid-RK6n4eOdLL .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-RK6n4eOdLL .showAlerts {
  display: block !important;
}
.cid-RK6n4eOdLL .rowflexrev {
  display: -webkit-flex;
}
.cid-RK6n4eOdLL .ws-form-alerts {
  margin-top: 1rem;
}
.cid-RK6n4eOdLL .title {
  margin-bottom: 2rem;
}
.cid-RK6n4eOdLL .mbr-section-subtitle {
  color: #fafafa;
}
.cid-RK6n4eOdLL textarea.form-control {
  min-height: 188px;
}
.cid-RK6n4eOdLL LABEL {
  color: #232323;
  display: initial;
}
.cid-RK6n4eOdLL .mbr-section-terms {
  text-align: center;
  color: #000000;
  margin-bottom: 0px;
}
.cid-RK6n4eOdLL .mbr-section-labels {
  color: #ffffff;
  padding: 0;
  margin-bottom: .357em;
  text-align: left;
}
.cid-RK6n4eOdLL .mbr-section-autorespond {
  text-align: left;
  color: #232323;
  margin-bottom: 0px;
}
.cid-RK6n4eOdLL .mbr-section-gdpr {
  text-align: center;
  color: #fafafa;
  margin-bottom: 0px;
}
.cid-RK6n4eOdLL .alert {
  margin-bottom: 0;
}
.cid-RK6n4eOdLL .alert-success {
  background-color: #70c770;
}
.cid-RK6n4eOdLL .alert-danger {
  background-color: #ff4a52;
}
.cid-RK6n4eOdLL .btn {
  display: inline-flex;
}
.cid-RK6n4eOdLL .hidden {
  display: none;
}
.cid-RK6n4eOdLL .mbr-alert-success {
  text-align: center;
  color: #232323;
}
.cid-RK6n4eOdLL .mbr-alert-danger {
  text-align: center;
  color: #232323;
}
.cid-RK6n4eOdLL .uploadBtn {
  padding-top: 13px !important;
  padding-left: 12.5px !important;
}
.cid-RK6n4eOdLL input[type=file]::file-selector-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-RK6n4eOdLL input[type=file]::-webkit-file-upload-button {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-RK6n4eOdLL input[type=file]::-ms-browse {
  border: 1px solid #232323 !important;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: #cccccc !important;
  color: #232323 !important;
  transition: 0.3s;
}
.cid-RK6n4eOdLL input,
.cid-RK6n4eOdLL textarea {
  background-color: #bbbbbb !important;
}
.cid-RK6n4eOdLL .form-control {
  border: 3.5px solid #000000 !important;
}
.cid-RK6n4eOdLL .form-control:hover {
  border: 3.5px solid #900812 !important;
}
.cid-RK6n4eOdLL .form-control:focus {
  border: 3.5px solid #900812 !important;
}
.cid-RK6n4eOdLL .mbr-section-title {
  color: #e8e8e8;
}
.cid-RK6n4eOdLL P {
  color: #fafafa;
  text-align: left;
}
.cid-RK6n4eOdLL .card-title {
  text-align: left;
  color: #e8e8e8;
}
.cid-uvZLfVfCHF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #900812;
  overflow: hidden;
}
.cid-uvZLfVfCHF .media-container-row .mbr-text {
  color: #e8e8e8;
}
