body {
  font-family: Montserrat;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Montserrat', 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: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.bg-primary {
  background-color: #ff2a2a !important;
}
.bg-success {
  background-color: #1dc9cb !important;
}
.bg-info {
  background-color: #188ef4 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ff2a2a !important;
  border-color: #ff2a2a !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #dd0000 !important;
  border-color: #dd0000 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #dd0000 !important;
  border-color: #dd0000 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #138788 !important;
  border-color: #138788 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transition: all .5s;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  transition: all .5s;
  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,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  transition: all .5s;
  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,
.btn-primary-outline.active {
  background: none !important;
  border-color: #c30000 !important;
  color: #c30000 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #ff2a2a !important;
  border-color: #ff2a2a !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff2a2a !important;
  border-color: #ff2a2a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #178a61 !important;
  color: #178a61 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #08589e !important;
  color: #08589e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #107172 !important;
  color: #107172 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #1dc9cb !important;
  border-color: #1dc9cb !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #8e8e8e !important;
  color: #8e8e8e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #111111 !important;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.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: #ff2a2a !important;
}
.text-secondary {
  color: #2bdc9d !important;
}
.text-success {
  color: #1dc9cb !important;
}
.text-info {
  color: #188ef4 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #c30000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #178a61 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #107172 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #08589e !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !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: #1dc9cb;
}
.alert-info {
  background-color: #188ef4;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn:focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff2a2a;
  border-color: #ff2a2a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff2a2a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff6f6;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #bef5f6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dbedfd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.mbr-arrow-up a {
  width: 61px;
  height: 61px;
}
#scrollToTop a {
  background: #188ef4;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #ffffff;
  width: 3%;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mbr-arrow i {
  color: #188ef4;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #ff2a2a;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #ff2a2a;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #ff2a2a;
}
.btn-social + .btn {
  margin-left: .1rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff2a2a;
  color: #ffffff;
}
.jq-number__spin {
  background-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-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff2a2a;
  border-bottom-color: #ff2a2a;
}
.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: #ff2a2a !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: #2bdc9d !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='%23ff2a2a' %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-tZ0NJwrJpx .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tZ0NJwrJpx .nav-item,
.cid-tZ0NJwrJpx .nav-link,
.cid-tZ0NJwrJpx .navbar-caption {
  font-weight: normal;
}
.cid-tZ0NJwrJpx .nav-item:focus,
.cid-tZ0NJwrJpx .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tZ0NJwrJpx .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tZ0NJwrJpx .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-tZ0NJwrJpx .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tZ0NJwrJpx .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tZ0NJwrJpx .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tZ0NJwrJpx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZ0NJwrJpx .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-tZ0NJwrJpx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZ0NJwrJpx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZ0NJwrJpx .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-tZ0NJwrJpx .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tZ0NJwrJpx .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tZ0NJwrJpx .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tZ0NJwrJpx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZ0NJwrJpx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tZ0NJwrJpx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tZ0NJwrJpx .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZ0NJwrJpx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZ0NJwrJpx .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-tZ0NJwrJpx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZ0NJwrJpx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tZ0NJwrJpx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZ0NJwrJpx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZ0NJwrJpx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZ0NJwrJpx .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZ0NJwrJpx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZ0NJwrJpx .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-tZ0NJwrJpx .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZ0NJwrJpx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZ0NJwrJpx .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tZ0NJwrJpx .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZ0NJwrJpx .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZ0NJwrJpx .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZ0NJwrJpx .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tZ0NJwrJpx .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZ0NJwrJpx .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZ0NJwrJpx .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZ0NJwrJpx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZ0NJwrJpx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZ0NJwrJpx .dropdown-item.active,
.cid-tZ0NJwrJpx .dropdown-item:active {
  background-color: transparent;
}
.cid-tZ0NJwrJpx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZ0NJwrJpx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZ0NJwrJpx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tZ0NJwrJpx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZ0NJwrJpx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tZ0NJwrJpx ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZ0NJwrJpx .navbar-buttons {
  text-align: center;
}
.cid-tZ0NJwrJpx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZ0NJwrJpx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tZ0NJwrJpx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZ0NJwrJpx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZ0NJwrJpx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZ0NJwrJpx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZ0NJwrJpx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZ0NJwrJpx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZ0NJwrJpx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZ0NJwrJpx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZ0NJwrJpx .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZ0NJwrJpx a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tZ0NJwrJpx .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tZ0NJwrJpx .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tZ0NJwrJpx .soc-item {
  margin: .5rem .3rem;
}
.cid-tZ0NJwrJpx .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZ0NJwrJpx .navbar {
    height: 77px;
  }
  .cid-tZ0NJwrJpx .navbar.opened {
    height: auto;
  }
  .cid-tZ0NJwrJpx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZ0O7nmRD5 {
  background-image: url("../../../assets/images/-mg-6258-1200x800.jpg");
}
.cid-tZ0O7nmRD5 .mbr-overlay {
  background: #000000;
  background: linear-gradient(90deg, #000000, #232323);
}
.cid-tZ0O7nmRD5 .mbr-section-subtitle {
  color: #e3e3e3;
}
.cid-tZ0O7nmRD5 .mbr-section-subtitle,
.cid-tZ0O7nmRD5 .mbr-section-btn {
  color: #ffffff;
}
.cid-tZ0RI0JsNo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tZ0RI0JsNo .mbr-iconfont {
  font-size: 34px;
  transition: color .3s;
}
.cid-tZ0RI0JsNo .mbr-section-title {
  margin: 0;
}
.cid-tZ0RI0JsNo .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tZ0RI0JsNo .card-img {
  text-align: center;
}
.cid-tZ0RI0JsNo .row-item {
  padding-bottom: 2rem;
  padding: 5rem 2rem;
}
.cid-tZ0RI0JsNo .row-item.card1 {
  background: #ff2a2a;
}
.cid-tZ0RI0JsNo .row-item.card2 {
  background: #d90000;
}
.cid-tZ0RI0JsNo .row-item.card3 {
  background: #b30000;
}
.cid-tZ0RI0JsNo .row-item.card4 {
  background: #2bdc9d;
}
.cid-tZ0RI0JsNo .mbr-text {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-tZ0RI0JsNo .card-img,
  .cid-tZ0RI0JsNo .mbr-text,
  .cid-tZ0RI0JsNo .mbr-card-title,
  .cid-tZ0RI0JsNo .mbr-section-subtitle,
  .cid-tZ0RI0JsNo .mbr-section-title,
  .cid-tZ0RI0JsNo .underline {
    text-align: center !important;
  }
}
.cid-uhhN122eKr {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/okinoiplanta-720x540.jpg");
}
.cid-uhhN122eKr .mbr-overlay {
  background: #232323;
  background: linear-gradient(90deg, #232323, #000000);
}
.cid-tZ15FbFnit {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tZ15FbFnit .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tZ15FbFnit .video-block {
  margin: auto;
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-tZ15FbFnit .video-block {
    width: 100% !important;
  }
}
.cid-tZ1a8cJZ9X {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(90deg, #232323, #000000);
}
.cid-tZ1a8cJZ9X .mbr-overlay {
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-tZ1a8cJZ9X .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tZ1a8cJZ9X .card-wrap {
  background-color: #ffffff;
  padding: 2rem;
  width: calc(100% + 10rem);
  margin-left: -10rem;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tZ1a8cJZ9X .img-wrap img {
  width: 100%;
  border-radius: .25rem;
}
@media (max-width: 991px) {
  .cid-tZ1a8cJZ9X .card-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}
.cid-ujVbu30QjQ {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ujVbu30QjQ .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-ujVaExZ2xS {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ujVaExZ2xS .mbr-text {
  color: #8d97ad;
}
.cid-ujVaExZ2xS .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-ujVaExZ2xS .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-ujVaExZ2xS .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #d90000;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d90000, #b30000);
}
.cid-uhjExuheeT {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/-mg-6208-1200x800.jpg");
}
.cid-uhjExuheeT .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uhjExuheeT .panel-group {
  width: 100%;
}
.cid-uhjExuheeT .panel-text,
.cid-uhjExuheeT .header-text,
.cid-uhjExuheeT .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uhjExuheeT .card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  margin-bottom: .5rem;
  border: none;
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.cid-uhjExuheeT .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-uhjExuheeT .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  line-height: normal;
}
.cid-uhjExuheeT .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uhjExuheeT .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-uhjExuheeT .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
  width: 100%;
}
.cid-uhjExuheeT .card .card-header a.panel-title[aria-expanded="true"] {
  background-color: #ff2a2a;
}
.cid-uhjExuheeT .card .card-header a.panel-title[aria-expanded="true"] .header-text {
  color: #ffffff !important;
}
.cid-uhjExuheeT .card .panel-body {
  background: #000000;
}
.cid-uhjExuheeT .sign {
  color: #232323;
}
.cid-uhjExuheeT .mbr-section-title {
  color: #f4f8fa;
}
.cid-uhjExuheeT .header-text {
  color: #b30000;
}
.cid-uhjExuheeT .panel-text {
  color: #f4f8fa;
}
.cid-tZ15fN3Qap {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tZ15fN3Qap .mbr-overlay {
  background: #efefef;
}
.cid-tZ15fN3Qap .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tZ15fN3Qap .client-name {
  color: #8d97ad;
}
.cid-tZ15fN3Qap .wrap-img {
  padding-bottom: 1rem;
}
.cid-tZ15fN3Qap .wrap-img img {
  max-width: 100%;
  display: inline-block;
  width: auto;
}
.cid-tZ15fN3Qap .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-uhosWezPLz {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uhosWezPLz .google-map {
  height: 25rem;
  position: relative;
}
.cid-uhosWezPLz .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uhosWezPLz .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-uhosWezPLz .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhosWezPLz .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ujVdlow9vB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ujVdlow9vB .mbr-text {
  color: #8d97ad;
}
.cid-ujVdlow9vB .counter-container ul {
  margin-bottom: 0;
  padding-left: .6rem;
}
.cid-ujVdlow9vB .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-ujVdlow9vB .counter-container ul li:before {
  position: absolute;
  left: -1.5rem;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff2a2a;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff2a2a, #b30000);
}
.cid-tZ1OtqoCjz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ff2a2a;
}
.cid-tZ1OtqoCjz p {
  text-align: center;
}
.cid-tZ1OtqoCjz .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tZ1OtqoCjz .btn-underline:hover {
  color: #505050;
}
.cid-tZ1OtqoCjz .btn-underline:before {
  background-color: #505050;
}
.cid-tZ1OtqoCjz .social-list a:focus {
  text-decoration: none;
}
.cid-tZ1OtqoCjz .text-copyright {
  width: 100%;
}
.cid-tZ1OtqoCjz .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-tZ1OtqoCjz .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-tZ1OtqoCjz .logo-footer {
  line-height: normal;
}
.cid-tZ1OtqoCjz .copyright {
  display: flex;
  align-items: center;
}
.cid-tZ1OtqoCjz .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tZ1OtqoCjz .mbr-section-btn {
  font-size: 16px;
}
.cid-tZ1OtqoCjz .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
.cid-uhujp4rWhG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-uhujp4rWhG .nav-item,
.cid-uhujp4rWhG .nav-link,
.cid-uhujp4rWhG .navbar-caption {
  font-weight: normal;
}
.cid-uhujp4rWhG .nav-item:focus,
.cid-uhujp4rWhG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uhujp4rWhG .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-uhujp4rWhG .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-uhujp4rWhG .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uhujp4rWhG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uhujp4rWhG .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-uhujp4rWhG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uhujp4rWhG .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-uhujp4rWhG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhujp4rWhG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhujp4rWhG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-uhujp4rWhG .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-uhujp4rWhG .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-uhujp4rWhG .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uhujp4rWhG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhujp4rWhG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhujp4rWhG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-uhujp4rWhG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uhujp4rWhG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhujp4rWhG .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-uhujp4rWhG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhujp4rWhG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uhujp4rWhG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uhujp4rWhG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhujp4rWhG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhujp4rWhG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uhujp4rWhG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhujp4rWhG .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-uhujp4rWhG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uhujp4rWhG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uhujp4rWhG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uhujp4rWhG .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uhujp4rWhG .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uhujp4rWhG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uhujp4rWhG .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-uhujp4rWhG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uhujp4rWhG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uhujp4rWhG .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhujp4rWhG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhujp4rWhG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhujp4rWhG .dropdown-item.active,
.cid-uhujp4rWhG .dropdown-item:active {
  background-color: transparent;
}
.cid-uhujp4rWhG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhujp4rWhG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhujp4rWhG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uhujp4rWhG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhujp4rWhG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhujp4rWhG ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uhujp4rWhG .navbar-buttons {
  text-align: center;
}
.cid-uhujp4rWhG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uhujp4rWhG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uhujp4rWhG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uhujp4rWhG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uhujp4rWhG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uhujp4rWhG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uhujp4rWhG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uhujp4rWhG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uhujp4rWhG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uhujp4rWhG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uhujp4rWhG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uhujp4rWhG a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uhujp4rWhG .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uhujp4rWhG .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-uhujp4rWhG .soc-item {
  margin: .5rem .3rem;
}
.cid-uhujp4rWhG .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhujp4rWhG .navbar {
    height: 77px;
  }
  .cid-uhujp4rWhG .navbar.opened {
    height: auto;
  }
  .cid-uhujp4rWhG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhujp4QFvX {
  padding-top: 135px;
  padding-bottom: 30px;
  background: #d90000;
}
.cid-uhujp4QFvX .mbr-overlay {
  background: #232323;
}
.cid-uhujp4QFvX .mbr-section-subtitle {
  color: #cccccc;
}
.cid-uhujp4QFvX H1 {
  color: #ffffff;
}
.cid-uhujp4QFvX .mbr-section-subtitle,
.cid-uhujp4QFvX .mbr-section-btn {
  color: #ffffff;
}
.cid-uhvamJ602T {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/-mg-6208-1200x800.jpg");
}
.cid-uhvamJ602T .mbr-overlay {
  background: #000000;
}
.cid-uhujp4Y1oA {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(90deg, #000000, #000000);
}
.cid-uhujp4Y1oA .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uhujp4Y1oA .card-wrap {
  background-color: #ffffff;
  padding: 2rem;
  width: calc(100% + 10rem);
  margin-left: -10rem;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-uhujp4Y1oA .img-wrap img {
  width: 100%;
  border-radius: .25rem;
}
@media (max-width: 991px) {
  .cid-uhujp4Y1oA .card-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}
.cid-uhujp4Y1oA H1 {
  color: #444444;
  text-align: left;
}
.cid-uhujp4Y1oA B {
  color: #444444;
}
.cid-uhujp4Y1oA .mbr-section-subtitle,
.cid-uhujp4Y1oA .mbr-section-btn {
  text-align: left;
}
.cid-uhujp5yFzc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ff2a2a;
}
.cid-uhujp5yFzc p {
  text-align: center;
}
.cid-uhujp5yFzc .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uhujp5yFzc .btn-underline:hover {
  color: #505050;
}
.cid-uhujp5yFzc .btn-underline:before {
  background-color: #505050;
}
.cid-uhujp5yFzc .social-list a:focus {
  text-decoration: none;
}
.cid-uhujp5yFzc .text-copyright {
  width: 100%;
}
.cid-uhujp5yFzc .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-uhujp5yFzc .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-uhujp5yFzc .logo-footer {
  line-height: normal;
}
.cid-uhujp5yFzc .copyright {
  display: flex;
  align-items: center;
}
.cid-uhujp5yFzc .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uhujp5yFzc .mbr-section-btn {
  font-size: 16px;
}
.cid-uhujp5yFzc .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
.cid-tZzw0aW25A .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-tZzw0aW25A .nav-item,
.cid-tZzw0aW25A .nav-link,
.cid-tZzw0aW25A .navbar-caption {
  font-weight: normal;
}
.cid-tZzw0aW25A .nav-item:focus,
.cid-tZzw0aW25A .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tZzw0aW25A .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tZzw0aW25A .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-tZzw0aW25A .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tZzw0aW25A .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tZzw0aW25A .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tZzw0aW25A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tZzw0aW25A .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-tZzw0aW25A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZzw0aW25A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZzw0aW25A .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-tZzw0aW25A .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tZzw0aW25A .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tZzw0aW25A .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tZzw0aW25A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZzw0aW25A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tZzw0aW25A .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tZzw0aW25A .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tZzw0aW25A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZzw0aW25A .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-tZzw0aW25A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZzw0aW25A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tZzw0aW25A .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tZzw0aW25A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZzw0aW25A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZzw0aW25A .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tZzw0aW25A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZzw0aW25A .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-tZzw0aW25A .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tZzw0aW25A .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZzw0aW25A .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tZzw0aW25A .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tZzw0aW25A .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tZzw0aW25A .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tZzw0aW25A .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tZzw0aW25A .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tZzw0aW25A .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tZzw0aW25A .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tZzw0aW25A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZzw0aW25A .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZzw0aW25A .dropdown-item.active,
.cid-tZzw0aW25A .dropdown-item:active {
  background-color: transparent;
}
.cid-tZzw0aW25A .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZzw0aW25A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZzw0aW25A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tZzw0aW25A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZzw0aW25A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tZzw0aW25A ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tZzw0aW25A .navbar-buttons {
  text-align: center;
}
.cid-tZzw0aW25A button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tZzw0aW25A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tZzw0aW25A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tZzw0aW25A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tZzw0aW25A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tZzw0aW25A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tZzw0aW25A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZzw0aW25A nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tZzw0aW25A nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tZzw0aW25A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tZzw0aW25A .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tZzw0aW25A a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tZzw0aW25A .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tZzw0aW25A .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tZzw0aW25A .soc-item {
  margin: .5rem .3rem;
}
.cid-tZzw0aW25A .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tZzw0aW25A .navbar {
    height: 77px;
  }
  .cid-tZzw0aW25A .navbar.opened {
    height: auto;
  }
  .cid-tZzw0aW25A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tZzw0bBDZO {
  padding-top: 135px;
  padding-bottom: 30px;
  background: #d90000;
}
.cid-tZzw0bBDZO .mbr-overlay {
  background: #232323;
}
.cid-tZzw0bBDZO .mbr-section-subtitle {
  color: #cccccc;
}
.cid-tZzw0bBDZO H1 {
  color: #ffffff;
}
.cid-tZzw0bBDZO .mbr-section-subtitle,
.cid-tZzw0bBDZO .mbr-section-btn {
  color: #ffffff;
}
.cid-tZGkadM08T {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1154.jpg");
}
.cid-tZGkadM08T .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tZGkadM08T .card-wrap {
  background-color: #ffffff;
  padding: 2rem;
  width: calc(100% + 10rem);
  margin-left: -10rem;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tZGkadM08T .img-wrap img {
  width: 100%;
  border-radius: .25rem;
}
@media (max-width: 991px) {
  .cid-tZGkadM08T .card-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}
.cid-tZGkadM08T H1 {
  color: #444444;
  text-align: left;
}
.cid-tZGkadM08T B {
  color: #444444;
}
.cid-tZGkadM08T .mbr-section-subtitle,
.cid-tZGkadM08T .mbr-section-btn {
  text-align: left;
}
.cid-uhu4Ob3QvQ {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1318.jpg");
}
.cid-uhu4Ob3QvQ .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uhu4Ob3QvQ .card-wrap {
  background-color: #ffffff;
  padding: 2rem;
  width: calc(100% + 10rem);
  margin-left: -10rem;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-uhu4Ob3QvQ .img-wrap img {
  width: 100%;
  border-radius: .25rem;
}
@media (max-width: 991px) {
  .cid-uhu4Ob3QvQ .card-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}
.cid-uhu4Ob3QvQ H1 {
  color: #444444;
  text-align: left;
}
.cid-uhu4Ob3QvQ B {
  color: #444444;
}
.cid-uhu4Ob3QvQ .mbr-section-subtitle,
.cid-uhu4Ob3QvQ .mbr-section-btn {
  text-align: left;
}
.cid-uhu5wCeTRJ {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1281.jpg");
}
.cid-uhu5wCeTRJ .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uhu5wCeTRJ .card-wrap {
  background-color: #ffffff;
  padding: 2rem;
  width: calc(100% + 10rem);
  margin-left: -10rem;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-uhu5wCeTRJ .img-wrap img {
  width: 100%;
  border-radius: .25rem;
}
@media (max-width: 991px) {
  .cid-uhu5wCeTRJ .card-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}
.cid-uhu5wCeTRJ H1 {
  color: #444444;
  text-align: left;
}
.cid-uhu5wCeTRJ B {
  color: #444444;
}
.cid-uhu5wCeTRJ .mbr-section-subtitle,
.cid-uhu5wCeTRJ .mbr-section-btn {
  text-align: left;
}
.cid-tZzw0goipX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ff2a2a;
}
.cid-tZzw0goipX p {
  text-align: center;
}
.cid-tZzw0goipX .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tZzw0goipX .btn-underline:hover {
  color: #505050;
}
.cid-tZzw0goipX .btn-underline:before {
  background-color: #505050;
}
.cid-tZzw0goipX .social-list a:focus {
  text-decoration: none;
}
.cid-tZzw0goipX .text-copyright {
  width: 100%;
}
.cid-tZzw0goipX .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-tZzw0goipX .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-tZzw0goipX .logo-footer {
  line-height: normal;
}
.cid-tZzw0goipX .copyright {
  display: flex;
  align-items: center;
}
.cid-tZzw0goipX .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tZzw0goipX .mbr-section-btn {
  font-size: 16px;
}
.cid-tZzw0goipX .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
.cid-uhvb29MpiF .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-uhvb29MpiF .nav-item,
.cid-uhvb29MpiF .nav-link,
.cid-uhvb29MpiF .navbar-caption {
  font-weight: normal;
}
.cid-uhvb29MpiF .nav-item:focus,
.cid-uhvb29MpiF .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uhvb29MpiF .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-uhvb29MpiF .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-uhvb29MpiF .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uhvb29MpiF .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uhvb29MpiF .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-uhvb29MpiF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uhvb29MpiF .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-uhvb29MpiF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhvb29MpiF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhvb29MpiF .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-uhvb29MpiF .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-uhvb29MpiF .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-uhvb29MpiF .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uhvb29MpiF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhvb29MpiF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhvb29MpiF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-uhvb29MpiF .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uhvb29MpiF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhvb29MpiF .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-uhvb29MpiF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhvb29MpiF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uhvb29MpiF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uhvb29MpiF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhvb29MpiF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhvb29MpiF .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uhvb29MpiF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhvb29MpiF .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-uhvb29MpiF .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uhvb29MpiF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uhvb29MpiF .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uhvb29MpiF .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uhvb29MpiF .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uhvb29MpiF .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uhvb29MpiF .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-uhvb29MpiF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uhvb29MpiF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uhvb29MpiF .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhvb29MpiF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhvb29MpiF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhvb29MpiF .dropdown-item.active,
.cid-uhvb29MpiF .dropdown-item:active {
  background-color: transparent;
}
.cid-uhvb29MpiF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhvb29MpiF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhvb29MpiF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uhvb29MpiF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhvb29MpiF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhvb29MpiF ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uhvb29MpiF .navbar-buttons {
  text-align: center;
}
.cid-uhvb29MpiF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uhvb29MpiF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uhvb29MpiF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uhvb29MpiF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uhvb29MpiF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uhvb29MpiF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uhvb29MpiF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uhvb29MpiF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uhvb29MpiF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uhvb29MpiF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uhvb29MpiF .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uhvb29MpiF a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uhvb29MpiF .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uhvb29MpiF .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-uhvb29MpiF .soc-item {
  margin: .5rem .3rem;
}
.cid-uhvb29MpiF .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhvb29MpiF .navbar {
    height: 77px;
  }
  .cid-uhvb29MpiF .navbar.opened {
    height: auto;
  }
  .cid-uhvb29MpiF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhvb2a6i9G {
  padding-top: 135px;
  padding-bottom: 30px;
  background: #d90000;
}
.cid-uhvb2a6i9G .mbr-overlay {
  background: #232323;
}
.cid-uhvb2a6i9G .mbr-section-subtitle {
  color: #cccccc;
}
.cid-uhvb2a6i9G H1 {
  color: #ffffff;
}
.cid-uhvb2a6i9G .mbr-section-subtitle,
.cid-uhvb2a6i9G .mbr-section-btn {
  color: #ffffff;
}
.cid-uhvb2aerCF {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1154.jpg");
}
.cid-uhvb2aerCF .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uhvb2aerCF .card-wrap {
  background-color: #ffffff;
  padding: 2rem;
  width: calc(100% + 10rem);
  margin-left: -10rem;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-uhvb2aerCF .img-wrap img {
  width: 100%;
  border-radius: .25rem;
}
@media (max-width: 991px) {
  .cid-uhvb2aerCF .card-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}
.cid-uhvb2aerCF H1 {
  color: #444444;
  text-align: left;
}
.cid-uhvb2aerCF B {
  color: #444444;
}
.cid-uhvb2aerCF .mbr-section-subtitle,
.cid-uhvb2aerCF .mbr-section-btn {
  text-align: left;
}
.cid-uhvb2aoLCi {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1318.jpg");
}
.cid-uhvb2aoLCi .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uhvb2aoLCi .card-wrap {
  background-color: #ffffff;
  padding: 2rem;
  width: calc(100% + 10rem);
  margin-left: -10rem;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-uhvb2aoLCi .img-wrap img {
  width: 100%;
  border-radius: .25rem;
}
@media (max-width: 991px) {
  .cid-uhvb2aoLCi .card-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}
.cid-uhvb2aoLCi H1 {
  color: #444444;
  text-align: left;
}
.cid-uhvb2aoLCi B {
  color: #444444;
}
.cid-uhvb2aoLCi .mbr-section-subtitle,
.cid-uhvb2aoLCi .mbr-section-btn {
  text-align: left;
}
.cid-uhvb2avkG6 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1281.jpg");
}
.cid-uhvb2avkG6 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uhvb2avkG6 .card-wrap {
  background-color: #ffffff;
  padding: 2rem;
  width: calc(100% + 10rem);
  margin-left: -10rem;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-uhvb2avkG6 .img-wrap img {
  width: 100%;
  border-radius: .25rem;
}
@media (max-width: 991px) {
  .cid-uhvb2avkG6 .card-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}
.cid-uhvb2avkG6 H1 {
  color: #444444;
  text-align: left;
}
.cid-uhvb2avkG6 B {
  color: #444444;
}
.cid-uhvb2avkG6 .mbr-section-subtitle,
.cid-uhvb2avkG6 .mbr-section-btn {
  text-align: left;
}
.cid-ujV5WMKFFn {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1154.jpg");
}
.cid-ujV5WMKFFn .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-ujV5WMKFFn .card-wrap {
  background-color: #ffffff;
  padding: 2rem;
  width: calc(100% + 10rem);
  margin-left: -10rem;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-ujV5WMKFFn .img-wrap img {
  width: 100%;
  border-radius: .25rem;
}
@media (max-width: 991px) {
  .cid-ujV5WMKFFn .card-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}
.cid-ujV5WMKFFn H1 {
  color: #444444;
  text-align: left;
}
.cid-ujV5WMKFFn B {
  color: #444444;
}
.cid-ujV5WMKFFn .mbr-section-subtitle,
.cid-ujV5WMKFFn .mbr-section-btn {
  text-align: left;
}
.cid-ujV6cGfLe9 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-ujV6cGfLe9 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-ujV6cGfLe9 .card-wrap {
  background-color: #ffffff;
  padding: 2rem;
  width: calc(100% + 10rem);
  margin-left: -10rem;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-ujV6cGfLe9 .img-wrap img {
  width: 100%;
  border-radius: .25rem;
}
@media (max-width: 991px) {
  .cid-ujV6cGfLe9 .card-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}
.cid-ujV6cGfLe9 H1 {
  color: #444444;
  text-align: left;
}
.cid-ujV6cGfLe9 B {
  color: #444444;
}
.cid-ujV6cGfLe9 .mbr-section-subtitle,
.cid-ujV6cGfLe9 .mbr-section-btn {
  text-align: left;
}
.cid-uhvb2aJ3pW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ff2a2a;
}
.cid-uhvb2aJ3pW p {
  text-align: center;
}
.cid-uhvb2aJ3pW .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uhvb2aJ3pW .btn-underline:hover {
  color: #505050;
}
.cid-uhvb2aJ3pW .btn-underline:before {
  background-color: #505050;
}
.cid-uhvb2aJ3pW .social-list a:focus {
  text-decoration: none;
}
.cid-uhvb2aJ3pW .text-copyright {
  width: 100%;
}
.cid-uhvb2aJ3pW .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-uhvb2aJ3pW .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-uhvb2aJ3pW .logo-footer {
  line-height: normal;
}
.cid-uhvb2aJ3pW .copyright {
  display: flex;
  align-items: center;
}
.cid-uhvb2aJ3pW .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uhvb2aJ3pW .mbr-section-btn {
  font-size: 16px;
}
.cid-uhvb2aJ3pW .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
.cid-ujVB3p5kvZ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-ujVB3p5kvZ .nav-item,
.cid-ujVB3p5kvZ .nav-link,
.cid-ujVB3p5kvZ .navbar-caption {
  font-weight: normal;
}
.cid-ujVB3p5kvZ .nav-item:focus,
.cid-ujVB3p5kvZ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-ujVB3p5kvZ .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-ujVB3p5kvZ .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  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-ujVB3p5kvZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-ujVB3p5kvZ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-ujVB3p5kvZ .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-ujVB3p5kvZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ujVB3p5kvZ .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-ujVB3p5kvZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ujVB3p5kvZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ujVB3p5kvZ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-ujVB3p5kvZ .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-ujVB3p5kvZ .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-ujVB3p5kvZ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ujVB3p5kvZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ujVB3p5kvZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ujVB3p5kvZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-ujVB3p5kvZ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ujVB3p5kvZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ujVB3p5kvZ .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-ujVB3p5kvZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ujVB3p5kvZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ujVB3p5kvZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ujVB3p5kvZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ujVB3p5kvZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ujVB3p5kvZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ujVB3p5kvZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ujVB3p5kvZ .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-ujVB3p5kvZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ujVB3p5kvZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ujVB3p5kvZ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-ujVB3p5kvZ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ujVB3p5kvZ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ujVB3p5kvZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ujVB3p5kvZ .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-ujVB3p5kvZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ujVB3p5kvZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ujVB3p5kvZ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ujVB3p5kvZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ujVB3p5kvZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ujVB3p5kvZ .dropdown-item.active,
.cid-ujVB3p5kvZ .dropdown-item:active {
  background-color: transparent;
}
.cid-ujVB3p5kvZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ujVB3p5kvZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ujVB3p5kvZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ujVB3p5kvZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ujVB3p5kvZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ujVB3p5kvZ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ujVB3p5kvZ .navbar-buttons {
  text-align: center;
}
.cid-ujVB3p5kvZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ujVB3p5kvZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ujVB3p5kvZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ujVB3p5kvZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ujVB3p5kvZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ujVB3p5kvZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ujVB3p5kvZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ujVB3p5kvZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ujVB3p5kvZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ujVB3p5kvZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ujVB3p5kvZ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-ujVB3p5kvZ a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ujVB3p5kvZ .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-ujVB3p5kvZ .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-ujVB3p5kvZ .soc-item {
  margin: .5rem .3rem;
}
.cid-ujVB3p5kvZ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ujVB3p5kvZ .navbar {
    height: 77px;
  }
  .cid-ujVB3p5kvZ .navbar.opened {
    height: auto;
  }
  .cid-ujVB3p5kvZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujVB3pwK46 {
  padding-top: 135px;
  padding-bottom: 30px;
  background: #d90000;
}
.cid-ujVB3pwK46 .mbr-overlay {
  background: #232323;
}
.cid-ujVB3pwK46 .mbr-section-subtitle {
  color: #cccccc;
}
.cid-ujVB3pwK46 H1 {
  color: #ffffff;
}
.cid-ujVB3pwK46 .mbr-section-subtitle,
.cid-ujVB3pwK46 .mbr-section-btn {
  color: #ffffff;
}
.cid-ujVB3pH0Fy {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/-mg-6208-1200x800.jpg");
}
.cid-ujVB3pH0Fy .mbr-overlay {
  background: #000000;
}
.cid-ujVB3pYN0t {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ff2a2a;
}
.cid-ujVB3pYN0t p {
  text-align: center;
}
.cid-ujVB3pYN0t .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ujVB3pYN0t .btn-underline:hover {
  color: #505050;
}
.cid-ujVB3pYN0t .btn-underline:before {
  background-color: #505050;
}
.cid-ujVB3pYN0t .social-list a:focus {
  text-decoration: none;
}
.cid-ujVB3pYN0t .text-copyright {
  width: 100%;
}
.cid-ujVB3pYN0t .img-logo-footer {
  margin-right: 1rem;
  max-width: 5rem;
}
.cid-ujVB3pYN0t .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
}
.cid-ujVB3pYN0t .logo-footer {
  line-height: normal;
}
.cid-ujVB3pYN0t .copyright {
  display: flex;
  align-items: center;
}
.cid-ujVB3pYN0t .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ujVB3pYN0t .mbr-section-btn {
  font-size: 16px;
}
.cid-ujVB3pYN0t .mbr-section-btn a {
  margin: 0 1rem 0.5rem;
}
