body {
  font-family: IBM Plex Sans;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 3.8rem;
}
.display-1 > .mbr-iconfont {
  font-size: 6.08rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 2.2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 0.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
  font-weight: 400;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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.04rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((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: #ff0228 !important;
}
.bg-success {
  background-color: #e4d295 !important;
}
.bg-info {
  background-color: #147c0a !important;
}
.bg-warning {
  background-color: #5b0000 !important;
}
.bg-danger {
  background-color: #ff0202 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff0228 !important;
  border-color: #ff0228 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #b4001b !important;
  border-color: #b4001b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b4001b !important;
  border-color: #b4001b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffd04c !important;
  border-color: #ffd04c !important;
  color: #4c3800 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #4c3800 !important;
  background-color: #ffbc00 !important;
  border-color: #ffbc00 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #4c3800 !important;
  background-color: #ffbc00 !important;
  border-color: #ffbc00 !important;
}
.btn-info,
.btn-info:active {
  background-color: #147c0a !important;
  border-color: #147c0a !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #093504 !important;
  border-color: #093504 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #093504 !important;
  border-color: #093504 !important;
}
.btn-success,
.btn-success:active {
  background-color: #e4d295 !important;
  border-color: #e4d295 !important;
  color: #615119 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #615119 !important;
  background-color: #d4b858 !important;
  border-color: #d4b858 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #615119 !important;
  background-color: #d4b858 !important;
  border-color: #d4b858 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #5b0000 !important;
  border-color: #5b0000 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #0f0000 !important;
  border-color: #0f0000 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #0f0000 !important;
  border-color: #0f0000 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff0202 !important;
  border-color: #ff0202 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #b40000 !important;
  border-color: #b40000 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b40000 !important;
  border-color: #b40000 !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: #9b0017;
  color: #9b0017;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #ff0228;
  border-color: #ff0228;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0228 !important;
  border-color: #ff0228 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #e5a900;
  color: #e5a900;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #4c3800;
  background-color: #ffd04c;
  border-color: #ffd04c;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #4c3800 !important;
  background-color: #ffd04c !important;
  border-color: #ffd04c !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #051e02;
  color: #051e02;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #147c0a;
  border-color: #147c0a;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #147c0a !important;
  border-color: #147c0a !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #cfaf44;
  color: #cfaf44;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #615119;
  background-color: #e4d295;
  border-color: #e4d295;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #615119 !important;
  background-color: #e4d295 !important;
  border-color: #e4d295 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #5b0000;
  border-color: #5b0000;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #5b0000 !important;
  border-color: #5b0000 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #9b0000;
  color: #9b0000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #ff0202;
  border-color: #ff0202;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0202 !important;
  border-color: #ff0202 !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: #ff0228 !important;
}
.text-secondary {
  color: #ffd04c !important;
}
.text-success {
  color: #e4d295 !important;
}
.text-info {
  color: #147c0a !important;
}
.text-warning {
  color: #5b0000 !important;
}
.text-danger {
  color: #ff0202 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #9b0017 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e5a900 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #cfaf44 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #051e02 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #9b0000 !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: #147c0a;
}
.alert-warning {
  background-color: #5b0000;
}
.alert-danger {
  background-color: #ff0202;
}
.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: #ff0228;
  border-color: #ff0228;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ff0228;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffced5;
}
.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: #2cec19;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #db0000;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffcece;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 0.8rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.28rem;
  font-weight: 400;
}
blockquote {
  border-color: #ff0228;
}
.btn-primary {
  margin: 1rem 0.5rem !important;
}
.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 6px 16px 0 #ff0228 !important;
  -webkit-box-shadow: 0 6px 16px 0 #ff0228 !important;
  background-color: #ff0228 !important;
  border-color: #ff0228 !important;
}
.btn-secondary {
  margin: 1rem 0.5rem !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 6px 15px 0 #ffd04c !important;
  -webkit-box-shadow: 0 6px 16px 0 #ffd04c !important;
  background-color: #ffd04c !important;
  border-color: #ffd04c !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 #e4d295 !important;
  -webkit-box-shadow: 0 6px 16px 0 #e4d295 !important;
  background-color: #e4d295 !important;
  border-color: #e4d295 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff0228;
  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: #ff0228;
  border-bottom-color: #ff0228;
}
.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: #ff0228 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ffd04c !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='%23ff0228' %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-ulo9LvLq0e .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-ulo9LvLq0e .collapsed {
  flex-direction: row!important;
}
.cid-ulo9LvLq0e .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulo9LvLq0e .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulo9LvLq0e .navbar-nav {
  margin: auto;
}
.cid-ulo9LvLq0e .navbar-brand {
  min-width: 15%;
  -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-ulo9LvLq0e .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulo9LvLq0e .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulo9LvLq0e .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-ulo9LvLq0e .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-ulo9LvLq0e .nav-item:focus,
.cid-ulo9LvLq0e .nav-link:focus {
  outline: none;
}
.cid-ulo9LvLq0e .text-white:hover,
.cid-ulo9LvLq0e .text-white:active,
.cid-ulo9LvLq0e .text-white:focus {
  color: white!important;
}
.cid-ulo9LvLq0e .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-ulo9LvLq0e .dropdown-item:hover {
  color: black!important;
}
.cid-ulo9LvLq0e .dropdown-menu {
  background-color: white!important;
}
.cid-ulo9LvLq0e .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-ulo9LvLq0e .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-ulo9LvLq0e .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-ulo9LvLq0e .nav-item .nav-link {
    position: relative;
  }
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #9e1916;
}
.cid-ulo9LvLq0e .navbar.opened {
  transition: all .3s;
  background: #9e1916 !important;
}
.cid-ulo9LvLq0e .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulo9LvLq0e .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulo9LvLq0e .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulo9LvLq0e .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulo9LvLq0e .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulo9LvLq0e .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulo9LvLq0e .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar .navbar-logo img {
    height: 4.8rem !important;
  }
  .cid-ulo9LvLq0e .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulo9LvLq0e .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulo9LvLq0e .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulo9LvLq0e .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulo9LvLq0e .navbar.navbar-short {
  background: #9e1916 !important;
  min-height: 65px;
}
.cid-ulo9LvLq0e .navbar.navbar-short .navbar-logo img {
  height: 4rem !important;
}
.cid-ulo9LvLq0e .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulo9LvLq0e .navbar-caption {
  font-weight: 600!important;
}
.cid-ulo9LvLq0e .dropdown-item.active,
.cid-ulo9LvLq0e .dropdown-item:active {
  background-color: transparent;
}
.cid-ulo9LvLq0e .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ulo9LvLq0e .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ulo9LvLq0e .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ulo9LvLq0e .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9e1916;
}
.cid-ulo9LvLq0e .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulo9LvLq0e ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulo9LvLq0e .navbar-buttons {
  text-align: center;
}
.cid-ulo9LvLq0e button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffd04c;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulo9LvLq0e .nav-link {
  font-weight: 600!important;
}
.cid-ulo9LvLq0e a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ulo9LvLq0e .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .icons-menu span {
  font-size: 26px;
  color: #FFD04C;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulo9LvLq0e .navbar {
    height: 77px;
  }
  .cid-ulo9LvLq0e .navbar.opened {
    height: auto;
  }
  .cid-ulo9LvLq0e .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rBiL12loxD .modal-body .close {
  background: #1b1b1b;
}
.cid-rBiL12loxD .modal-body .close span {
  font-style: normal;
}
.cid-rBiL12loxD .carousel-inner > .active,
.cid-rBiL12loxD .carousel-inner > .next,
.cid-rBiL12loxD .carousel-inner > .prev {
  display: table;
}
.cid-rBiL12loxD .mbr-iconfont {
  font-family: 'Moririse2' !important;
}
.cid-rBiL12loxD .mbri-right:before {
  content: "\e909";
  font-weight: 900;
  padding-left: 5px;
}
.cid-rBiL12loxD .mbri-left:before {
  content: "\e90a";
  font-weight: 900;
  padding-right: 5px;
}
.cid-rBiL12loxD .carousel-control,
.cid-rBiL12loxD .carousel-indicators li {
  background-color: #ff0228 !important;
  opacity: 0.7!important;
  border: none;
}
.cid-rBiL12loxD .carousel-control:hover,
.cid-rBiL12loxD .carousel-indicators li:hover {
  transform: scale(1.1);
  opacity: 1!important;
}
.cid-rBiL12loxD .carousel-control .active,
.cid-rBiL12loxD .carousel-indicators li .active {
  transform: scale(1.1);
  opacity: 1!important;
}
.cid-rBiL12loxD .carousel-indicators .active {
  transform: scale(1.1);
  opacity: 1!important;
}
.cid-rBiL12loxD .carousel-control .icon-next,
.cid-rBiL12loxD .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rBiL12loxD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-rBiL12loxD .col-10 {
  max-width: 900px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-rBiL12loxD .col-10 {
    max-width: 500px;
  }
}
@media (max-width: 576px) {
  .cid-rBiL12loxD .carousel-control {
    width: 40px!important;
    height: 40px!important;
  }
  .cid-rBiL12loxD .mbr-iconfont {
    font-size: 1rem!important;
  }
}
@media (max-width: 767px) {
  .cid-rBiL12loxD .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rBiL12loxD .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-rBiL12loxD .boxed-slider > div {
  position: relative;
}
.cid-rBiL12loxD .container img {
  width: 100%;
}
.cid-rBiL12loxD .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-rBiL12loxD .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rBiL12loxD .mbr-table-cell {
  padding: 0;
}
.cid-rBiL12loxD .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-rBiL12loxD .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-rBiL12loxD .mbr-overlay {
  z-index: 1;
}
.cid-rBiL12loxD .container-slide.container {
  min-width: 100%;
  min-height: 80vh;
  padding: 0;
}
.cid-rBiL12loxD .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-rBiL12loxD .carousel-item .container {
    width: 100%;
  }
}
.cid-rBiL12loxD .carousel-item-next.carousel-item-left,
.cid-rBiL12loxD .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-rBiL12loxD .active.carousel-item-right,
.cid-rBiL12loxD .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-rBiL12loxD .active.carousel-item-left,
.cid-rBiL12loxD .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-rBiL12loxD .mbr-slider .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: all .3s;
}
.cid-rBiL12loxD .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rBiL12loxD .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rBiL12loxD .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-rBiL12loxD .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-rBiL12loxD .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-rBiL12loxD .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 10px;
  height: 10px;
  max-height: 10px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 0px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-rBiL12loxD .mbr-slider .carousel-indicators li.active,
.cid-rBiL12loxD .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-rBiL12loxD .mbr-slider .carousel-indicators li::after,
.cid-rBiL12loxD .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-rBiL12loxD .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-rBiL12loxD .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-rBiL12loxD .mbr-slider > .container img {
  width: 100%;
}
.cid-rBiL12loxD .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rBiL12loxD .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-rBiL12loxD .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rBiL12loxD .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rBiL12loxD .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-rBiL12loxD .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-rBiL12loxD .full-screen .slider-fullscreen-image {
  min-height: 80vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-rBiL12loxD .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-rBiL12loxD .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-rBiL12loxD .full-screen .carousel-item .container.container-slide {
  width: 80%;
  min-height: 80vh;
  padding: 0;
}
.cid-rBiL12loxD .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-rBiL12loxD .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-rBiL12loxD .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-rBiL12loxD H2 {
  text-align: center;
}
.cid-rBiL12loxD P {
  text-align: center;
}
.cid-ulrRyHhJ7J {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ulrRyHhJ7J .row {
  flex-direction: row-reverse;
}
.cid-ulrRyHhJ7J .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-ulrRyHhJ7J .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #ff0228;
}
.cid-ulrRyHhJ7J .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-ulrRyHhJ7J .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-ulrRyHhJ7J .mbr-section-title {
  color: #b60809;
  text-align: left;
}
@media (min-width: 1400px) {
  .cid-ulrRyHhJ7J .col-12 {
    padding: 0 2rem;
  }
  .cid-ulrRyHhJ7J .row {
    margin: 0 -2rem;
  }
}
.cid-ulrRyHhJ7J .mbr-text,
.cid-ulrRyHhJ7J .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-ro1tCcntIG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #b60809;
}
.cid-ro1tCcntIG h4 {
  margin-bottom: 0;
}
.cid-ro1tCcntIG p {
  color: #767676;
}
.cid-ro1tCcntIG .btn-info-outline {
  border: none;
  color: #147c0a !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-ro1tCcntIG .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-ro1tCcntIG .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-ro1tCcntIG .btn-info-outline:hover {
  background-color: transparent!important;
  color: #ff0228 !important;
  box-shadow: none!important;
}
.cid-ro1tCcntIG .btn-info-outline:active,
.cid-ro1tCcntIG .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-ro1tCcntIG .card-box {
  padding-top: 2rem;
}
.cid-ro1tCcntIG .card-wrapper {
  height: 100%;
}
.cid-ro1tCcntIG .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-ro1tCcntIG img {
  border-radius: 8px;
}
.cid-ro1tCcntIG .card-title {
  color: #f2f6ff;
  text-align: center;
}
.cid-ro1tCcntIG .main-title {
  color: #232323;
  text-align: center;
}
.cid-ro1tCcntIG DIV {
  color: #57468b;
}
.cid-ro1tCcntIG .main-title B {
  color: #ffffff;
}
.cid-ulsauWQ2rA {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #9e1916;
}
.cid-ulsauWQ2rA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ulsauWQ2rA .btn {
  margin: 0 0 .5rem 0;
}
.cid-ulsauWQ2rA H2 {
  color: #ffffff;
}
.cid-rBjXCj9tdP {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rBjXCj9tdP .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-rBjXCj9tdP input,
.cid-rBjXCj9tdP textarea {
  padding: 0.4rem 1.4rem!important;
  border-radius: 10px;
}
.cid-rBjXCj9tdP img {
  width: 90%;
  border-radius: 8px;
}
.cid-rBjXCj9tdP .btn {
  border-radius: 30px;
  padding: 0.6rem 3rem!important;
}
.cid-rBjXCj9tdP textarea {
  min-height: 160px;
}
.cid-rBjXCj9tdP .form-control,
.cid-rBjXCj9tdP .field-input {
  padding: 0.5rem;
  background-color: #efefef;
  border-color: #b60809;
  color: #232323;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-rBjXCj9tdP .form-control:hover,
.cid-rBjXCj9tdP .field-input:hover,
.cid-rBjXCj9tdP .form-control:focus,
.cid-rBjXCj9tdP .field-input:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-rBjXCj9tdP input::-webkit-input-placeholder,
.cid-rBjXCj9tdP textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-rBjXCj9tdP input:-moz-placeholder,
.cid-rBjXCj9tdP textarea:-moz-placeholder {
  color: #232323;
}
.cid-rBjXCj9tdP .jq-selectbox li,
.cid-rBjXCj9tdP .jq-selectbox li {
  background-color: #efefef;
  color: #000000;
}
.cid-rBjXCj9tdP .jq-selectbox li:hover,
.cid-rBjXCj9tdP .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-rBjXCj9tdP .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #efefef;
}
.cid-rBjXCj9tdP .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-rBjXCj9tdP H5 {
  color: #820405;
  padding-bottom: 2rem;
}
@media (max-width: 992px) {
  .cid-rBjXCj9tdP img {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .cid-rBjXCj9tdP .col-auto {
    width: 100%;
    text-align: center;
  }
}
.cid-uloa5GANiR {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #820405;
}
.cid-uloa5GANiR .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-uloa5GANiR .navbar-logo {
  width: 200px;
  margin-bottom: 5px;
  margin: auto;
}
.cid-uloa5GANiR .col + .mbr-section-btn .btn,
.cid-uloa5GANiR .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-uloa5GANiR .col + .mbr-section-btn .btn,
  .cid-uloa5GANiR .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-uloa5GANiR .dragArea > *:nth-last-child(2).col,
  .cid-uloa5GANiR .dragArea > *:nth-last-child(2).col-auto,
  .cid-uloa5GANiR .col + .mbr-section-btn,
  .cid-uloa5GANiR .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-uloa5GANiR .dragArea {
    flex-direction: column;
  }
}
.cid-uloa5GANiR .btn-primary {
  border: 1px solid #ff0228 !important;
}
.cid-uloa5GANiR .btn-primary:hover {
  border: 1px solid #ff0228 !important;
}
.cid-uloa5GANiR .stripe {
  border-bottom: 1px solid #ffffff;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uloa5GANiR .form-group {
  max-width: 220px;
}
.cid-uloa5GANiR .mbr-section-btn {
  padding-left: 0;
}
.cid-uloa5GANiR .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uloa5GANiR .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ffffff;
  width: 85%;
}
.cid-uloa5GANiR .mbr-text {
  color: #444;
}
.cid-uloa5GANiR h5 {
  margin-bottom: 0;
}
.cid-uloa5GANiR .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: left;
}
.cid-uloa5GANiR .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uloa5GANiR .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uloa5GANiR .socicon {
  font-size: 1.3rem;
  background: #ffd04c;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uloa5GANiR .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uloa5GANiR .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uloa5GANiR .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uloa5GANiR .social-list a:hover {
  opacity: 0.4;
}
.cid-uloa5GANiR .media-container-row > div {
  padding: 0px;
}
.cid-uloa5GANiR .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-uloa5GANiR .group-title {
  text-align: left;
  color: #ffd04c;
  padding-bottom: 0.2rem;
}
.cid-uloa5GANiR .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uloa5GANiR .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uloa5GANiR .social-list,
  .cid-uloa5GANiR .img-list {
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
  .cid-uloa5GANiR h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uloa5GANiR .form-group {
    max-width: 180px;
  }
}
.cid-uloa5GANiR .links span {
  color: #9e9e9e;
}
.cid-uloa5GANiR .logo-sub-title {
  text-align: left;
}
.cid-uloa5GANiR .logo-title {
  text-align: left;
}
.cid-uloa5GANiR .logo-sub-title i {
  color: #9e9e9e;
}
.cid-uloa5GANiR .logo-title,
.cid-uloa5GANiR .logo {
  text-align: left;
  color: #ffffff;
}
.cid-uloatEfSi5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffd04c;
}
.cid-uloatEfSi5 .media-container-row {
  align-items: center;
}
.cid-uloatEfSi5 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uloatEfSi5 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uloatEfSi5 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uloatEfSi5 .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-uloatEfSi5 .foot-menu-item {
  transform: 0.2s;
}
.cid-uloatEfSi5 .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-uloatEfSi5 .foot-menu {
    justify-content: center;
  }
  .cid-uloatEfSi5 .mbr-text {
    text-align: center;
  }
  .cid-uloatEfSi5 .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uloatEfSi5 .foot-menu {
    justify-content: flex-end;
  }
}
.cid-uloatEfSi5 .link:hover {
  text-decoration: underline;
}
.cid-uloatEfSi5 .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #5b0000;
}
.cid-uloatEfSi5 .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-uloatEfSi5 .container {
    padding: 0;
  }
}
.cid-uloatEfSi5 .media-container-row .mbr-text {
  color: #5b0000;
  text-align: center;
}
.cid-ulo9LvLq0e .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-ulo9LvLq0e .collapsed {
  flex-direction: row!important;
}
.cid-ulo9LvLq0e .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulo9LvLq0e .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulo9LvLq0e .navbar-nav {
  margin: auto;
}
.cid-ulo9LvLq0e .navbar-brand {
  min-width: 15%;
  -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-ulo9LvLq0e .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulo9LvLq0e .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulo9LvLq0e .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-ulo9LvLq0e .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-ulo9LvLq0e .nav-item:focus,
.cid-ulo9LvLq0e .nav-link:focus {
  outline: none;
}
.cid-ulo9LvLq0e .text-white:hover,
.cid-ulo9LvLq0e .text-white:active,
.cid-ulo9LvLq0e .text-white:focus {
  color: white!important;
}
.cid-ulo9LvLq0e .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-ulo9LvLq0e .dropdown-item:hover {
  color: black!important;
}
.cid-ulo9LvLq0e .dropdown-menu {
  background-color: white!important;
}
.cid-ulo9LvLq0e .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-ulo9LvLq0e .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-ulo9LvLq0e .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-ulo9LvLq0e .nav-item .nav-link {
    position: relative;
  }
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #9e1916;
}
.cid-ulo9LvLq0e .navbar.opened {
  transition: all .3s;
  background: #9e1916 !important;
}
.cid-ulo9LvLq0e .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulo9LvLq0e .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulo9LvLq0e .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulo9LvLq0e .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulo9LvLq0e .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulo9LvLq0e .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulo9LvLq0e .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulo9LvLq0e .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulo9LvLq0e .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulo9LvLq0e .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulo9LvLq0e .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulo9LvLq0e .navbar.navbar-short {
  background: #9e1916 !important;
  min-height: 60px;
}
.cid-ulo9LvLq0e .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulo9LvLq0e .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulo9LvLq0e .navbar-caption {
  font-weight: 600!important;
}
.cid-ulo9LvLq0e .dropdown-item.active,
.cid-ulo9LvLq0e .dropdown-item:active {
  background-color: transparent;
}
.cid-ulo9LvLq0e .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ulo9LvLq0e .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ulo9LvLq0e .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ulo9LvLq0e .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9e1916;
}
.cid-ulo9LvLq0e .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulo9LvLq0e ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulo9LvLq0e .navbar-buttons {
  text-align: center;
}
.cid-ulo9LvLq0e button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffd04c;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulo9LvLq0e .nav-link {
  font-weight: 600!important;
}
.cid-ulo9LvLq0e a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ulo9LvLq0e .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulo9LvLq0e .navbar {
    height: 77px;
  }
  .cid-ulo9LvLq0e .navbar.opened {
    height: auto;
  }
  .cid-ulo9LvLq0e .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rBwEuPydMN {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1-1920x798.jpg");
}
.cid-rot9uLYvXv {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #820405;
}
.cid-rot9uLYvXv H1 {
  color: #57468b;
}
.cid-rot9uLYvXv .mbr-text,
.cid-rot9uLYvXv .mbr-section-btn {
  color: #9e1916;
}
.cid-rot9uLYvXv H3 {
  color: #716c80;
}
.cid-rot9uLYvXv .mbr-text,
.cid-rot9uLYvXv .mbr-section-btn B {
  color: #ffffff;
}
.cid-rBrlneUVOQ {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rBrlneUVOQ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rBrlneUVOQ .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-rBrlneUVOQ .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-rBrlneUVOQ .btn-primary-outline:active {
  color: gray;
}
.cid-rBrlneUVOQ .btn-primary-outline:hover {
  color: white;
}
.cid-rBrlneUVOQ .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-rBrlneUVOQ div {
  overflow: hidden;
}
.cid-rBrlneUVOQ .btn-primary-outline.active {
  color: white;
}
.cid-rBrlneUVOQ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rBrlneUVOQ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rBrlneUVOQ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rBrlneUVOQ .mbr-gallery-item {
  overflow: hidden;
}
.cid-rBrlneUVOQ .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-rBrlneUVOQ .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-rBrlneUVOQ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: #820405;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rBrlneUVOQ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rBrlneUVOQ .mbr-gallery-item > div:hover:before {
  opacity: 0.9 !important;
}
.cid-rBrlneUVOQ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rBrlneUVOQ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #820405 !important;
  opacity: 0.9;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-rBrlneUVOQ .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-ulsh6SajJF {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #820405;
}
.cid-ulsh6SajJF .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-ulsh6SajJF .navbar-logo {
  width: 200px;
  margin-bottom: 5px;
  margin: auto;
}
.cid-ulsh6SajJF .col + .mbr-section-btn .btn,
.cid-ulsh6SajJF .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-ulsh6SajJF .col + .mbr-section-btn .btn,
  .cid-ulsh6SajJF .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-ulsh6SajJF .dragArea > *:nth-last-child(2).col,
  .cid-ulsh6SajJF .dragArea > *:nth-last-child(2).col-auto,
  .cid-ulsh6SajJF .col + .mbr-section-btn,
  .cid-ulsh6SajJF .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-ulsh6SajJF .dragArea {
    flex-direction: column;
  }
}
.cid-ulsh6SajJF .btn-primary {
  border: 1px solid #ff0228 !important;
}
.cid-ulsh6SajJF .btn-primary:hover {
  border: 1px solid #ff0228 !important;
}
.cid-ulsh6SajJF .stripe {
  border-bottom: 1px solid #ffffff;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-ulsh6SajJF .form-group {
  max-width: 220px;
}
.cid-ulsh6SajJF .mbr-section-btn {
  padding-left: 0;
}
.cid-ulsh6SajJF .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-ulsh6SajJF .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ffffff;
  width: 85%;
}
.cid-ulsh6SajJF .mbr-text {
  color: #444;
}
.cid-ulsh6SajJF h5 {
  margin-bottom: 0;
}
.cid-ulsh6SajJF .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: left;
}
.cid-ulsh6SajJF .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ulsh6SajJF .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-ulsh6SajJF .socicon {
  font-size: 1.3rem;
  background: #ffd04c;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ulsh6SajJF .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-ulsh6SajJF .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-ulsh6SajJF .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-ulsh6SajJF .social-list a:hover {
  opacity: 0.4;
}
.cid-ulsh6SajJF .media-container-row > div {
  padding: 0px;
}
.cid-ulsh6SajJF .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-ulsh6SajJF .group-title {
  text-align: left;
  color: #ffd04c;
  padding-bottom: 0.2rem;
}
.cid-ulsh6SajJF .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-ulsh6SajJF .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-ulsh6SajJF .social-list,
  .cid-ulsh6SajJF .img-list {
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
  .cid-ulsh6SajJF h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-ulsh6SajJF .form-group {
    max-width: 180px;
  }
}
.cid-ulsh6SajJF .links span {
  color: #9e9e9e;
}
.cid-ulsh6SajJF .logo-sub-title {
  text-align: left;
}
.cid-ulsh6SajJF .logo-title {
  text-align: left;
}
.cid-ulsh6SajJF .logo-sub-title i {
  color: #9e9e9e;
}
.cid-ulsh6SajJF .logo-title,
.cid-ulsh6SajJF .logo {
  text-align: left;
  color: #ffffff;
}
.cid-uloaqkLnvd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffd04c;
}
.cid-uloaqkLnvd .media-container-row {
  align-items: center;
}
.cid-uloaqkLnvd .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uloaqkLnvd .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uloaqkLnvd .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uloaqkLnvd .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-uloaqkLnvd .foot-menu-item {
  transform: 0.2s;
}
.cid-uloaqkLnvd .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-uloaqkLnvd .foot-menu {
    justify-content: center;
  }
  .cid-uloaqkLnvd .mbr-text {
    text-align: center;
  }
  .cid-uloaqkLnvd .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uloaqkLnvd .foot-menu {
    justify-content: flex-end;
  }
}
.cid-uloaqkLnvd .link:hover {
  text-decoration: underline;
}
.cid-uloaqkLnvd .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #5b0000;
}
.cid-uloaqkLnvd .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-uloaqkLnvd .container {
    padding: 0;
  }
}
.cid-uloaqkLnvd .media-container-row .mbr-text {
  color: #5b0000;
  text-align: center;
}
.cid-ulo9LvLq0e .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-ulo9LvLq0e .collapsed {
  flex-direction: row!important;
}
.cid-ulo9LvLq0e .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulo9LvLq0e .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulo9LvLq0e .navbar-nav {
  margin: auto;
}
.cid-ulo9LvLq0e .navbar-brand {
  min-width: 15%;
  -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-ulo9LvLq0e .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulo9LvLq0e .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulo9LvLq0e .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-ulo9LvLq0e .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-ulo9LvLq0e .nav-item:focus,
.cid-ulo9LvLq0e .nav-link:focus {
  outline: none;
}
.cid-ulo9LvLq0e .text-white:hover,
.cid-ulo9LvLq0e .text-white:active,
.cid-ulo9LvLq0e .text-white:focus {
  color: white!important;
}
.cid-ulo9LvLq0e .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-ulo9LvLq0e .dropdown-item:hover {
  color: black!important;
}
.cid-ulo9LvLq0e .dropdown-menu {
  background-color: white!important;
}
.cid-ulo9LvLq0e .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-ulo9LvLq0e .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-ulo9LvLq0e .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-ulo9LvLq0e .nav-item .nav-link {
    position: relative;
  }
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #9e1916;
}
.cid-ulo9LvLq0e .navbar.opened {
  transition: all .3s;
  background: #9e1916 !important;
}
.cid-ulo9LvLq0e .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulo9LvLq0e .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulo9LvLq0e .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulo9LvLq0e .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulo9LvLq0e .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulo9LvLq0e .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulo9LvLq0e .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulo9LvLq0e .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulo9LvLq0e .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulo9LvLq0e .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulo9LvLq0e .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulo9LvLq0e .navbar.navbar-short {
  background: #9e1916 !important;
  min-height: 60px;
}
.cid-ulo9LvLq0e .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulo9LvLq0e .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulo9LvLq0e .navbar-caption {
  font-weight: 600!important;
}
.cid-ulo9LvLq0e .dropdown-item.active,
.cid-ulo9LvLq0e .dropdown-item:active {
  background-color: transparent;
}
.cid-ulo9LvLq0e .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ulo9LvLq0e .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ulo9LvLq0e .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ulo9LvLq0e .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9e1916;
}
.cid-ulo9LvLq0e .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulo9LvLq0e ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulo9LvLq0e .navbar-buttons {
  text-align: center;
}
.cid-ulo9LvLq0e button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffd04c;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulo9LvLq0e .nav-link {
  font-weight: 600!important;
}
.cid-ulo9LvLq0e a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ulo9LvLq0e .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulo9LvLq0e .navbar {
    height: 77px;
  }
  .cid-ulo9LvLq0e .navbar.opened {
    height: auto;
  }
  .cid-ulo9LvLq0e .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rss0ZwRS5C {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/sinalizacao-para-extintores-de-incendio-800x534.png");
}
.cid-ulskWaq4Cs {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #820405;
}
.cid-ulskWaq4Cs H1 {
  color: #57468b;
}
.cid-ulskWaq4Cs .mbr-text,
.cid-ulskWaq4Cs .mbr-section-btn {
  color: #9e1916;
}
.cid-ulskWaq4Cs H3 {
  color: #716c80;
}
.cid-ulskWaq4Cs .mbr-text,
.cid-ulskWaq4Cs .mbr-section-btn B {
  color: #ffffff;
}
.cid-rBsx9XD4es {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rBsx9XD4es .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rBsx9XD4es .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-rBsx9XD4es .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-rBsx9XD4es .btn-primary-outline:active {
  color: gray;
}
.cid-rBsx9XD4es .btn-primary-outline:hover {
  color: white;
}
.cid-rBsx9XD4es .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-rBsx9XD4es div {
  overflow: hidden;
}
.cid-rBsx9XD4es .btn-primary-outline.active {
  color: white;
}
.cid-rBsx9XD4es .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rBsx9XD4es .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rBsx9XD4es .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rBsx9XD4es .mbr-gallery-item {
  overflow: hidden;
}
.cid-rBsx9XD4es .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-rBsx9XD4es .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-rBsx9XD4es .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rBsx9XD4es .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rBsx9XD4es .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-rBsx9XD4es .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rBsx9XD4es .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-rBFIO7IzcE {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rBFIO7IzcE .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rBFIO7IzcE .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-rBFIO7IzcE .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-rBFIO7IzcE .btn-primary-outline:active {
  color: gray;
}
.cid-rBFIO7IzcE .btn-primary-outline:hover {
  color: white;
}
.cid-rBFIO7IzcE .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-rBFIO7IzcE div {
  overflow: hidden;
}
.cid-rBFIO7IzcE .btn-primary-outline.active {
  color: white;
}
.cid-rBFIO7IzcE .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rBFIO7IzcE .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rBFIO7IzcE .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rBFIO7IzcE .mbr-gallery-item {
  overflow: hidden;
}
.cid-rBFIO7IzcE .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-rBFIO7IzcE .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-rBFIO7IzcE .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rBFIO7IzcE .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rBFIO7IzcE .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-rBFIO7IzcE .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rBFIO7IzcE .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-ulskXQuPCi {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #820405;
}
.cid-ulskXQuPCi .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-ulskXQuPCi .navbar-logo {
  width: 200px;
  margin-bottom: 5px;
  margin: auto;
}
.cid-ulskXQuPCi .col + .mbr-section-btn .btn,
.cid-ulskXQuPCi .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-ulskXQuPCi .col + .mbr-section-btn .btn,
  .cid-ulskXQuPCi .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-ulskXQuPCi .dragArea > *:nth-last-child(2).col,
  .cid-ulskXQuPCi .dragArea > *:nth-last-child(2).col-auto,
  .cid-ulskXQuPCi .col + .mbr-section-btn,
  .cid-ulskXQuPCi .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-ulskXQuPCi .dragArea {
    flex-direction: column;
  }
}
.cid-ulskXQuPCi .btn-primary {
  border: 1px solid #ff0228 !important;
}
.cid-ulskXQuPCi .btn-primary:hover {
  border: 1px solid #ff0228 !important;
}
.cid-ulskXQuPCi .stripe {
  border-bottom: 1px solid #ffffff;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-ulskXQuPCi .form-group {
  max-width: 220px;
}
.cid-ulskXQuPCi .mbr-section-btn {
  padding-left: 0;
}
.cid-ulskXQuPCi .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-ulskXQuPCi .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ffffff;
  width: 85%;
}
.cid-ulskXQuPCi .mbr-text {
  color: #444;
}
.cid-ulskXQuPCi h5 {
  margin-bottom: 0;
}
.cid-ulskXQuPCi .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: left;
}
.cid-ulskXQuPCi .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ulskXQuPCi .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-ulskXQuPCi .socicon {
  font-size: 1.3rem;
  background: #ffd04c;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ulskXQuPCi .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-ulskXQuPCi .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-ulskXQuPCi .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-ulskXQuPCi .social-list a:hover {
  opacity: 0.4;
}
.cid-ulskXQuPCi .media-container-row > div {
  padding: 0px;
}
.cid-ulskXQuPCi .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-ulskXQuPCi .group-title {
  text-align: left;
  color: #ffd04c;
  padding-bottom: 0.2rem;
}
.cid-ulskXQuPCi .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-ulskXQuPCi .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-ulskXQuPCi .social-list,
  .cid-ulskXQuPCi .img-list {
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
  .cid-ulskXQuPCi h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-ulskXQuPCi .form-group {
    max-width: 180px;
  }
}
.cid-ulskXQuPCi .links span {
  color: #9e9e9e;
}
.cid-ulskXQuPCi .logo-sub-title {
  text-align: left;
}
.cid-ulskXQuPCi .logo-title {
  text-align: left;
}
.cid-ulskXQuPCi .logo-sub-title i {
  color: #9e9e9e;
}
.cid-ulskXQuPCi .logo-title,
.cid-ulskXQuPCi .logo {
  text-align: left;
  color: #ffffff;
}
.cid-uloaqkLnvd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffd04c;
}
.cid-uloaqkLnvd .media-container-row {
  align-items: center;
}
.cid-uloaqkLnvd .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uloaqkLnvd .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uloaqkLnvd .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uloaqkLnvd .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-uloaqkLnvd .foot-menu-item {
  transform: 0.2s;
}
.cid-uloaqkLnvd .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-uloaqkLnvd .foot-menu {
    justify-content: center;
  }
  .cid-uloaqkLnvd .mbr-text {
    text-align: center;
  }
  .cid-uloaqkLnvd .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uloaqkLnvd .foot-menu {
    justify-content: flex-end;
  }
}
.cid-uloaqkLnvd .link:hover {
  text-decoration: underline;
}
.cid-uloaqkLnvd .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #5b0000;
}
.cid-uloaqkLnvd .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-uloaqkLnvd .container {
    padding: 0;
  }
}
.cid-uloaqkLnvd .media-container-row .mbr-text {
  color: #5b0000;
  text-align: center;
}
.cid-ulo9LvLq0e .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-ulo9LvLq0e .collapsed {
  flex-direction: row!important;
}
.cid-ulo9LvLq0e .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulo9LvLq0e .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulo9LvLq0e .navbar-nav {
  margin: auto;
}
.cid-ulo9LvLq0e .navbar-brand {
  min-width: 15%;
  -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-ulo9LvLq0e .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulo9LvLq0e .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulo9LvLq0e .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-ulo9LvLq0e .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-ulo9LvLq0e .nav-item:focus,
.cid-ulo9LvLq0e .nav-link:focus {
  outline: none;
}
.cid-ulo9LvLq0e .text-white:hover,
.cid-ulo9LvLq0e .text-white:active,
.cid-ulo9LvLq0e .text-white:focus {
  color: white!important;
}
.cid-ulo9LvLq0e .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-ulo9LvLq0e .dropdown-item:hover {
  color: black!important;
}
.cid-ulo9LvLq0e .dropdown-menu {
  background-color: white!important;
}
.cid-ulo9LvLq0e .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-ulo9LvLq0e .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-ulo9LvLq0e .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-ulo9LvLq0e .nav-item .nav-link {
    position: relative;
  }
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #9e1916;
}
.cid-ulo9LvLq0e .navbar.opened {
  transition: all .3s;
  background: #9e1916 !important;
}
.cid-ulo9LvLq0e .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulo9LvLq0e .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulo9LvLq0e .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulo9LvLq0e .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulo9LvLq0e .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulo9LvLq0e .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulo9LvLq0e .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulo9LvLq0e .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulo9LvLq0e .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulo9LvLq0e .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulo9LvLq0e .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulo9LvLq0e .navbar.navbar-short {
  background: #9e1916 !important;
  min-height: 60px;
}
.cid-ulo9LvLq0e .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulo9LvLq0e .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulo9LvLq0e .navbar-caption {
  font-weight: 600!important;
}
.cid-ulo9LvLq0e .dropdown-item.active,
.cid-ulo9LvLq0e .dropdown-item:active {
  background-color: transparent;
}
.cid-ulo9LvLq0e .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ulo9LvLq0e .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ulo9LvLq0e .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ulo9LvLq0e .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9e1916;
}
.cid-ulo9LvLq0e .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulo9LvLq0e ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulo9LvLq0e .navbar-buttons {
  text-align: center;
}
.cid-ulo9LvLq0e button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffd04c;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulo9LvLq0e .nav-link {
  font-weight: 600!important;
}
.cid-ulo9LvLq0e a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ulo9LvLq0e .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulo9LvLq0e .navbar {
    height: 77px;
  }
  .cid-ulo9LvLq0e .navbar.opened {
    height: auto;
  }
  .cid-ulo9LvLq0e .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rBsAH8ATLc {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1371.jpg");
}
.cid-ulsmbPvjFC {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #820405;
}
.cid-ulsmbPvjFC H1 {
  color: #57468b;
}
.cid-ulsmbPvjFC .mbr-text,
.cid-ulsmbPvjFC .mbr-section-btn {
  color: #9e1916;
}
.cid-ulsmbPvjFC H3 {
  color: #716c80;
}
.cid-ulsmbPvjFC .mbr-text,
.cid-ulsmbPvjFC .mbr-section-btn B {
  color: #ffffff;
}
.cid-rBsCafwl9Z {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-rBsCafwl9Z .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rBsCafwl9Z .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-rBsCafwl9Z .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-rBsCafwl9Z .btn-primary-outline:active {
  color: gray;
}
.cid-rBsCafwl9Z .btn-primary-outline:hover {
  color: white;
}
.cid-rBsCafwl9Z div {
  overflow: hidden;
}
.cid-rBsCafwl9Z .btn-primary-outline.active {
  color: white;
}
.cid-rBsCafwl9Z .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rBsCafwl9Z .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rBsCafwl9Z .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rBsCafwl9Z .mbr-gallery-item {
  overflow: hidden;
}
.cid-rBsCafwl9Z .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-rBsCafwl9Z .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-rBsCafwl9Z .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-rBsCafwl9Z .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #820405;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rBsCafwl9Z .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rBsCafwl9Z .mbr-gallery-item > div:hover:before {
  opacity: 0.9 !important;
}
.cid-rBsCafwl9Z .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rBsCafwl9Z .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #820405 !important;
  opacity: 0.9;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-rBsCafwl9Z .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-ulsmb7FLdh {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #820405;
}
.cid-ulsmb7FLdh .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-ulsmb7FLdh .navbar-logo {
  width: 200px;
  margin-bottom: 5px;
  margin: auto;
}
.cid-ulsmb7FLdh .col + .mbr-section-btn .btn,
.cid-ulsmb7FLdh .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-ulsmb7FLdh .col + .mbr-section-btn .btn,
  .cid-ulsmb7FLdh .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-ulsmb7FLdh .dragArea > *:nth-last-child(2).col,
  .cid-ulsmb7FLdh .dragArea > *:nth-last-child(2).col-auto,
  .cid-ulsmb7FLdh .col + .mbr-section-btn,
  .cid-ulsmb7FLdh .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-ulsmb7FLdh .dragArea {
    flex-direction: column;
  }
}
.cid-ulsmb7FLdh .btn-primary {
  border: 1px solid #ff0228 !important;
}
.cid-ulsmb7FLdh .btn-primary:hover {
  border: 1px solid #ff0228 !important;
}
.cid-ulsmb7FLdh .stripe {
  border-bottom: 1px solid #ffffff;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-ulsmb7FLdh .form-group {
  max-width: 220px;
}
.cid-ulsmb7FLdh .mbr-section-btn {
  padding-left: 0;
}
.cid-ulsmb7FLdh .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-ulsmb7FLdh .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ffffff;
  width: 85%;
}
.cid-ulsmb7FLdh .mbr-text {
  color: #444;
}
.cid-ulsmb7FLdh h5 {
  margin-bottom: 0;
}
.cid-ulsmb7FLdh .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: left;
}
.cid-ulsmb7FLdh .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ulsmb7FLdh .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-ulsmb7FLdh .socicon {
  font-size: 1.3rem;
  background: #ffd04c;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ulsmb7FLdh .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-ulsmb7FLdh .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-ulsmb7FLdh .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-ulsmb7FLdh .social-list a:hover {
  opacity: 0.4;
}
.cid-ulsmb7FLdh .media-container-row > div {
  padding: 0px;
}
.cid-ulsmb7FLdh .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-ulsmb7FLdh .group-title {
  text-align: left;
  color: #ffd04c;
  padding-bottom: 0.2rem;
}
.cid-ulsmb7FLdh .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-ulsmb7FLdh .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-ulsmb7FLdh .social-list,
  .cid-ulsmb7FLdh .img-list {
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
  .cid-ulsmb7FLdh h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-ulsmb7FLdh .form-group {
    max-width: 180px;
  }
}
.cid-ulsmb7FLdh .links span {
  color: #9e9e9e;
}
.cid-ulsmb7FLdh .logo-sub-title {
  text-align: left;
}
.cid-ulsmb7FLdh .logo-title {
  text-align: left;
}
.cid-ulsmb7FLdh .logo-sub-title i {
  color: #9e9e9e;
}
.cid-ulsmb7FLdh .logo-title,
.cid-ulsmb7FLdh .logo {
  text-align: left;
  color: #ffffff;
}
.cid-uloaqkLnvd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffd04c;
}
.cid-uloaqkLnvd .media-container-row {
  align-items: center;
}
.cid-uloaqkLnvd .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uloaqkLnvd .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uloaqkLnvd .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uloaqkLnvd .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-uloaqkLnvd .foot-menu-item {
  transform: 0.2s;
}
.cid-uloaqkLnvd .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-uloaqkLnvd .foot-menu {
    justify-content: center;
  }
  .cid-uloaqkLnvd .mbr-text {
    text-align: center;
  }
  .cid-uloaqkLnvd .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uloaqkLnvd .foot-menu {
    justify-content: flex-end;
  }
}
.cid-uloaqkLnvd .link:hover {
  text-decoration: underline;
}
.cid-uloaqkLnvd .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #5b0000;
}
.cid-uloaqkLnvd .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-uloaqkLnvd .container {
    padding: 0;
  }
}
.cid-uloaqkLnvd .media-container-row .mbr-text {
  color: #5b0000;
  text-align: center;
}
.cid-ulo9LvLq0e .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-ulo9LvLq0e .collapsed {
  flex-direction: row!important;
}
.cid-ulo9LvLq0e .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulo9LvLq0e .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulo9LvLq0e .navbar-nav {
  margin: auto;
}
.cid-ulo9LvLq0e .navbar-brand {
  min-width: 15%;
  -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-ulo9LvLq0e .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulo9LvLq0e .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulo9LvLq0e .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-ulo9LvLq0e .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-ulo9LvLq0e .nav-item:focus,
.cid-ulo9LvLq0e .nav-link:focus {
  outline: none;
}
.cid-ulo9LvLq0e .text-white:hover,
.cid-ulo9LvLq0e .text-white:active,
.cid-ulo9LvLq0e .text-white:focus {
  color: white!important;
}
.cid-ulo9LvLq0e .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-ulo9LvLq0e .dropdown-item:hover {
  color: black!important;
}
.cid-ulo9LvLq0e .dropdown-menu {
  background-color: white!important;
}
.cid-ulo9LvLq0e .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-ulo9LvLq0e .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-ulo9LvLq0e .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-ulo9LvLq0e .nav-item .nav-link {
    position: relative;
  }
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #9e1916;
}
.cid-ulo9LvLq0e .navbar.opened {
  transition: all .3s;
  background: #9e1916 !important;
}
.cid-ulo9LvLq0e .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulo9LvLq0e .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulo9LvLq0e .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulo9LvLq0e .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulo9LvLq0e .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulo9LvLq0e .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulo9LvLq0e .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulo9LvLq0e .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulo9LvLq0e .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulo9LvLq0e .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulo9LvLq0e .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulo9LvLq0e .navbar.navbar-short {
  background: #9e1916 !important;
  min-height: 60px;
}
.cid-ulo9LvLq0e .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulo9LvLq0e .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulo9LvLq0e .navbar-caption {
  font-weight: 600!important;
}
.cid-ulo9LvLq0e .dropdown-item.active,
.cid-ulo9LvLq0e .dropdown-item:active {
  background-color: transparent;
}
.cid-ulo9LvLq0e .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ulo9LvLq0e .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ulo9LvLq0e .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ulo9LvLq0e .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9e1916;
}
.cid-ulo9LvLq0e .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulo9LvLq0e ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulo9LvLq0e .navbar-buttons {
  text-align: center;
}
.cid-ulo9LvLq0e button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffd04c;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulo9LvLq0e .nav-link {
  font-weight: 600!important;
}
.cid-ulo9LvLq0e a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ulo9LvLq0e .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulo9LvLq0e .navbar {
    height: 77px;
  }
  .cid-ulo9LvLq0e .navbar.opened {
    height: auto;
  }
  .cid-ulo9LvLq0e .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rBslGozFpp {
  padding-top: 60px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mangueira-de-incendio-min-985x585.jpg");
}
.cid-ulslqChWzA {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #820405;
}
.cid-ulslqChWzA H1 {
  color: #57468b;
}
.cid-ulslqChWzA .mbr-text,
.cid-ulslqChWzA .mbr-section-btn {
  color: #9e1916;
}
.cid-ulslqChWzA H3 {
  color: #716c80;
}
.cid-ulslqChWzA .mbr-text,
.cid-ulslqChWzA .mbr-section-btn B {
  color: #ffffff;
}
.cid-rBsqoaOfQD {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rBsqoaOfQD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rBsqoaOfQD .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-rBsqoaOfQD .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-rBsqoaOfQD .btn-primary-outline:active {
  color: gray;
}
.cid-rBsqoaOfQD .btn-primary-outline:hover {
  color: white;
}
.cid-rBsqoaOfQD .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-rBsqoaOfQD div {
  overflow: hidden;
}
.cid-rBsqoaOfQD .btn-primary-outline.active {
  color: white;
}
.cid-rBsqoaOfQD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rBsqoaOfQD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rBsqoaOfQD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rBsqoaOfQD .mbr-gallery-item {
  overflow: hidden;
}
.cid-rBsqoaOfQD .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-rBsqoaOfQD .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-rBsqoaOfQD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: #820405;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rBsqoaOfQD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rBsqoaOfQD .mbr-gallery-item > div:hover:before {
  opacity: 0.9 !important;
}
.cid-rBsqoaOfQD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rBsqoaOfQD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #820405 !important;
  opacity: 0.9;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-rBsqoaOfQD .mbr-gallery-item > div > span {
  text-align: center;
}
.cid-ulslpW6ukO {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #820405;
}
.cid-ulslpW6ukO .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-ulslpW6ukO .navbar-logo {
  width: 200px;
  margin-bottom: 5px;
  margin: auto;
}
.cid-ulslpW6ukO .col + .mbr-section-btn .btn,
.cid-ulslpW6ukO .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-ulslpW6ukO .col + .mbr-section-btn .btn,
  .cid-ulslpW6ukO .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-ulslpW6ukO .dragArea > *:nth-last-child(2).col,
  .cid-ulslpW6ukO .dragArea > *:nth-last-child(2).col-auto,
  .cid-ulslpW6ukO .col + .mbr-section-btn,
  .cid-ulslpW6ukO .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-ulslpW6ukO .dragArea {
    flex-direction: column;
  }
}
.cid-ulslpW6ukO .btn-primary {
  border: 1px solid #ff0228 !important;
}
.cid-ulslpW6ukO .btn-primary:hover {
  border: 1px solid #ff0228 !important;
}
.cid-ulslpW6ukO .stripe {
  border-bottom: 1px solid #ffffff;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-ulslpW6ukO .form-group {
  max-width: 220px;
}
.cid-ulslpW6ukO .mbr-section-btn {
  padding-left: 0;
}
.cid-ulslpW6ukO .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-ulslpW6ukO .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ffffff;
  width: 85%;
}
.cid-ulslpW6ukO .mbr-text {
  color: #444;
}
.cid-ulslpW6ukO h5 {
  margin-bottom: 0;
}
.cid-ulslpW6ukO .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: left;
}
.cid-ulslpW6ukO .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ulslpW6ukO .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-ulslpW6ukO .socicon {
  font-size: 1.3rem;
  background: #ffd04c;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ulslpW6ukO .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-ulslpW6ukO .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-ulslpW6ukO .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-ulslpW6ukO .social-list a:hover {
  opacity: 0.4;
}
.cid-ulslpW6ukO .media-container-row > div {
  padding: 0px;
}
.cid-ulslpW6ukO .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-ulslpW6ukO .group-title {
  text-align: left;
  color: #ffd04c;
  padding-bottom: 0.2rem;
}
.cid-ulslpW6ukO .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-ulslpW6ukO .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-ulslpW6ukO .social-list,
  .cid-ulslpW6ukO .img-list {
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
  .cid-ulslpW6ukO h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-ulslpW6ukO .form-group {
    max-width: 180px;
  }
}
.cid-ulslpW6ukO .links span {
  color: #9e9e9e;
}
.cid-ulslpW6ukO .logo-sub-title {
  text-align: left;
}
.cid-ulslpW6ukO .logo-title {
  text-align: left;
}
.cid-ulslpW6ukO .logo-sub-title i {
  color: #9e9e9e;
}
.cid-ulslpW6ukO .logo-title,
.cid-ulslpW6ukO .logo {
  text-align: left;
  color: #ffffff;
}
.cid-uloaqkLnvd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffd04c;
}
.cid-uloaqkLnvd .media-container-row {
  align-items: center;
}
.cid-uloaqkLnvd .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uloaqkLnvd .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uloaqkLnvd .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uloaqkLnvd .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-uloaqkLnvd .foot-menu-item {
  transform: 0.2s;
}
.cid-uloaqkLnvd .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-uloaqkLnvd .foot-menu {
    justify-content: center;
  }
  .cid-uloaqkLnvd .mbr-text {
    text-align: center;
  }
  .cid-uloaqkLnvd .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uloaqkLnvd .foot-menu {
    justify-content: flex-end;
  }
}
.cid-uloaqkLnvd .link:hover {
  text-decoration: underline;
}
.cid-uloaqkLnvd .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #5b0000;
}
.cid-uloaqkLnvd .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-uloaqkLnvd .container {
    padding: 0;
  }
}
.cid-uloaqkLnvd .media-container-row .mbr-text {
  color: #5b0000;
  text-align: center;
}
.cid-ulo9LvLq0e .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-ulo9LvLq0e .collapsed {
  flex-direction: row!important;
}
.cid-ulo9LvLq0e .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulo9LvLq0e .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulo9LvLq0e .navbar-nav {
  margin: auto;
}
.cid-ulo9LvLq0e .navbar-brand {
  min-width: 15%;
  -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-ulo9LvLq0e .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulo9LvLq0e .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulo9LvLq0e .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-ulo9LvLq0e .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-ulo9LvLq0e .nav-item:focus,
.cid-ulo9LvLq0e .nav-link:focus {
  outline: none;
}
.cid-ulo9LvLq0e .text-white:hover,
.cid-ulo9LvLq0e .text-white:active,
.cid-ulo9LvLq0e .text-white:focus {
  color: white!important;
}
.cid-ulo9LvLq0e .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-ulo9LvLq0e .dropdown-item:hover {
  color: black!important;
}
.cid-ulo9LvLq0e .dropdown-menu {
  background-color: white!important;
}
.cid-ulo9LvLq0e .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-ulo9LvLq0e .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-ulo9LvLq0e .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-ulo9LvLq0e .nav-item .nav-link {
    position: relative;
  }
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #9e1916;
}
.cid-ulo9LvLq0e .navbar.opened {
  transition: all .3s;
  background: #9e1916 !important;
}
.cid-ulo9LvLq0e .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulo9LvLq0e .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulo9LvLq0e .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulo9LvLq0e .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulo9LvLq0e .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulo9LvLq0e .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulo9LvLq0e .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulo9LvLq0e .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulo9LvLq0e .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulo9LvLq0e .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulo9LvLq0e .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulo9LvLq0e .navbar.navbar-short {
  background: #9e1916 !important;
  min-height: 60px;
}
.cid-ulo9LvLq0e .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulo9LvLq0e .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulo9LvLq0e .navbar-caption {
  font-weight: 600!important;
}
.cid-ulo9LvLq0e .dropdown-item.active,
.cid-ulo9LvLq0e .dropdown-item:active {
  background-color: transparent;
}
.cid-ulo9LvLq0e .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ulo9LvLq0e .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ulo9LvLq0e .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ulo9LvLq0e .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9e1916;
}
.cid-ulo9LvLq0e .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulo9LvLq0e ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulo9LvLq0e .navbar-buttons {
  text-align: center;
}
.cid-ulo9LvLq0e button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffd04c;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulo9LvLq0e .nav-link {
  font-weight: 600!important;
}
.cid-ulo9LvLq0e a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ulo9LvLq0e .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulo9LvLq0e .navbar {
    height: 77px;
  }
  .cid-ulo9LvLq0e .navbar.opened {
    height: auto;
  }
  .cid-ulo9LvLq0e .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rqs5hJrhH4 {
  padding-top: 180px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/treinamento-brigada-de-incendio-1280x668.jpg");
}
.cid-rqs6yvI6C7 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #3e0403;
}
.cid-rqs6yvI6C7 H1 {
  color: #ffffff;
}
.cid-rqs6yvI6C7 .mbr-text,
.cid-rqs6yvI6C7 .mbr-section-btn {
  color: #716c80;
}
.cid-rqs6yvI6C7 B {
  color: #ffffff;
}
.cid-rBsLNowJ0b {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rBsLNowJ0b img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-rBsLNowJ0b H1 {
  color: #232323;
}
.cid-rBsLNowJ0b .mbr-text,
.cid-rBsLNowJ0b .mbr-section-btn {
  color: #716c80;
}
.cid-rBsLNowJ0b H3 {
  color: #716c80;
}
.cid-rBsLNowJ0b .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-rBsLNowJ0b .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-rBsLNowJ0b .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-rBsLNowJ0b .link:hover {
  color: #ff0228 !important;
}
.cid-rBsLNowJ0b .link:hover .link-ico {
  color: #ff0228 !important;
  padding-left: 10px;
}
.cid-rBsLNowJ0b DIV {
  color: #57468b;
}
.cid-rBsLNowJ0b B {
  color: #9e1916;
}
.cid-rBsLNowJ0b .mbr-text,
.cid-rBsLNowJ0b .media-content {
  color: #232323;
}
.cid-rBsPaILfcu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rBsPaILfcu .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rBsPaILfcu .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-rBsPaILfcu .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-rBsPaILfcu .btn-primary-outline:active {
  color: gray;
}
.cid-rBsPaILfcu .btn-primary-outline:hover {
  color: white;
}
.cid-rBsPaILfcu .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-rBsPaILfcu div {
  overflow: hidden;
}
.cid-rBsPaILfcu .btn-primary-outline.active {
  color: white;
}
.cid-rBsPaILfcu .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rBsPaILfcu .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rBsPaILfcu .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rBsPaILfcu .mbr-gallery-item {
  overflow: hidden;
}
.cid-rBsPaILfcu .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-rBsPaILfcu .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-rBsPaILfcu .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rBsPaILfcu .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rBsPaILfcu .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-rBsPaILfcu .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rBsPaILfcu .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-rBBUB2vCmr {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #232323;
}
.cid-rBBUB2vCmr section {
  position: relative;
}
.cid-rBBUB2vCmr .container {
  max-width: 1400px;
}
.cid-rBBUB2vCmr .card-img2 span {
  padding-top: 6px;
}
.cid-rBBUB2vCmr .soc-item a {
  padding-top: 5px;
}
.cid-rBBUB2vCmr .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-rBBUB2vCmr .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-rBBUB2vCmr .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rBBUB2vCmr svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-rBBUB2vCmr #e2_shape {
  fill: #ffffff !important;
}
.cid-rBBUB2vCmr .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-rBBUB2vCmr .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-rBBUB2vCmr .card-img2 {
  width: 45px;
  height: 45px;
  background: #ffd04c;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-rBBUB2vCmr .soc-item {
  width: 45px;
  height: 45px;
  background: #fff4e8;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-rBBUB2vCmr .soc-item span {
  font-size: 1.4rem;
}
.cid-rBBUB2vCmr .soc-item:hover span {
  color: #ff0228 !important;
}
.cid-rBBUB2vCmr .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-rBBUB2vCmr .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-rBBUB2vCmr .media-wrap {
  margin-bottom: 1rem;
}
.cid-rBBUB2vCmr .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rBBUB2vCmr img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-rBBUB2vCmr .item {
    justify-content: center;
  }
  .cid-rBBUB2vCmr .quote::after {
    left: 60px;
  }
}
.cid-rBBUB2vCmr .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-rBBUB2vCmr .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rBBUB2vCmr .text1 {
  color: #ffffff;
  text-align: left;
}
.cid-rBBUB2vCmr .item-title {
  color: #ffffff;
}
.cid-rBBUB2vCmr H5 {
  color: #ffffff;
}
.cid-rBBUB2vCmr .theme {
  color: #ffffff;
}
.cid-rBBUB2vCmr .copyright > p {
  color: #ff3366;
}
.cid-rBBUB2vCmr .text2 {
  color: #ffffff;
}
.cid-uloaqkLnvd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffd04c;
}
.cid-uloaqkLnvd .media-container-row {
  align-items: center;
}
.cid-uloaqkLnvd .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uloaqkLnvd .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uloaqkLnvd .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uloaqkLnvd .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-uloaqkLnvd .foot-menu-item {
  transform: 0.2s;
}
.cid-uloaqkLnvd .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-uloaqkLnvd .foot-menu {
    justify-content: center;
  }
  .cid-uloaqkLnvd .mbr-text {
    text-align: center;
  }
  .cid-uloaqkLnvd .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uloaqkLnvd .foot-menu {
    justify-content: flex-end;
  }
}
.cid-uloaqkLnvd .link:hover {
  text-decoration: underline;
}
.cid-uloaqkLnvd .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #5b0000;
}
.cid-uloaqkLnvd .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-uloaqkLnvd .container {
    padding: 0;
  }
}
.cid-uloaqkLnvd .media-container-row .mbr-text {
  color: #5b0000;
  text-align: center;
}
.cid-ulo9LvLq0e .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-ulo9LvLq0e .collapsed {
  flex-direction: row!important;
}
.cid-ulo9LvLq0e .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulo9LvLq0e .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulo9LvLq0e .navbar-nav {
  margin: auto;
}
.cid-ulo9LvLq0e .navbar-brand {
  min-width: 15%;
  -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-ulo9LvLq0e .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulo9LvLq0e .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulo9LvLq0e .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-ulo9LvLq0e .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-ulo9LvLq0e .nav-item:focus,
.cid-ulo9LvLq0e .nav-link:focus {
  outline: none;
}
.cid-ulo9LvLq0e .text-white:hover,
.cid-ulo9LvLq0e .text-white:active,
.cid-ulo9LvLq0e .text-white:focus {
  color: white!important;
}
.cid-ulo9LvLq0e .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-ulo9LvLq0e .dropdown-item:hover {
  color: black!important;
}
.cid-ulo9LvLq0e .dropdown-menu {
  background-color: white!important;
}
.cid-ulo9LvLq0e .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-ulo9LvLq0e .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-ulo9LvLq0e .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-ulo9LvLq0e .nav-item .nav-link {
    position: relative;
  }
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #9e1916;
}
.cid-ulo9LvLq0e .navbar.opened {
  transition: all .3s;
  background: #9e1916 !important;
}
.cid-ulo9LvLq0e .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulo9LvLq0e .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulo9LvLq0e .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulo9LvLq0e .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulo9LvLq0e .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulo9LvLq0e .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulo9LvLq0e .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulo9LvLq0e .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulo9LvLq0e .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulo9LvLq0e .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulo9LvLq0e .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulo9LvLq0e .navbar.navbar-short {
  background: #9e1916 !important;
  min-height: 60px;
}
.cid-ulo9LvLq0e .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulo9LvLq0e .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulo9LvLq0e .navbar-caption {
  font-weight: 600!important;
}
.cid-ulo9LvLq0e .dropdown-item.active,
.cid-ulo9LvLq0e .dropdown-item:active {
  background-color: transparent;
}
.cid-ulo9LvLq0e .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ulo9LvLq0e .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ulo9LvLq0e .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ulo9LvLq0e .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9e1916;
}
.cid-ulo9LvLq0e .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulo9LvLq0e ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulo9LvLq0e .navbar-buttons {
  text-align: center;
}
.cid-ulo9LvLq0e button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffd04c;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulo9LvLq0e .nav-link {
  font-weight: 600!important;
}
.cid-ulo9LvLq0e a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ulo9LvLq0e .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulo9LvLq0e .navbar {
    height: 77px;
  }
  .cid-ulo9LvLq0e .navbar.opened {
    height: auto;
  }
  .cid-ulo9LvLq0e .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rBrdX0vaow {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1285.jpg");
}
.cid-rBrgHfqsxX {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rBrgHfqsxX H1 {
  color: #b60809;
  text-align: left;
}
.cid-rBrgHfqsxX .mbr-text,
.cid-rBrgHfqsxX .mbr-section-btn {
  color: #232323;
  text-align: left;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
.cid-rBrgHfqsxX img {
  width: 90%;
  border-radius: 10px;
  box-shadow: rgba(230, 206, 191, 0.7) -10px 10px 35px 5px;
  animation: line 3s ease-in-out infinite;
}
@media (max-width: 992px) {
  .cid-rBrgHfqsxX img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-rBrgHfqsxX H3 {
  color: #b60809;
  text-align: left;
}
.cid-rBrhnRgV7h {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rBrhnRgV7h .mbr-text {
  color: #232323;
}
.cid-rBrhnRgV7h .card-img span {
  font-size: 96px;
  color: #149dcc;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-rBrhnRgV7h .card-img .img1 {
  background-color: #147c0a;
}
.cid-rBrhnRgV7h .card-img .img2 {
  background-color: #147c0a;
}
.cid-rBrhnRgV7h .card-img .img3 {
  background-color: #147c0a;
}
.cid-rBrhnRgV7h .card-img .img4 {
  background-color: #ff8a73;
}
.cid-rBrhnRgV7h .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 1.5rem !important;
}
.cid-rBrhnRgV7h .card {
  display: flex;
  flex-direction: row;
  transition: all 0.3s;
  padding: 2rem 1.5rem !important;
}
.cid-rBrhnRgV7h .card:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  transform: translateY(-1.5rem);
}
.cid-rBrhnRgV7h .card-title,
.cid-rBrhnRgV7h .card-img {
  color: #57468b;
}
@media (max-width: 576px) {
  .cid-rBrhnRgV7h .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-rBrhnRgV7h .card .card-img {
    margin-bottom: 1rem;
  }
  .cid-rBrhnRgV7h .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-rBrhnRgV7h .card-img span {
    margin-right: 0rem;
  }
}
.cid-rBrhnRgV7h .card-title {
  color: #820405;
}
.cid-rBriPrPH10 {
  background-image: url("../../../assets/images/backgrund-1-1080x1080.jpg");
}
.cid-rBriPrPH10 .container {
  height: 40rem;
}
.cid-ulsbErRUct {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #820405;
}
.cid-ulsbErRUct .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-ulsbErRUct .navbar-logo {
  width: 200px;
  margin-bottom: 5px;
  margin: auto;
}
.cid-ulsbErRUct .col + .mbr-section-btn .btn,
.cid-ulsbErRUct .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-ulsbErRUct .col + .mbr-section-btn .btn,
  .cid-ulsbErRUct .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-ulsbErRUct .dragArea > *:nth-last-child(2).col,
  .cid-ulsbErRUct .dragArea > *:nth-last-child(2).col-auto,
  .cid-ulsbErRUct .col + .mbr-section-btn,
  .cid-ulsbErRUct .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-ulsbErRUct .dragArea {
    flex-direction: column;
  }
}
.cid-ulsbErRUct .btn-primary {
  border: 1px solid #ff0228 !important;
}
.cid-ulsbErRUct .btn-primary:hover {
  border: 1px solid #ff0228 !important;
}
.cid-ulsbErRUct .stripe {
  border-bottom: 1px solid #ffffff;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-ulsbErRUct .form-group {
  max-width: 220px;
}
.cid-ulsbErRUct .mbr-section-btn {
  padding-left: 0;
}
.cid-ulsbErRUct .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-ulsbErRUct .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ffffff;
  width: 85%;
}
.cid-ulsbErRUct .mbr-text {
  color: #444;
}
.cid-ulsbErRUct h5 {
  margin-bottom: 0;
}
.cid-ulsbErRUct .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: left;
}
.cid-ulsbErRUct .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ulsbErRUct .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-ulsbErRUct .socicon {
  font-size: 1.3rem;
  background: #ffd04c;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ulsbErRUct .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-ulsbErRUct .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-ulsbErRUct .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-ulsbErRUct .social-list a:hover {
  opacity: 0.4;
}
.cid-ulsbErRUct .media-container-row > div {
  padding: 0px;
}
.cid-ulsbErRUct .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-ulsbErRUct .group-title {
  text-align: left;
  color: #ffd04c;
  padding-bottom: 0.2rem;
}
.cid-ulsbErRUct .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-ulsbErRUct .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-ulsbErRUct .social-list,
  .cid-ulsbErRUct .img-list {
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
  .cid-ulsbErRUct h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-ulsbErRUct .form-group {
    max-width: 180px;
  }
}
.cid-ulsbErRUct .links span {
  color: #9e9e9e;
}
.cid-ulsbErRUct .logo-sub-title {
  text-align: left;
}
.cid-ulsbErRUct .logo-title {
  text-align: left;
}
.cid-ulsbErRUct .logo-sub-title i {
  color: #9e9e9e;
}
.cid-ulsbErRUct .logo-title,
.cid-ulsbErRUct .logo {
  text-align: left;
  color: #ffffff;
}
.cid-uloaqkLnvd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffd04c;
}
.cid-uloaqkLnvd .media-container-row {
  align-items: center;
}
.cid-uloaqkLnvd .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uloaqkLnvd .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uloaqkLnvd .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uloaqkLnvd .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-uloaqkLnvd .foot-menu-item {
  transform: 0.2s;
}
.cid-uloaqkLnvd .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-uloaqkLnvd .foot-menu {
    justify-content: center;
  }
  .cid-uloaqkLnvd .mbr-text {
    text-align: center;
  }
  .cid-uloaqkLnvd .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uloaqkLnvd .foot-menu {
    justify-content: flex-end;
  }
}
.cid-uloaqkLnvd .link:hover {
  text-decoration: underline;
}
.cid-uloaqkLnvd .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #5b0000;
}
.cid-uloaqkLnvd .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-uloaqkLnvd .container {
    padding: 0;
  }
}
.cid-uloaqkLnvd .media-container-row .mbr-text {
  color: #5b0000;
  text-align: center;
}
.cid-ulo9LvLq0e .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-ulo9LvLq0e .collapsed {
  flex-direction: row!important;
}
.cid-ulo9LvLq0e .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulo9LvLq0e .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulo9LvLq0e .navbar-nav {
  margin: auto;
}
.cid-ulo9LvLq0e .navbar-brand {
  min-width: 15%;
  -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-ulo9LvLq0e .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulo9LvLq0e .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulo9LvLq0e .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-ulo9LvLq0e .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-ulo9LvLq0e .nav-item:focus,
.cid-ulo9LvLq0e .nav-link:focus {
  outline: none;
}
.cid-ulo9LvLq0e .text-white:hover,
.cid-ulo9LvLq0e .text-white:active,
.cid-ulo9LvLq0e .text-white:focus {
  color: white!important;
}
.cid-ulo9LvLq0e .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-ulo9LvLq0e .dropdown-item:hover {
  color: black!important;
}
.cid-ulo9LvLq0e .dropdown-menu {
  background-color: white!important;
}
.cid-ulo9LvLq0e .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-ulo9LvLq0e .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-ulo9LvLq0e .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-ulo9LvLq0e .nav-item .nav-link {
    position: relative;
  }
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #9e1916;
}
.cid-ulo9LvLq0e .navbar.opened {
  transition: all .3s;
  background: #9e1916 !important;
}
.cid-ulo9LvLq0e .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulo9LvLq0e .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulo9LvLq0e .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulo9LvLq0e .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulo9LvLq0e .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulo9LvLq0e .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulo9LvLq0e .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulo9LvLq0e .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulo9LvLq0e .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulo9LvLq0e .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulo9LvLq0e .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulo9LvLq0e .navbar.navbar-short {
  background: #9e1916 !important;
  min-height: 60px;
}
.cid-ulo9LvLq0e .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulo9LvLq0e .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulo9LvLq0e .navbar-caption {
  font-weight: 600!important;
}
.cid-ulo9LvLq0e .dropdown-item.active,
.cid-ulo9LvLq0e .dropdown-item:active {
  background-color: transparent;
}
.cid-ulo9LvLq0e .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ulo9LvLq0e .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ulo9LvLq0e .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ulo9LvLq0e .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9e1916;
}
.cid-ulo9LvLq0e .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulo9LvLq0e ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulo9LvLq0e .navbar-buttons {
  text-align: center;
}
.cid-ulo9LvLq0e button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffd04c;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulo9LvLq0e .nav-link {
  font-weight: 600!important;
}
.cid-ulo9LvLq0e a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ulo9LvLq0e .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulo9LvLq0e .navbar {
    height: 77px;
  }
  .cid-ulo9LvLq0e .navbar.opened {
    height: auto;
  }
  .cid-ulo9LvLq0e .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rpHR0uvkVg {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-3-1920x1280.jpg");
}
.cid-rpHR0uvkVg H1 {
  text-align: left;
}
.cid-rBGd92EQmA {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rBGd92EQmA img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-rBGd92EQmA H1 {
  color: #b60809;
  text-align: left;
}
.cid-rBGd92EQmA .mbr-text,
.cid-rBGd92EQmA .mbr-section-btn {
  color: #716c80;
}
.cid-rBGd92EQmA H3 {
  color: #716c80;
}
.cid-rBGd92EQmA .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-rBGd92EQmA .btn-info-outline {
  border: none;
  color: #147c0a !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-rBGd92EQmA .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-rBGd92EQmA .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-rBGd92EQmA .btn-info-outline:hover {
  background-color: transparent!important;
  color: #ff0228 !important;
  box-shadow: none!important;
}
.cid-rBGd92EQmA .btn-info-outline:active,
.cid-rBGd92EQmA .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-rBGd92EQmA DIV {
  color: #57468b;
}
.cid-rBGd92EQmA .mbr-text,
.cid-rBGd92EQmA .media-content,
.cid-rBGd92EQmA .mbr-section-btn {
  color: #010101;
  text-align: left;
}
.cid-ulsrY1hNjY {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #820405;
}
.cid-ulsrY1hNjY .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-ulsrY1hNjY .navbar-logo {
  width: 200px;
  margin-bottom: 5px;
  margin: auto;
}
.cid-ulsrY1hNjY .col + .mbr-section-btn .btn,
.cid-ulsrY1hNjY .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-ulsrY1hNjY .col + .mbr-section-btn .btn,
  .cid-ulsrY1hNjY .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-ulsrY1hNjY .dragArea > *:nth-last-child(2).col,
  .cid-ulsrY1hNjY .dragArea > *:nth-last-child(2).col-auto,
  .cid-ulsrY1hNjY .col + .mbr-section-btn,
  .cid-ulsrY1hNjY .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-ulsrY1hNjY .dragArea {
    flex-direction: column;
  }
}
.cid-ulsrY1hNjY .btn-primary {
  border: 1px solid #ff0228 !important;
}
.cid-ulsrY1hNjY .btn-primary:hover {
  border: 1px solid #ff0228 !important;
}
.cid-ulsrY1hNjY .stripe {
  border-bottom: 1px solid #ffffff;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-ulsrY1hNjY .form-group {
  max-width: 220px;
}
.cid-ulsrY1hNjY .mbr-section-btn {
  padding-left: 0;
}
.cid-ulsrY1hNjY .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-ulsrY1hNjY .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ffffff;
  width: 85%;
}
.cid-ulsrY1hNjY .mbr-text {
  color: #444;
}
.cid-ulsrY1hNjY h5 {
  margin-bottom: 0;
}
.cid-ulsrY1hNjY .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: left;
}
.cid-ulsrY1hNjY .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ulsrY1hNjY .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-ulsrY1hNjY .socicon {
  font-size: 1.3rem;
  background: #ffd04c;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ulsrY1hNjY .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-ulsrY1hNjY .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-ulsrY1hNjY .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-ulsrY1hNjY .social-list a:hover {
  opacity: 0.4;
}
.cid-ulsrY1hNjY .media-container-row > div {
  padding: 0px;
}
.cid-ulsrY1hNjY .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-ulsrY1hNjY .group-title {
  text-align: left;
  color: #ffd04c;
  padding-bottom: 0.2rem;
}
.cid-ulsrY1hNjY .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-ulsrY1hNjY .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-ulsrY1hNjY .social-list,
  .cid-ulsrY1hNjY .img-list {
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
  .cid-ulsrY1hNjY h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-ulsrY1hNjY .form-group {
    max-width: 180px;
  }
}
.cid-ulsrY1hNjY .links span {
  color: #9e9e9e;
}
.cid-ulsrY1hNjY .logo-sub-title {
  text-align: left;
}
.cid-ulsrY1hNjY .logo-title {
  text-align: left;
}
.cid-ulsrY1hNjY .logo-sub-title i {
  color: #9e9e9e;
}
.cid-ulsrY1hNjY .logo-title,
.cid-ulsrY1hNjY .logo {
  text-align: left;
  color: #ffffff;
}
.cid-uloaqkLnvd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffd04c;
}
.cid-uloaqkLnvd .media-container-row {
  align-items: center;
}
.cid-uloaqkLnvd .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uloaqkLnvd .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uloaqkLnvd .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uloaqkLnvd .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-uloaqkLnvd .foot-menu-item {
  transform: 0.2s;
}
.cid-uloaqkLnvd .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-uloaqkLnvd .foot-menu {
    justify-content: center;
  }
  .cid-uloaqkLnvd .mbr-text {
    text-align: center;
  }
  .cid-uloaqkLnvd .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uloaqkLnvd .foot-menu {
    justify-content: flex-end;
  }
}
.cid-uloaqkLnvd .link:hover {
  text-decoration: underline;
}
.cid-uloaqkLnvd .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #5b0000;
}
.cid-uloaqkLnvd .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-uloaqkLnvd .container {
    padding: 0;
  }
}
.cid-uloaqkLnvd .media-container-row .mbr-text {
  color: #5b0000;
  text-align: center;
}
.cid-ulo9LvLq0e .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-ulo9LvLq0e .collapsed {
  flex-direction: row!important;
}
.cid-ulo9LvLq0e .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulo9LvLq0e .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulo9LvLq0e .navbar-nav {
  margin: auto;
}
.cid-ulo9LvLq0e .navbar-brand {
  min-width: 15%;
  -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-ulo9LvLq0e .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulo9LvLq0e .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulo9LvLq0e .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-ulo9LvLq0e .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-ulo9LvLq0e .nav-item:focus,
.cid-ulo9LvLq0e .nav-link:focus {
  outline: none;
}
.cid-ulo9LvLq0e .text-white:hover,
.cid-ulo9LvLq0e .text-white:active,
.cid-ulo9LvLq0e .text-white:focus {
  color: white!important;
}
.cid-ulo9LvLq0e .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-ulo9LvLq0e .dropdown-item:hover {
  color: black!important;
}
.cid-ulo9LvLq0e .dropdown-menu {
  background-color: white!important;
}
.cid-ulo9LvLq0e .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-ulo9LvLq0e .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-ulo9LvLq0e .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-ulo9LvLq0e .nav-item .nav-link {
    position: relative;
  }
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #9e1916;
}
.cid-ulo9LvLq0e .navbar.opened {
  transition: all .3s;
  background: #9e1916 !important;
}
.cid-ulo9LvLq0e .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulo9LvLq0e .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulo9LvLq0e .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulo9LvLq0e .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulo9LvLq0e .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulo9LvLq0e .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulo9LvLq0e .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulo9LvLq0e .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulo9LvLq0e .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulo9LvLq0e .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulo9LvLq0e .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulo9LvLq0e .navbar.navbar-short {
  background: #9e1916 !important;
  min-height: 60px;
}
.cid-ulo9LvLq0e .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulo9LvLq0e .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulo9LvLq0e .navbar-caption {
  font-weight: 600!important;
}
.cid-ulo9LvLq0e .dropdown-item.active,
.cid-ulo9LvLq0e .dropdown-item:active {
  background-color: transparent;
}
.cid-ulo9LvLq0e .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ulo9LvLq0e .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ulo9LvLq0e .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ulo9LvLq0e .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9e1916;
}
.cid-ulo9LvLq0e .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulo9LvLq0e ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulo9LvLq0e .navbar-buttons {
  text-align: center;
}
.cid-ulo9LvLq0e button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffd04c;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulo9LvLq0e .nav-link {
  font-weight: 600!important;
}
.cid-ulo9LvLq0e a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ulo9LvLq0e .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulo9LvLq0e .navbar {
    height: 77px;
  }
  .cid-ulo9LvLq0e .navbar.opened {
    height: auto;
  }
  .cid-ulo9LvLq0e .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rooPoezkUr {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-4-1920x1280.jpg");
}
.cid-rooPoezkUr H1 {
  color: #ffffff;
}
.cid-rooPoezkUr .mbr-text,
.cid-rooPoezkUr .mbr-section-btn {
  color: #716c80;
}
.cid-rooPoezkUr H3 {
  color: #716c80;
}
.cid-rooYPGRGyo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #820405;
}
.cid-rooYPGRGyo .mbr-text {
  color: #efefef;
}
.cid-rooYPGRGyo .card-img span {
  font-size: 96px;
  color: #149dcc;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-rooYPGRGyo p {
  margin: 0;
}
.cid-rooYPGRGyo .mbr-iconfont {
  transition: all 0.3s;
  color: #ffd04c !important;
  font-size: 2.8rem !important;
}
.cid-rooYPGRGyo .card {
  display: flex;
  flex-direction: row;
  transition: all 0.3s;
  padding: 2rem 1.5rem !important;
}
.cid-rooYPGRGyo .card:hover .mbr-iconfont {
  color: #ff0228 !important;
}
.cid-rooYPGRGyo .card-title,
.cid-rooYPGRGyo .card-img {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-rooYPGRGyo .card {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .cid-rooYPGRGyo .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-rooYPGRGyo .card .card-img {
    margin-bottom: 1rem;
  }
  .cid-rooYPGRGyo .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-rooYPGRGyo .card-img span {
    margin-right: 0rem;
  }
  .cid-rooYPGRGyo .cardcolor:hover {
    background-color: transparent;
  }
}
.cid-rooYPGRGyo .card-title {
  color: #ffffff;
}
.cid-rooQxSKhqj {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rooQxSKhqj .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.6;
}
.cid-rooQxSKhqj input,
.cid-rooQxSKhqj textarea {
  padding: 0.4rem 1.4rem!important;
  border-radius: 10px;
}
.cid-rooQxSKhqj img {
  width: 90%;
  border-radius: 8px;
}
.cid-rooQxSKhqj .btn {
  border-radius: 30px;
  padding: 0.6rem 3rem!important;
}
.cid-rooQxSKhqj textarea {
  min-height: 160px;
}
.cid-rooQxSKhqj .form-control,
.cid-rooQxSKhqj .field-input {
  padding: 0.5rem;
  background-color: #f2f6ff;
  border-color: #b60809;
  color: #232323;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-rooQxSKhqj .form-control:hover,
.cid-rooQxSKhqj .field-input:hover,
.cid-rooQxSKhqj .form-control:focus,
.cid-rooQxSKhqj .field-input:focus {
  background-color: #cccccc;
  border-color: #ffffff;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-rooQxSKhqj input::-webkit-input-placeholder,
.cid-rooQxSKhqj textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-rooQxSKhqj input:-moz-placeholder,
.cid-rooQxSKhqj textarea:-moz-placeholder {
  color: #232323;
}
.cid-rooQxSKhqj .jq-selectbox li,
.cid-rooQxSKhqj .jq-selectbox li {
  background-color: #f2f6ff;
  color: #000000;
}
.cid-rooQxSKhqj .jq-selectbox li:hover,
.cid-rooQxSKhqj .jq-selectbox li.selected {
  background-color: #cccccc;
  color: #000000;
}
.cid-rooQxSKhqj .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f2f6ff;
}
.cid-rooQxSKhqj .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #cccccc;
}
.cid-rooQxSKhqj H5 {
  color: #820405;
  padding-bottom: 2rem;
}
@media (max-width: 992px) {
  .cid-rooQxSKhqj img {
    width: 100%;
  }
  .cid-rooQxSKhqj .google-map {
    margin-bottom: 2rem;
  }
}
.cid-rooQxSKhqj .google-map {
  height: 33rem;
  position: relative;
}
.cid-rooQxSKhqj .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-rooQxSKhqj .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-rooQxSKhqj .google-map[data-state] {
  background: #e9e5dc;
}
.cid-rooQxSKhqj .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 576px) {
  .cid-rooQxSKhqj .col-auto {
    width: 100%;
    text-align: center;
  }
}
.cid-ulseVGpEIe {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #820405;
}
.cid-ulseVGpEIe .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-ulseVGpEIe .navbar-logo {
  width: 200px;
  margin-bottom: 5px;
  margin: auto;
}
.cid-ulseVGpEIe .col + .mbr-section-btn .btn,
.cid-ulseVGpEIe .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-ulseVGpEIe .col + .mbr-section-btn .btn,
  .cid-ulseVGpEIe .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-ulseVGpEIe .dragArea > *:nth-last-child(2).col,
  .cid-ulseVGpEIe .dragArea > *:nth-last-child(2).col-auto,
  .cid-ulseVGpEIe .col + .mbr-section-btn,
  .cid-ulseVGpEIe .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-ulseVGpEIe .dragArea {
    flex-direction: column;
  }
}
.cid-ulseVGpEIe .btn-primary {
  border: 1px solid #ff0228 !important;
}
.cid-ulseVGpEIe .btn-primary:hover {
  border: 1px solid #ff0228 !important;
}
.cid-ulseVGpEIe .stripe {
  border-bottom: 1px solid #ffffff;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-ulseVGpEIe .form-group {
  max-width: 220px;
}
.cid-ulseVGpEIe .mbr-section-btn {
  padding-left: 0;
}
.cid-ulseVGpEIe .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-ulseVGpEIe .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ffffff;
  width: 85%;
}
.cid-ulseVGpEIe .mbr-text {
  color: #444;
}
.cid-ulseVGpEIe h5 {
  margin-bottom: 0;
}
.cid-ulseVGpEIe .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: left;
}
.cid-ulseVGpEIe .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ulseVGpEIe .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-ulseVGpEIe .socicon {
  font-size: 1.3rem;
  background: #ffd04c;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ulseVGpEIe .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-ulseVGpEIe .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-ulseVGpEIe .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-ulseVGpEIe .social-list a:hover {
  opacity: 0.4;
}
.cid-ulseVGpEIe .media-container-row > div {
  padding: 0px;
}
.cid-ulseVGpEIe .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-ulseVGpEIe .group-title {
  text-align: left;
  color: #ffd04c;
  padding-bottom: 0.2rem;
}
.cid-ulseVGpEIe .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-ulseVGpEIe .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-ulseVGpEIe .social-list,
  .cid-ulseVGpEIe .img-list {
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
  .cid-ulseVGpEIe h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-ulseVGpEIe .form-group {
    max-width: 180px;
  }
}
.cid-ulseVGpEIe .links span {
  color: #9e9e9e;
}
.cid-ulseVGpEIe .logo-sub-title {
  text-align: left;
}
.cid-ulseVGpEIe .logo-title {
  text-align: left;
}
.cid-ulseVGpEIe .logo-sub-title i {
  color: #9e9e9e;
}
.cid-ulseVGpEIe .logo-title,
.cid-ulseVGpEIe .logo {
  text-align: left;
  color: #ffffff;
}
.cid-uloaqkLnvd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffd04c;
}
.cid-uloaqkLnvd .media-container-row {
  align-items: center;
}
.cid-uloaqkLnvd .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uloaqkLnvd .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uloaqkLnvd .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uloaqkLnvd .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-uloaqkLnvd .foot-menu-item {
  transform: 0.2s;
}
.cid-uloaqkLnvd .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-uloaqkLnvd .foot-menu {
    justify-content: center;
  }
  .cid-uloaqkLnvd .mbr-text {
    text-align: center;
  }
  .cid-uloaqkLnvd .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uloaqkLnvd .foot-menu {
    justify-content: flex-end;
  }
}
.cid-uloaqkLnvd .link:hover {
  text-decoration: underline;
}
.cid-uloaqkLnvd .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #5b0000;
}
.cid-uloaqkLnvd .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-uloaqkLnvd .container {
    padding: 0;
  }
}
.cid-uloaqkLnvd .media-container-row .mbr-text {
  color: #5b0000;
  text-align: center;
}
.cid-ulo9LvLq0e .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-ulo9LvLq0e .collapsed {
  flex-direction: row!important;
}
.cid-ulo9LvLq0e .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulo9LvLq0e .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulo9LvLq0e .navbar-nav {
  margin: auto;
}
.cid-ulo9LvLq0e .navbar-brand {
  min-width: 15%;
  -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-ulo9LvLq0e .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulo9LvLq0e .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulo9LvLq0e .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-ulo9LvLq0e .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-ulo9LvLq0e .nav-item:focus,
.cid-ulo9LvLq0e .nav-link:focus {
  outline: none;
}
.cid-ulo9LvLq0e .text-white:hover,
.cid-ulo9LvLq0e .text-white:active,
.cid-ulo9LvLq0e .text-white:focus {
  color: white!important;
}
.cid-ulo9LvLq0e .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-ulo9LvLq0e .dropdown-item:hover {
  color: black!important;
}
.cid-ulo9LvLq0e .dropdown-menu {
  background-color: white!important;
}
.cid-ulo9LvLq0e .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-ulo9LvLq0e .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-ulo9LvLq0e .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-ulo9LvLq0e .nav-item .nav-link {
    position: relative;
  }
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-ulo9LvLq0e .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #9e1916;
}
.cid-ulo9LvLq0e .navbar.opened {
  transition: all .3s;
  background: #9e1916 !important;
}
.cid-ulo9LvLq0e .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulo9LvLq0e .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulo9LvLq0e .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulo9LvLq0e .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulo9LvLq0e .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulo9LvLq0e .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulo9LvLq0e .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulo9LvLq0e .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulo9LvLq0e .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-ulo9LvLq0e .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulo9LvLq0e .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulo9LvLq0e .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulo9LvLq0e .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulo9LvLq0e .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulo9LvLq0e .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulo9LvLq0e .navbar.navbar-short {
  background: #9e1916 !important;
  min-height: 60px;
}
.cid-ulo9LvLq0e .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulo9LvLq0e .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulo9LvLq0e .navbar-caption {
  font-weight: 600!important;
}
.cid-ulo9LvLq0e .dropdown-item.active,
.cid-ulo9LvLq0e .dropdown-item:active {
  background-color: transparent;
}
.cid-ulo9LvLq0e .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ulo9LvLq0e .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ulo9LvLq0e .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ulo9LvLq0e .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9e1916;
}
.cid-ulo9LvLq0e .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulo9LvLq0e ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulo9LvLq0e .navbar-buttons {
  text-align: center;
}
.cid-ulo9LvLq0e button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffd04c;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulo9LvLq0e button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulo9LvLq0e nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulo9LvLq0e .nav-link {
  font-weight: 600!important;
}
.cid-ulo9LvLq0e a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ulo9LvLq0e .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ulo9LvLq0e .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-ulo9LvLq0e .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulo9LvLq0e .navbar {
    height: 77px;
  }
  .cid-ulo9LvLq0e .navbar.opened {
    height: auto;
  }
  .cid-ulo9LvLq0e .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rqnd3MjNfh {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/artigo-extintor-1-1200x630.jpg");
}
.cid-ulsqo0omC6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-ulsqo0omC6 .row {
  flex-direction: row-reverse;
}
.cid-ulsqo0omC6 .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-ulsqo0omC6 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #ff0228;
}
.cid-ulsqo0omC6 .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-ulsqo0omC6 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-ulsqo0omC6 .mbr-section-title {
  color: #b60809;
  text-align: left;
}
@media (min-width: 1400px) {
  .cid-ulsqo0omC6 .col-12 {
    padding: 0 2rem;
  }
  .cid-ulsqo0omC6 .row {
    margin: 0 -2rem;
  }
}
.cid-ulsqo0omC6 .mbr-text,
.cid-ulsqo0omC6 .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-ulsqO6CMm8 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-ulsqO6CMm8 .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-ulsqO6CMm8 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #ff0228;
}
.cid-ulsqO6CMm8 .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-ulsqO6CMm8 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-ulsqO6CMm8 .mbr-section-title {
  color: #b60809;
  text-align: left;
}
@media (min-width: 1400px) {
  .cid-ulsqO6CMm8 .col-12 {
    padding: 0 2rem;
  }
  .cid-ulsqO6CMm8 .row {
    margin: 0 -2rem;
  }
}
.cid-ulsqO6CMm8 .mbr-text,
.cid-ulsqO6CMm8 .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-rBr0hYU97x {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rBr0hYU97x .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rBr0hYU97x .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-rBr0hYU97x .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-rBr0hYU97x .btn-primary-outline:active {
  color: gray;
}
.cid-rBr0hYU97x .btn-primary-outline:hover {
  color: white;
}
.cid-rBr0hYU97x div {
  overflow: hidden;
}
.cid-rBr0hYU97x .btn-primary-outline.active {
  color: white;
}
.cid-rBr0hYU97x .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rBr0hYU97x .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rBr0hYU97x .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rBr0hYU97x .mbr-gallery-item {
  overflow: hidden;
}
.cid-rBr0hYU97x .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-rBr0hYU97x .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-rBr0hYU97x .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-rBr0hYU97x .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-rBr0hYU97x .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rBr0hYU97x .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-rBr0hYU97x .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rBr0hYU97x .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-ulsrFb2Kfh {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #820405;
}
.cid-ulsrFb2Kfh .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-ulsrFb2Kfh .navbar-logo {
  width: 200px;
  margin-bottom: 5px;
  margin: auto;
}
.cid-ulsrFb2Kfh .col + .mbr-section-btn .btn,
.cid-ulsrFb2Kfh .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-ulsrFb2Kfh .col + .mbr-section-btn .btn,
  .cid-ulsrFb2Kfh .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-ulsrFb2Kfh .dragArea > *:nth-last-child(2).col,
  .cid-ulsrFb2Kfh .dragArea > *:nth-last-child(2).col-auto,
  .cid-ulsrFb2Kfh .col + .mbr-section-btn,
  .cid-ulsrFb2Kfh .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-ulsrFb2Kfh .dragArea {
    flex-direction: column;
  }
}
.cid-ulsrFb2Kfh .btn-primary {
  border: 1px solid #ff0228 !important;
}
.cid-ulsrFb2Kfh .btn-primary:hover {
  border: 1px solid #ff0228 !important;
}
.cid-ulsrFb2Kfh .stripe {
  border-bottom: 1px solid #ffffff;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-ulsrFb2Kfh .form-group {
  max-width: 220px;
}
.cid-ulsrFb2Kfh .mbr-section-btn {
  padding-left: 0;
}
.cid-ulsrFb2Kfh .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-ulsrFb2Kfh .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ffffff;
  width: 85%;
}
.cid-ulsrFb2Kfh .mbr-text {
  color: #444;
}
.cid-ulsrFb2Kfh h5 {
  margin-bottom: 0;
}
.cid-ulsrFb2Kfh .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: left;
}
.cid-ulsrFb2Kfh .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ulsrFb2Kfh .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-ulsrFb2Kfh .socicon {
  font-size: 1.3rem;
  background: #ffd04c;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ulsrFb2Kfh .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-ulsrFb2Kfh .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-ulsrFb2Kfh .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-ulsrFb2Kfh .social-list a:hover {
  opacity: 0.4;
}
.cid-ulsrFb2Kfh .media-container-row > div {
  padding: 0px;
}
.cid-ulsrFb2Kfh .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-ulsrFb2Kfh .group-title {
  text-align: left;
  color: #ffd04c;
  padding-bottom: 0.2rem;
}
.cid-ulsrFb2Kfh .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-ulsrFb2Kfh .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-ulsrFb2Kfh .social-list,
  .cid-ulsrFb2Kfh .img-list {
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
  .cid-ulsrFb2Kfh h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-ulsrFb2Kfh .form-group {
    max-width: 180px;
  }
}
.cid-ulsrFb2Kfh .links span {
  color: #9e9e9e;
}
.cid-ulsrFb2Kfh .logo-sub-title {
  text-align: left;
}
.cid-ulsrFb2Kfh .logo-title {
  text-align: left;
}
.cid-ulsrFb2Kfh .logo-sub-title i {
  color: #9e9e9e;
}
.cid-ulsrFb2Kfh .logo-title,
.cid-ulsrFb2Kfh .logo {
  text-align: left;
  color: #ffffff;
}
.cid-uloaqkLnvd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffd04c;
}
.cid-uloaqkLnvd .media-container-row {
  align-items: center;
}
.cid-uloaqkLnvd .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uloaqkLnvd .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uloaqkLnvd .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uloaqkLnvd .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-uloaqkLnvd .foot-menu-item {
  transform: 0.2s;
}
.cid-uloaqkLnvd .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-uloaqkLnvd .foot-menu {
    justify-content: center;
  }
  .cid-uloaqkLnvd .mbr-text {
    text-align: center;
  }
  .cid-uloaqkLnvd .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uloaqkLnvd .foot-menu {
    justify-content: flex-end;
  }
}
.cid-uloaqkLnvd .link:hover {
  text-decoration: underline;
}
.cid-uloaqkLnvd .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #5b0000;
}
.cid-uloaqkLnvd .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-uloaqkLnvd .container {
    padding: 0;
  }
}
.cid-uloaqkLnvd .media-container-row .mbr-text {
  color: #5b0000;
  text-align: center;
}
.cid-ulEgUXQjuC .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-ulEgUXQjuC .collapsed {
  flex-direction: row!important;
}
.cid-ulEgUXQjuC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulEgUXQjuC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulEgUXQjuC .navbar-nav {
  margin: auto;
}
.cid-ulEgUXQjuC .navbar-brand {
  min-width: 15%;
  -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-ulEgUXQjuC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulEgUXQjuC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulEgUXQjuC .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-ulEgUXQjuC .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-ulEgUXQjuC .nav-item:focus,
.cid-ulEgUXQjuC .nav-link:focus {
  outline: none;
}
.cid-ulEgUXQjuC .text-white:hover,
.cid-ulEgUXQjuC .text-white:active,
.cid-ulEgUXQjuC .text-white:focus {
  color: white!important;
}
.cid-ulEgUXQjuC .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-ulEgUXQjuC .dropdown-item:hover {
  color: black!important;
}
.cid-ulEgUXQjuC .dropdown-menu {
  background-color: white!important;
}
.cid-ulEgUXQjuC .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-ulEgUXQjuC .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-ulEgUXQjuC .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-ulEgUXQjuC .nav-item .nav-link {
    position: relative;
  }
}
.cid-ulEgUXQjuC .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-ulEgUXQjuC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulEgUXQjuC .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-ulEgUXQjuC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ulEgUXQjuC .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-ulEgUXQjuC .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #9e1916;
}
.cid-ulEgUXQjuC .navbar.opened {
  transition: all .3s;
  background: #9e1916 !important;
}
.cid-ulEgUXQjuC .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulEgUXQjuC .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulEgUXQjuC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulEgUXQjuC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ulEgUXQjuC .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulEgUXQjuC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulEgUXQjuC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulEgUXQjuC .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-ulEgUXQjuC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulEgUXQjuC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulEgUXQjuC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulEgUXQjuC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulEgUXQjuC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulEgUXQjuC .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulEgUXQjuC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulEgUXQjuC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulEgUXQjuC .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-ulEgUXQjuC .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulEgUXQjuC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulEgUXQjuC .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulEgUXQjuC .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulEgUXQjuC .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulEgUXQjuC .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulEgUXQjuC .navbar.navbar-short {
  background: #9e1916 !important;
  min-height: 60px;
}
.cid-ulEgUXQjuC .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulEgUXQjuC .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulEgUXQjuC .navbar-caption {
  font-weight: 600!important;
}
.cid-ulEgUXQjuC .dropdown-item.active,
.cid-ulEgUXQjuC .dropdown-item:active {
  background-color: transparent;
}
.cid-ulEgUXQjuC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ulEgUXQjuC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ulEgUXQjuC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ulEgUXQjuC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9e1916;
}
.cid-ulEgUXQjuC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulEgUXQjuC ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulEgUXQjuC .navbar-buttons {
  text-align: center;
}
.cid-ulEgUXQjuC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulEgUXQjuC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffd04c;
}
.cid-ulEgUXQjuC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulEgUXQjuC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulEgUXQjuC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulEgUXQjuC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulEgUXQjuC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulEgUXQjuC nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulEgUXQjuC nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulEgUXQjuC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulEgUXQjuC .nav-link {
  font-weight: 600!important;
}
.cid-ulEgUXQjuC a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ulEgUXQjuC .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ulEgUXQjuC .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-ulEgUXQjuC .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulEgUXQjuC .navbar {
    height: 77px;
  }
  .cid-ulEgUXQjuC .navbar.opened {
    height: auto;
  }
  .cid-ulEgUXQjuC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulEgUYZD0w {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1283.jpg");
}
.cid-ulEgUYZD0w H1 {
  text-align: left;
}
.cid-ulEgV029aB {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-ulEgV029aB img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-ulEgV029aB H1 {
  color: #b60809;
  text-align: left;
}
.cid-ulEgV029aB .mbr-text,
.cid-ulEgV029aB .mbr-section-btn {
  color: #716c80;
}
.cid-ulEgV029aB H3 {
  color: #716c80;
}
.cid-ulEgV029aB .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-ulEgV029aB .btn-info-outline {
  border: none;
  color: #147c0a !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-ulEgV029aB .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-ulEgV029aB .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-ulEgV029aB .btn-info-outline:hover {
  background-color: transparent!important;
  color: #ff0228 !important;
  box-shadow: none!important;
}
.cid-ulEgV029aB .btn-info-outline:active,
.cid-ulEgV029aB .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-ulEgV029aB DIV {
  color: #57468b;
}
.cid-ulEgV029aB .mbr-text,
.cid-ulEgV029aB .media-content,
.cid-ulEgV029aB .mbr-section-btn {
  color: #010101;
  text-align: left;
}
.cid-ulEgV0EzOs {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #820405;
}
.cid-ulEgV0EzOs .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-ulEgV0EzOs .navbar-logo {
  width: 200px;
  margin-bottom: 5px;
  margin: auto;
}
.cid-ulEgV0EzOs .col + .mbr-section-btn .btn,
.cid-ulEgV0EzOs .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-ulEgV0EzOs .col + .mbr-section-btn .btn,
  .cid-ulEgV0EzOs .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-ulEgV0EzOs .dragArea > *:nth-last-child(2).col,
  .cid-ulEgV0EzOs .dragArea > *:nth-last-child(2).col-auto,
  .cid-ulEgV0EzOs .col + .mbr-section-btn,
  .cid-ulEgV0EzOs .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-ulEgV0EzOs .dragArea {
    flex-direction: column;
  }
}
.cid-ulEgV0EzOs .btn-primary {
  border: 1px solid #ff0228 !important;
}
.cid-ulEgV0EzOs .btn-primary:hover {
  border: 1px solid #ff0228 !important;
}
.cid-ulEgV0EzOs .stripe {
  border-bottom: 1px solid #ffffff;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-ulEgV0EzOs .form-group {
  max-width: 220px;
}
.cid-ulEgV0EzOs .mbr-section-btn {
  padding-left: 0;
}
.cid-ulEgV0EzOs .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-ulEgV0EzOs .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ffffff;
  width: 85%;
}
.cid-ulEgV0EzOs .mbr-text {
  color: #444;
}
.cid-ulEgV0EzOs h5 {
  margin-bottom: 0;
}
.cid-ulEgV0EzOs .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: left;
}
.cid-ulEgV0EzOs .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ulEgV0EzOs .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-ulEgV0EzOs .socicon {
  font-size: 1.3rem;
  background: #ffd04c;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ulEgV0EzOs .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-ulEgV0EzOs .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-ulEgV0EzOs .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-ulEgV0EzOs .social-list a:hover {
  opacity: 0.4;
}
.cid-ulEgV0EzOs .media-container-row > div {
  padding: 0px;
}
.cid-ulEgV0EzOs .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-ulEgV0EzOs .group-title {
  text-align: left;
  color: #ffd04c;
  padding-bottom: 0.2rem;
}
.cid-ulEgV0EzOs .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-ulEgV0EzOs .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-ulEgV0EzOs .social-list,
  .cid-ulEgV0EzOs .img-list {
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
  .cid-ulEgV0EzOs h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-ulEgV0EzOs .form-group {
    max-width: 180px;
  }
}
.cid-ulEgV0EzOs .links span {
  color: #9e9e9e;
}
.cid-ulEgV0EzOs .logo-sub-title {
  text-align: left;
}
.cid-ulEgV0EzOs .logo-title {
  text-align: left;
}
.cid-ulEgV0EzOs .logo-sub-title i {
  color: #9e9e9e;
}
.cid-ulEgV0EzOs .logo-title,
.cid-ulEgV0EzOs .logo {
  text-align: left;
  color: #ffffff;
}
.cid-ulEgV1Hhyn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffd04c;
}
.cid-ulEgV1Hhyn .media-container-row {
  align-items: center;
}
.cid-ulEgV1Hhyn .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulEgV1Hhyn .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ulEgV1Hhyn .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ulEgV1Hhyn .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ulEgV1Hhyn .foot-menu-item {
  transform: 0.2s;
}
.cid-ulEgV1Hhyn .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-ulEgV1Hhyn .foot-menu {
    justify-content: center;
  }
  .cid-ulEgV1Hhyn .mbr-text {
    text-align: center;
  }
  .cid-ulEgV1Hhyn .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ulEgV1Hhyn .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ulEgV1Hhyn .link:hover {
  text-decoration: underline;
}
.cid-ulEgV1Hhyn .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #5b0000;
}
.cid-ulEgV1Hhyn .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-ulEgV1Hhyn .container {
    padding: 0;
  }
}
.cid-ulEgV1Hhyn .media-container-row .mbr-text {
  color: #5b0000;
  text-align: center;
}
.cid-ulEiLYNg55 .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-ulEiLYNg55 .collapsed {
  flex-direction: row!important;
}
.cid-ulEiLYNg55 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulEiLYNg55 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulEiLYNg55 .navbar-nav {
  margin: auto;
}
.cid-ulEiLYNg55 .navbar-brand {
  min-width: 15%;
  -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-ulEiLYNg55 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulEiLYNg55 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulEiLYNg55 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-ulEiLYNg55 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-ulEiLYNg55 .nav-item:focus,
.cid-ulEiLYNg55 .nav-link:focus {
  outline: none;
}
.cid-ulEiLYNg55 .text-white:hover,
.cid-ulEiLYNg55 .text-white:active,
.cid-ulEiLYNg55 .text-white:focus {
  color: white!important;
}
.cid-ulEiLYNg55 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-ulEiLYNg55 .dropdown-item:hover {
  color: black!important;
}
.cid-ulEiLYNg55 .dropdown-menu {
  background-color: white!important;
}
.cid-ulEiLYNg55 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-ulEiLYNg55 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-ulEiLYNg55 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-ulEiLYNg55 .nav-item .nav-link {
    position: relative;
  }
}
.cid-ulEiLYNg55 .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-ulEiLYNg55 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulEiLYNg55 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-ulEiLYNg55 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ulEiLYNg55 .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-ulEiLYNg55 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #9e1916;
}
.cid-ulEiLYNg55 .navbar.opened {
  transition: all .3s;
  background: #9e1916 !important;
}
.cid-ulEiLYNg55 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulEiLYNg55 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulEiLYNg55 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulEiLYNg55 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ulEiLYNg55 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulEiLYNg55 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulEiLYNg55 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulEiLYNg55 .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-ulEiLYNg55 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulEiLYNg55 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulEiLYNg55 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulEiLYNg55 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulEiLYNg55 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulEiLYNg55 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulEiLYNg55 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulEiLYNg55 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulEiLYNg55 .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-ulEiLYNg55 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulEiLYNg55 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulEiLYNg55 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulEiLYNg55 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulEiLYNg55 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulEiLYNg55 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulEiLYNg55 .navbar.navbar-short {
  background: #9e1916 !important;
  min-height: 60px;
}
.cid-ulEiLYNg55 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulEiLYNg55 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulEiLYNg55 .navbar-caption {
  font-weight: 600!important;
}
.cid-ulEiLYNg55 .dropdown-item.active,
.cid-ulEiLYNg55 .dropdown-item:active {
  background-color: transparent;
}
.cid-ulEiLYNg55 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ulEiLYNg55 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ulEiLYNg55 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ulEiLYNg55 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9e1916;
}
.cid-ulEiLYNg55 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulEiLYNg55 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulEiLYNg55 .navbar-buttons {
  text-align: center;
}
.cid-ulEiLYNg55 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulEiLYNg55 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffd04c;
}
.cid-ulEiLYNg55 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulEiLYNg55 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulEiLYNg55 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulEiLYNg55 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulEiLYNg55 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulEiLYNg55 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulEiLYNg55 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulEiLYNg55 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulEiLYNg55 .nav-link {
  font-weight: 600!important;
}
.cid-ulEiLYNg55 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ulEiLYNg55 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ulEiLYNg55 .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-ulEiLYNg55 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulEiLYNg55 .navbar {
    height: 77px;
  }
  .cid-ulEiLYNg55 .navbar.opened {
    height: auto;
  }
  .cid-ulEiLYNg55 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulEiM0PMzI {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1283.jpg");
}
.cid-ulEiM0PMzI H1 {
  text-align: left;
}
.cid-ulEiM1Uo9A {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-ulEiM1Uo9A img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-ulEiM1Uo9A H1 {
  color: #b60809;
  text-align: left;
}
.cid-ulEiM1Uo9A .mbr-text,
.cid-ulEiM1Uo9A .mbr-section-btn {
  color: #716c80;
}
.cid-ulEiM1Uo9A H3 {
  color: #716c80;
}
.cid-ulEiM1Uo9A .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-ulEiM1Uo9A .btn-info-outline {
  border: none;
  color: #147c0a !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-ulEiM1Uo9A .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-ulEiM1Uo9A .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-ulEiM1Uo9A .btn-info-outline:hover {
  background-color: transparent!important;
  color: #ff0228 !important;
  box-shadow: none!important;
}
.cid-ulEiM1Uo9A .btn-info-outline:active,
.cid-ulEiM1Uo9A .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-ulEiM1Uo9A DIV {
  color: #57468b;
}
.cid-ulEiM1Uo9A .mbr-text,
.cid-ulEiM1Uo9A .media-content,
.cid-ulEiM1Uo9A .mbr-section-btn {
  color: #010101;
  text-align: left;
}
.cid-ulEiM3ladi {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #820405;
}
.cid-ulEiM3ladi .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-ulEiM3ladi .navbar-logo {
  width: 200px;
  margin-bottom: 5px;
  margin: auto;
}
.cid-ulEiM3ladi .col + .mbr-section-btn .btn,
.cid-ulEiM3ladi .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-ulEiM3ladi .col + .mbr-section-btn .btn,
  .cid-ulEiM3ladi .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-ulEiM3ladi .dragArea > *:nth-last-child(2).col,
  .cid-ulEiM3ladi .dragArea > *:nth-last-child(2).col-auto,
  .cid-ulEiM3ladi .col + .mbr-section-btn,
  .cid-ulEiM3ladi .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-ulEiM3ladi .dragArea {
    flex-direction: column;
  }
}
.cid-ulEiM3ladi .btn-primary {
  border: 1px solid #ff0228 !important;
}
.cid-ulEiM3ladi .btn-primary:hover {
  border: 1px solid #ff0228 !important;
}
.cid-ulEiM3ladi .stripe {
  border-bottom: 1px solid #ffffff;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-ulEiM3ladi .form-group {
  max-width: 220px;
}
.cid-ulEiM3ladi .mbr-section-btn {
  padding-left: 0;
}
.cid-ulEiM3ladi .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-ulEiM3ladi .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ffffff;
  width: 85%;
}
.cid-ulEiM3ladi .mbr-text {
  color: #444;
}
.cid-ulEiM3ladi h5 {
  margin-bottom: 0;
}
.cid-ulEiM3ladi .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: left;
}
.cid-ulEiM3ladi .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ulEiM3ladi .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-ulEiM3ladi .socicon {
  font-size: 1.3rem;
  background: #ffd04c;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ulEiM3ladi .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-ulEiM3ladi .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-ulEiM3ladi .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-ulEiM3ladi .social-list a:hover {
  opacity: 0.4;
}
.cid-ulEiM3ladi .media-container-row > div {
  padding: 0px;
}
.cid-ulEiM3ladi .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-ulEiM3ladi .group-title {
  text-align: left;
  color: #ffd04c;
  padding-bottom: 0.2rem;
}
.cid-ulEiM3ladi .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-ulEiM3ladi .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-ulEiM3ladi .social-list,
  .cid-ulEiM3ladi .img-list {
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
  .cid-ulEiM3ladi h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-ulEiM3ladi .form-group {
    max-width: 180px;
  }
}
.cid-ulEiM3ladi .links span {
  color: #9e9e9e;
}
.cid-ulEiM3ladi .logo-sub-title {
  text-align: left;
}
.cid-ulEiM3ladi .logo-title {
  text-align: left;
}
.cid-ulEiM3ladi .logo-sub-title i {
  color: #9e9e9e;
}
.cid-ulEiM3ladi .logo-title,
.cid-ulEiM3ladi .logo {
  text-align: left;
  color: #ffffff;
}
.cid-ulEiM4M86Q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffd04c;
}
.cid-ulEiM4M86Q .media-container-row {
  align-items: center;
}
.cid-ulEiM4M86Q .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ulEiM4M86Q .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ulEiM4M86Q .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ulEiM4M86Q .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-ulEiM4M86Q .foot-menu-item {
  transform: 0.2s;
}
.cid-ulEiM4M86Q .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-ulEiM4M86Q .foot-menu {
    justify-content: center;
  }
  .cid-ulEiM4M86Q .mbr-text {
    text-align: center;
  }
  .cid-ulEiM4M86Q .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ulEiM4M86Q .foot-menu {
    justify-content: flex-end;
  }
}
.cid-ulEiM4M86Q .link:hover {
  text-decoration: underline;
}
.cid-ulEiM4M86Q .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #5b0000;
}
.cid-ulEiM4M86Q .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-ulEiM4M86Q .container {
    padding: 0;
  }
}
.cid-ulEiM4M86Q .media-container-row .mbr-text {
  color: #5b0000;
  text-align: center;
}
.cid-um0vmTmpM0 .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
.cid-um0vmTmpM0 .collapsed {
  flex-direction: row!important;
}
.cid-um0vmTmpM0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-um0vmTmpM0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-um0vmTmpM0 .navbar-nav {
  margin: auto;
}
.cid-um0vmTmpM0 .navbar-brand {
  min-width: 15%;
  -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-um0vmTmpM0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-um0vmTmpM0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-um0vmTmpM0 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-um0vmTmpM0 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-um0vmTmpM0 .nav-item:focus,
.cid-um0vmTmpM0 .nav-link:focus {
  outline: none;
}
.cid-um0vmTmpM0 .text-white:hover,
.cid-um0vmTmpM0 .text-white:active,
.cid-um0vmTmpM0 .text-white:focus {
  color: white!important;
}
.cid-um0vmTmpM0 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-um0vmTmpM0 .dropdown-item:hover {
  color: black!important;
}
.cid-um0vmTmpM0 .dropdown-menu {
  background-color: white!important;
}
.cid-um0vmTmpM0 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-um0vmTmpM0 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ffd04c;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-um0vmTmpM0 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-um0vmTmpM0 .nav-item .nav-link {
    position: relative;
  }
}
.cid-um0vmTmpM0 .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-um0vmTmpM0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-um0vmTmpM0 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-um0vmTmpM0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-um0vmTmpM0 .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-um0vmTmpM0 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #9e1916;
}
.cid-um0vmTmpM0 .navbar.opened {
  transition: all .3s;
  background: #9e1916 !important;
}
.cid-um0vmTmpM0 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-um0vmTmpM0 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-um0vmTmpM0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-um0vmTmpM0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-um0vmTmpM0 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-um0vmTmpM0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-um0vmTmpM0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-um0vmTmpM0 .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-um0vmTmpM0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-um0vmTmpM0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-um0vmTmpM0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-um0vmTmpM0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-um0vmTmpM0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-um0vmTmpM0 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-um0vmTmpM0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-um0vmTmpM0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-um0vmTmpM0 .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-um0vmTmpM0 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-um0vmTmpM0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-um0vmTmpM0 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-um0vmTmpM0 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-um0vmTmpM0 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-um0vmTmpM0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-um0vmTmpM0 .navbar.navbar-short {
  background: #9e1916 !important;
  min-height: 60px;
}
.cid-um0vmTmpM0 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-um0vmTmpM0 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-um0vmTmpM0 .navbar-caption {
  font-weight: 600!important;
}
.cid-um0vmTmpM0 .dropdown-item.active,
.cid-um0vmTmpM0 .dropdown-item:active {
  background-color: transparent;
}
.cid-um0vmTmpM0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-um0vmTmpM0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-um0vmTmpM0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-um0vmTmpM0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #9e1916;
}
.cid-um0vmTmpM0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-um0vmTmpM0 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-um0vmTmpM0 .navbar-buttons {
  text-align: center;
}
.cid-um0vmTmpM0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-um0vmTmpM0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffd04c;
}
.cid-um0vmTmpM0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-um0vmTmpM0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-um0vmTmpM0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-um0vmTmpM0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-um0vmTmpM0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-um0vmTmpM0 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-um0vmTmpM0 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-um0vmTmpM0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-um0vmTmpM0 .nav-link {
  font-weight: 600!important;
}
.cid-um0vmTmpM0 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-um0vmTmpM0 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-um0vmTmpM0 .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-um0vmTmpM0 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-um0vmTmpM0 .navbar {
    height: 77px;
  }
  .cid-um0vmTmpM0 .navbar.opened {
    height: auto;
  }
  .cid-um0vmTmpM0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-um0vmVDPpE {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-4-1920x1280.jpg");
}
.cid-um0vmVDPpE H1 {
  color: #ffffff;
}
.cid-um0vmVDPpE .mbr-text,
.cid-um0vmVDPpE .mbr-section-btn {
  color: #716c80;
}
.cid-um0vmVDPpE H3 {
  color: #716c80;
}
.cid-um0vHbBlmw {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-um0vHbBlmw .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-um0vHbBlmw .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #ff0228;
}
.cid-um0vHbBlmw .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-um0vHbBlmw .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-um0vHbBlmw .mbr-section-title {
  color: #820405;
}
@media (min-width: 1400px) {
  .cid-um0vHbBlmw .col-12 {
    padding: 0 2rem;
  }
  .cid-um0vHbBlmw .row {
    margin: 0 -2rem;
  }
}
.cid-um0vHbBlmw .mbr-text,
.cid-um0vHbBlmw .mbr-section-btn {
  color: #232323;
}
.cid-um0vn00kum {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #820405;
}
.cid-um0vn00kum .listico {
  padding-right: 1rem;
  font-size: 1.2rem;
}
.cid-um0vn00kum .navbar-logo {
  width: 200px;
  margin-bottom: 5px;
  margin: auto;
}
.cid-um0vn00kum .col + .mbr-section-btn .btn,
.cid-um0vn00kum .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-um0vn00kum .col + .mbr-section-btn .btn,
  .cid-um0vn00kum .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-um0vn00kum .dragArea > *:nth-last-child(2).col,
  .cid-um0vn00kum .dragArea > *:nth-last-child(2).col-auto,
  .cid-um0vn00kum .col + .mbr-section-btn,
  .cid-um0vn00kum .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-um0vn00kum .dragArea {
    flex-direction: column;
  }
}
.cid-um0vn00kum .btn-primary {
  border: 1px solid #ff0228 !important;
}
.cid-um0vn00kum .btn-primary:hover {
  border: 1px solid #ff0228 !important;
}
.cid-um0vn00kum .stripe {
  border-bottom: 1px solid #ffffff;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-um0vn00kum .form-group {
  max-width: 220px;
}
.cid-um0vn00kum .mbr-section-btn {
  padding-left: 0;
}
.cid-um0vn00kum .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-um0vn00kum .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ffffff;
  width: 85%;
}
.cid-um0vn00kum .mbr-text {
  color: #444;
}
.cid-um0vn00kum h5 {
  margin-bottom: 0;
}
.cid-um0vn00kum .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: left;
}
.cid-um0vn00kum .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-um0vn00kum .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-um0vn00kum .socicon {
  font-size: 1.3rem;
  background: #ffd04c;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-um0vn00kum .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-um0vn00kum .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-um0vn00kum .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-um0vn00kum .social-list a:hover {
  opacity: 0.4;
}
.cid-um0vn00kum .media-container-row > div {
  padding: 0px;
}
.cid-um0vn00kum .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-um0vn00kum .group-title {
  text-align: left;
  color: #ffd04c;
  padding-bottom: 0.2rem;
}
.cid-um0vn00kum .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-um0vn00kum .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-um0vn00kum .social-list,
  .cid-um0vn00kum .img-list {
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
  .cid-um0vn00kum h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-um0vn00kum .form-group {
    max-width: 180px;
  }
}
.cid-um0vn00kum .links span {
  color: #9e9e9e;
}
.cid-um0vn00kum .logo-sub-title {
  text-align: left;
}
.cid-um0vn00kum .logo-title {
  text-align: left;
}
.cid-um0vn00kum .logo-sub-title i {
  color: #9e9e9e;
}
.cid-um0vn00kum .logo-title,
.cid-um0vn00kum .logo {
  text-align: left;
  color: #ffffff;
}
.cid-um0vn1R2fv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffd04c;
}
.cid-um0vn1R2fv .media-container-row {
  align-items: center;
}
.cid-um0vn1R2fv .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-um0vn1R2fv .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-um0vn1R2fv .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-um0vn1R2fv .foot-menu li {
  padding: 0.1rem 0rem !important;
  position: relative;
  margin: 0 0.5rem;
}
.cid-um0vn1R2fv .foot-menu-item {
  transform: 0.2s;
}
.cid-um0vn1R2fv .mbr-text {
  color: #8e99b1;
}
@media (max-width: 992px) {
  .cid-um0vn1R2fv .foot-menu {
    justify-content: center;
  }
  .cid-um0vn1R2fv .mbr-text {
    text-align: center;
  }
  .cid-um0vn1R2fv .media-container-row {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-um0vn1R2fv .foot-menu {
    justify-content: flex-end;
  }
}
.cid-um0vn1R2fv .link:hover {
  text-decoration: underline;
}
.cid-um0vn1R2fv .link {
  padding-left: 1rem;
  color: #8e99b1;
  border-left: 2px solid #5b0000;
}
.cid-um0vn1R2fv .link-1 {
  border-left: none;
}
@media (min-width: 767px) {
  .cid-um0vn1R2fv .container {
    padding: 0;
  }
}
.cid-um0vn1R2fv .media-container-row .mbr-text {
  color: #5b0000;
  text-align: center;
}
