body {
  font-family: Spartan;
}
.display-1 {
  font-family: 'Bebas Neue', display;
  font-size: 6rem;
  font-weight: 800;
  letter-spacing: -2px;
}
.display-1 > .mbr-iconfont {
  font-size: 9.6rem;
}
.display-2 {
  font-family: 'Bebas Neue', display;
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 700;
}
.display-2 > .mbr-iconfont {
  font-size: 5.12rem;
}
.display-4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 400;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Spartan', sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 2.56rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.8rem;
    font-size: calc( 2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((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: 1.25rem 2.5rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #3d3d3d !important;
}
.bg-success {
  background-color: #34b794 !important;
}
.bg-info {
  background-color: #f24d94 !important;
}
.bg-warning {
  background-color: #e53712 !important;
}
.bg-danger {
  background-color: #1a191d !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #171717 !important;
  border-color: #171717 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #171717 !important;
  border-color: #171717 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-info,
.btn-info:active {
  background-color: #f24d94 !important;
  border-color: #f24d94 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #e2116b !important;
  border-color: #e2116b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #e2116b !important;
  border-color: #e2116b !important;
}
.btn-success,
.btn-success:active {
  background-color: #34b794 !important;
  border-color: #34b794 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #237b64 !important;
  border-color: #237b64 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #237b64 !important;
  border-color: #237b64 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #e53712 !important;
  border-color: #e53712 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #9e260c !important;
  border-color: #9e260c !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9e260c !important;
  border-color: #9e260c !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #1a191d !important;
  border-color: #1a191d !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #0a0a0a;
  color: #0a0a0a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #3d3d3d;
  border-color: #3d3d3d;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #ca0f5f;
  color: #ca0f5f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #f24d94;
  border-color: #f24d94;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #f24d94 !important;
  border-color: #f24d94 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #1d6854;
  color: #1d6854;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #34b794;
  border-color: #34b794;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #34b794 !important;
  border-color: #34b794 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #86200b;
  color: #86200b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #e53712;
  border-color: #e53712;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #e53712 !important;
  border-color: #e53712 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #1a191d;
  border-color: #1a191d;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #1a191d !important;
  border-color: #1a191d !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: #3d3d3d !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #34b794 !important;
}
.text-info {
  color: #f24d94 !important;
}
.text-warning {
  color: #e53712 !important;
}
.text-danger {
  color: #1a191d !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #101010 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #0a0a0a !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1d6854 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #ca0f5f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #86200b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #1a191d !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #f24d94;
}
.alert-warning {
  background-color: #e53712;
}
.alert-danger {
  background-color: #1a191d;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #3d3d3d;
  border-color: #3d3d3d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #3d3d3d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b0b0b0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #8cdec8;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fbd1c8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #cccad1;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 2.56rem;
}
blockquote {
  border-color: #3d3d3d;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #3d3d3d;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #3d3d3d;
  border-bottom-color: #3d3d3d;
}
.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: #3d3d3d !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: #ffffff !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%233d3d3d' %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;
}
hr {
  border: none;
  background-color: #1a191d;
  height: 3px;
  width: 72px;
  position: absolute;
  top: -3.5rem;
  display: inline-block;
}
.line-title {
  width: 40px;
  height: 2px;
  background-color: #1a191d;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.line-title-big {
  width: 72px;
  height: 3px;
  background-color: #1a191d;
  margin-bottom: 2rem;
  display: inline-block;
}
.vertical-line:before {
  content: '';
  background-color: #1a191d;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.mbr-section-btn .btn-danger,
.btn-warning,
.btn-white,
.btn-black,
.btn-secondary,
.btn-primary,
.btn-info,
.btn-success {
  position: relative;
  background-color: #ffffff;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.mbr-section-btn .btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0, 1.01);
  transform-origin: 0% 50%;
}
.btn-white {
  color: #1a191d !important;
}
.btn-danger:hover {
  color: #1a191d !important;
}
.btn-warning:hover {
  color: #e53712 !important;
}
.btn-success:hover {
  color: #34b794 !important;
}
.btn-info:hover {
  color: #f24d94 !important;
}
.btn-black:hover {
  color: #000000 !important;
}
.btn-white:hover {
  color: #000000 !important;
}
.btn-secondary:hover {
  color: #ffffff !important;
}
.btn-primary:hover {
  color: #3d3d3d !important;
}
.btn:hover::before {
  background-color: #ffffff;
  transform: scaleX(1);
}
.btn-white {
  color: #1a191d !important;
}
.mbr-section-btn .btn-danger-outline {
  border-color: #1a191d;
}
.mbr-section-btn .btn-danger-outline,
.btn-warning-outline,
.btn-white-outline,
.btn-black-outline,
.btn-secondary-outline,
.btn-primary-outline,
.btn-info-outline,
.btn-success-outline {
  position: relative;
  background-color: transparent !important;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.btn-danger-outline {
  color: #ffffff !important;
}
.btn-secondary-outline:hover::before {
  background-color: #ffffff !important;
}
.btn-success-outline:hover::before {
  background-color: #34b794 !important;
}
.btn-info-outline:hover::before {
  background-color: #f24d94 !important;
}
.btn-primary-outline:hover::before {
  background-color: #3d3d3d !important;
}
.btn-white-outline:hover::before {
  background-color: #ffffff !important;
}
.btn-black-outline:hover::before {
  background-color: #000000 !important;
}
.btn-black-outline:hover::before {
  background-color: #e53712 !important;
}
.btn-danger-outline:hover::before {
  background-color: #1a191d !important;
}
.cid-t0heKzRdcJ {
  z-index: 1000;
  width: 100%;
}
.cid-t0heKzRdcJ nav.navbar {
  position: fixed;
}
.cid-t0heKzRdcJ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0heKzRdcJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0heKzRdcJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0heKzRdcJ .dropdown-item:hover,
.cid-t0heKzRdcJ .dropdown-item:focus {
  background: #3d3d3d !important;
  color: white !important;
}
.cid-t0heKzRdcJ .dropdown-item:hover span {
  color: white;
}
.cid-t0heKzRdcJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0heKzRdcJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0heKzRdcJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0heKzRdcJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0heKzRdcJ .nav-link {
  position: relative;
}
.cid-t0heKzRdcJ .container {
  display: flex;
  margin: auto;
}
.cid-t0heKzRdcJ .iconfont-wrapper {
  color: #1f1437 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0heKzRdcJ .dropdown-menu,
.cid-t0heKzRdcJ .navbar.opened {
  background: #ffffff !important;
}
.cid-t0heKzRdcJ .nav-item:focus,
.cid-t0heKzRdcJ .nav-link:focus {
  outline: none;
}
.cid-t0heKzRdcJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0heKzRdcJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0heKzRdcJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0heKzRdcJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0heKzRdcJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0heKzRdcJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0heKzRdcJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
  -webkit-backdrop-filter: saturate(180%) blur(50px);
  backdrop-filter: saturate(180%) blur(50px);
}
.cid-t0heKzRdcJ .navbar.opened {
  transition: all 0.3s;
}
.cid-t0heKzRdcJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0heKzRdcJ .navbar .navbar-logo img {
  width: auto;
}
.cid-t0heKzRdcJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0heKzRdcJ .navbar.collapsed {
  justify-content: center;
}
.cid-t0heKzRdcJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0heKzRdcJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0heKzRdcJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-t0heKzRdcJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0heKzRdcJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0heKzRdcJ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t0heKzRdcJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0heKzRdcJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0heKzRdcJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0heKzRdcJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0heKzRdcJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0heKzRdcJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0heKzRdcJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0heKzRdcJ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t0heKzRdcJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0heKzRdcJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0heKzRdcJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0heKzRdcJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0heKzRdcJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0heKzRdcJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0heKzRdcJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0heKzRdcJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0heKzRdcJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0heKzRdcJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0heKzRdcJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0heKzRdcJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0heKzRdcJ .dropdown-item.active,
.cid-t0heKzRdcJ .dropdown-item:active {
  background-color: transparent;
}
.cid-t0heKzRdcJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0heKzRdcJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0heKzRdcJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0heKzRdcJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0heKzRdcJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0heKzRdcJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0heKzRdcJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0heKzRdcJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0heKzRdcJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0heKzRdcJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-t0heKzRdcJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0heKzRdcJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0heKzRdcJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0heKzRdcJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0heKzRdcJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0heKzRdcJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0heKzRdcJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0heKzRdcJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0heKzRdcJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t0heKzRdcJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0heKzRdcJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t0heKzRdcJ .navbar {
    height: 70px;
  }
  .cid-t0heKzRdcJ .navbar.opened {
    height: auto;
  }
  .cid-t0heKzRdcJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sBF0OglCRK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #1a191d;
}
.cid-sBF0OglCRK .mbr-text {
  color: #767676;
}
.cid-sBF0OglCRK .mbr-title {
  color: #101010;
}
@media (max-width: 767px) {
  .cid-sBF0OglCRK .md-pb {
    margin-bottom: 2rem;
  }
}
.cid-sBF0OglCRK h3 {
  margin-bottom: 1.2rem;
}
@media (max-width: 992px) {
  .cid-sBF0OglCRK .card {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sBF0OglCRK .mbr-text {
    padding-right: 2.5rem;
  }
}
@media (min-width: 767px) {
  .cid-sBF0OglCRK .row {
    margin: 0;
  }
}
.cid-tfsN0gpQqA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tfsN0gpQqA .mbr-text {
  color: #767676;
}
.cid-tfsN0gpQqA .mbr-title {
  color: #101010;
}
@media (max-width: 767px) {
  .cid-tfsN0gpQqA .md-pb {
    margin-bottom: 2rem;
  }
}
.cid-tfsN0gpQqA h3 {
  margin-bottom: 1.2rem;
}
@media (max-width: 992px) {
  .cid-tfsN0gpQqA .card {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tfsN0gpQqA .mbr-text {
    padding-right: 2.5rem;
  }
}
@media (min-width: 767px) {
  .cid-tfsN0gpQqA .row {
    margin: 0;
  }
}
.cid-t0hg7laGxE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/header3-2000x1000.webp");
}
.cid-t0hg7laGxE .mbr-section-title {
  color: #c4bc3b;
  text-shadow: 3px 3px black;
}
.cid-t0hg7laGxE .mbr-section-subtitle {
  color: #ffffff;
  text-shadow: 1px 1px black;
}
.cid-t0hg7laGxE .line {
  background: #353535;
  height: 1px;
  width: 100%;
  margin-top: 2rem;
}
.cid-sB6hZRClaO {
  padding-top: 120px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.webp");
}
@media (max-width: 767px) {
  .cid-sB6hZRClaO h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-sB6hZRClaO .container {
    position: relative;
  }
  .cid-sB6hZRClaO .row {
    margin: 0;
  }
  .cid-sB6hZRClaO h2 {
    margin: 0;
  }
}
.cid-sB6hZRClaO .mbr-section-subtitle {
  color: #e9204f;
}
.cid-sB6hZRClaO .mbr-text {
  margin-top: 1.4rem;
}
.cid-sB6hZRClaO h2 {
  color: #ffffff;
  text-align: right;
}
.cid-uHetCbKgOP {
  padding-top: 15px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mbr-1920x1258.webp");
}
.cid-uHetCbKgOP .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-uHetCbKgOP .align-center {
    text-align: center;
  }
  .cid-uHetCbKgOP .wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uHetCbKgOP .block-btn {
  display: flex;
}
.cid-uHetCbKgOP .mbr-section-subtitle {
  margin-bottom: 2rem;
}
.cid-uHetCbKgOP h1 {
  margin-bottom: 0;
}
.cid-uHetCbKgOP .wrapper {
  background-color: #e9204f;
  border-radius: 4px;
}
@media (min-width: 767px) {
  .cid-uHetCbKgOP .container {
    padding: 0 3rem;
  }
  .cid-uHetCbKgOP .wrapper {
    padding: 3.8rem 4rem;
  }
}
@media (max-width: 992px) {
  .cid-uHetCbKgOP .block-btn {
    justify-content: center;
  }
  .cid-uHetCbKgOP .text-block {
    text-align: center;
  }
  .cid-uHetCbKgOP .mbr-section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uHetCbKgOP .block-btn {
    justify-content: flex-end;
  }
  .cid-uHetCbKgOP .btn {
    border-radius: 2px;
    margin-right: 0rem;
  }
}
.cid-uHetCbKgOP .btn-white:hover {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.cid-uHetCbKgOP .btn-white:hover::before {
  background-color: #000000 !important;
}
.cid-uHetCbKgOP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHetCbKgOP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t0hiBLxvQo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #141414;
}
.cid-t0hiBLxvQo .item-img {
  width: 100%;
  margin-bottom: 12px;
}
.cid-t0hiBLxvQo .item-img img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
}
.cid-t0hiBLxvQo .item:focus,
.cid-t0hiBLxvQo span:focus {
  outline: none;
}
.cid-t0hiBLxvQo .row {
  margin-left: -32px;
  margin-right: -32px;
}
.cid-t0hiBLxvQo .item {
  cursor: pointer;
  padding: 32px;
  margin: -1px 0 0;
  border-bottom: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
}
.cid-t0hiBLxvQo .item-img {
  border: 1px solid #595959;
  transition: border-color 200ms ease;
  overflow: hidden;
}
.cid-t0hiBLxvQo .item-img img {
  transition: 0.5s;
}
.cid-t0hiBLxvQo .item-img:hover {
  border: 1px solid #ffffff;
}
.cid-t0hiBLxvQo .item-img:hover img {
  transform: scale(1.2);
}
.cid-t0hiBLxvQo .item-wrap {
  position: relative;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-t0hiBLxvQo .item-wrap {
  background: transparent;
}
.cid-t0hiBLxvQo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t0hiBLxvQo .mbr-section-title {
  color: #232323;
}
.cid-t0hiBLxvQo .item-title {
  color: #ffffff;
  margin-bottom: 0;
  text-align: left;
}
.cid-t0hiBLxvQo .mbr-text,
.cid-t0hiBLxvQo .mbr-section-btn {
  text-align: left;
}
.cid-t0hiBLxvQo .item-subtitle {
  text-align: center;
}
.cid-t0hiBLxvQo .buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -12px;
}
.cid-t0hiBLxvQo .buttons-container .item-button {
  margin: 0;
}
.cid-t0hiBLxvQo .buttons-container .btn {
  margin: 0 0 16px 12px;
}
.cid-t0hiBLxvQo .buttons-container .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-t0hiBLxvQo .buttons-container .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
@media (max-width: 991px) {
  .cid-t0hiBLxvQo .item:not(:last-child) {
    border-bottom: 1px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .cid-t0hiBLxvQo .item:not(:last-child) {
    border-right: 1px solid #ffffff;
  }
}
@media (max-width: 767px) {
  .cid-t0hiBLxvQo .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 575px) {
  .cid-t0hiBLxvQo .item {
    padding: 24px;
  }
}
.cid-t0hGyBGeep {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #141414;
}
.cid-t0hGyBGeep .item-img {
  width: 100%;
  margin-bottom: 12px;
}
.cid-t0hGyBGeep .item-img img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
}
.cid-t0hGyBGeep .item:focus,
.cid-t0hGyBGeep span:focus {
  outline: none;
}
.cid-t0hGyBGeep .row {
  margin-left: -32px;
  margin-right: -32px;
}
.cid-t0hGyBGeep .item {
  cursor: pointer;
  padding: 32px;
  margin: -1px 0 0;
  border-bottom: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
}
.cid-t0hGyBGeep .item-img {
  border: 1px solid #595959;
  transition: border-color 200ms ease;
  overflow: hidden;
}
.cid-t0hGyBGeep .item-img img {
  transition: 0.5s;
}
.cid-t0hGyBGeep .item-img:hover {
  border: 1px solid #ffffff;
}
.cid-t0hGyBGeep .item-img:hover img {
  transform: scale(1.2);
}
.cid-t0hGyBGeep .item-wrap {
  position: relative;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-t0hGyBGeep .item-wrap {
  background: transparent;
}
.cid-t0hGyBGeep .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t0hGyBGeep .mbr-section-title {
  color: #232323;
}
.cid-t0hGyBGeep .item-title {
  color: #ffffff;
  margin-bottom: 0;
  text-align: left;
}
.cid-t0hGyBGeep .mbr-text,
.cid-t0hGyBGeep .mbr-section-btn {
  text-align: left;
}
.cid-t0hGyBGeep .item-subtitle {
  text-align: center;
}
.cid-t0hGyBGeep .buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -12px;
}
.cid-t0hGyBGeep .buttons-container .item-button {
  margin: 0;
}
.cid-t0hGyBGeep .buttons-container .btn {
  margin: 0 0 16px 12px;
}
.cid-t0hGyBGeep .buttons-container .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-t0hGyBGeep .buttons-container .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
@media (max-width: 991px) {
  .cid-t0hGyBGeep .item:not(:last-child) {
    border-bottom: 1px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .cid-t0hGyBGeep .item:not(:last-child) {
    border-right: 1px solid #ffffff;
  }
}
@media (max-width: 767px) {
  .cid-t0hGyBGeep .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 575px) {
  .cid-t0hGyBGeep .item {
    padding: 24px;
  }
}
.cid-tV8fQFl4YF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #141414;
}
.cid-tV8fQFl4YF .item-img {
  width: 100%;
  margin-bottom: 12px;
}
.cid-tV8fQFl4YF .item-img img {
  width: 100%;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
}
.cid-tV8fQFl4YF .item:focus,
.cid-tV8fQFl4YF span:focus {
  outline: none;
}
.cid-tV8fQFl4YF .row {
  margin-left: -32px;
  margin-right: -32px;
}
.cid-tV8fQFl4YF .item {
  cursor: pointer;
  padding: 32px;
  margin: -1px 0 0;
  border-bottom: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
}
.cid-tV8fQFl4YF .item-img {
  border: 1px solid #595959;
  transition: border-color 200ms ease;
  overflow: hidden;
}
.cid-tV8fQFl4YF .item-img img {
  transition: 0.5s;
}
.cid-tV8fQFl4YF .item-img:hover {
  border: 1px solid #ffffff;
}
.cid-tV8fQFl4YF .item-img:hover img {
  transform: scale(1.3);
}
.cid-tV8fQFl4YF .item-wrap {
  position: relative;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tV8fQFl4YF .item-wrap {
  background: transparent;
}
.cid-tV8fQFl4YF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tV8fQFl4YF .mbr-section-title {
  color: #232323;
}
.cid-tV8fQFl4YF .item-title {
  color: #ffffff;
  margin-bottom: 0;
  text-align: left;
}
.cid-tV8fQFl4YF .mbr-text,
.cid-tV8fQFl4YF .mbr-section-btn {
  text-align: left;
}
.cid-tV8fQFl4YF .item-subtitle {
  text-align: center;
}
.cid-tV8fQFl4YF .buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -12px;
}
.cid-tV8fQFl4YF .buttons-container .item-button {
  margin: 0;
}
.cid-tV8fQFl4YF .buttons-container .btn {
  margin: 0 0 16px 12px;
}
.cid-tV8fQFl4YF .buttons-container .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-tV8fQFl4YF .buttons-container .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
@media (max-width: 991px) {
  .cid-tV8fQFl4YF .item:not(:last-child) {
    border-bottom: 1px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .cid-tV8fQFl4YF .item:not(:last-child) {
    border-right: 1px solid #ffffff;
  }
}
@media (max-width: 767px) {
  .cid-tV8fQFl4YF .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 575px) {
  .cid-tV8fQFl4YF .item {
    padding: 24px;
  }
}
.cid-sBFb9ze0s9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #1a191d;
}
.cid-sBFb9ze0s9 .mbr-text {
  color: #767676;
}
.cid-sBFb9ze0s9 .mbr-title {
  color: #101010;
}
@media (max-width: 767px) {
  .cid-sBFb9ze0s9 .md-pb {
    margin-bottom: 2rem;
  }
}
.cid-sBFb9ze0s9 h3 {
  margin-bottom: 1.2rem;
}
@media (max-width: 992px) {
  .cid-sBFb9ze0s9 .card {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sBFb9ze0s9 .mbr-text {
    padding-right: 2.5rem;
  }
}
@media (min-width: 767px) {
  .cid-sBFb9ze0s9 .row {
    margin: 0;
  }
}
.cid-uDPKt5KKmv {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #1a191d;
}
.cid-uDPKt5KKmv .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uDPKt5KKmv .mbr-title {
  color: #101010;
}
@media (max-width: 767px) {
  .cid-uDPKt5KKmv .md-pb {
    margin-bottom: 2rem;
  }
}
.cid-uDPKt5KKmv h3 {
  margin-bottom: 1.2rem;
}
@media (max-width: 992px) {
  .cid-uDPKt5KKmv .card {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDPKt5KKmv .mbr-text {
    padding-right: 2.5rem;
  }
}
@media (min-width: 767px) {
  .cid-uDPKt5KKmv .row {
    margin: 0;
  }
}
.cid-sa6jIxi2XU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #1a191d;
}
.cid-sa6jIxi2XU .mbr-section-subtitle,
.cid-sa6jIxi2XU .mbr-section-title {
  margin-bottom: 12px;
}
.cid-sa6jIxi2XU .mbr-text {
  margin-bottom: 2rem;
  color: #ffffff;
}
.cid-sa6jIxi2XU .form-group {
  margin-bottom: 0;
  padding-right: 0;
}
.cid-sa6jIxi2XU .form-control {
  border: none !important;
  padding: 14px 18px;
  background-color: #fef2ed !important;
  font-size: 16px;
  color: #ffffff;
  background-color: transparent !important;
  border-radius: 4px;
  border: 1px solid #6f6f6f !important;
}
.cid-sa6jIxi2XU .input-group-btn {
  padding-left: 0;
}
.cid-sa6jIxi2XU .input-group-btn .btn {
  font-weight: 600;
  padding: 12px 18px;
  width: 100%;
}
.cid-sa6jIxi2XU .mbr-form .input-group-btn .btn {
  border-radius: 4px !important;
}
.cid-sa6jIxi2XU .mbr-form .btn {
  margin: 0;
}
.cid-sa6jIxi2XU input::-webkit-input-placeholder {
  color: #ffffff;
  opacity: .6;
}
.cid-sa6jIxi2XU input::-moz-placeholder {
  color: #ffffff;
  opacity: .6;
}
.cid-sa6jIxi2XU .image img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sa6jIxi2XU .image {
    margin-bottom: 2rem;
    order: 1;
  }
}
.cid-sa6jIxi2XU .mbr-section-title {
  color: #ffffff;
}
.cid-sa6jIxi2XU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sB1c8N2dOR {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1273.webp");
}
.cid-sB1c8N2dOR .link {
  margin: 0;
}
.cid-sB1c8N2dOR .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-sB1c8N2dOR .card {
    margin-bottom: 1rem;
  }
}
.cid-sB1c8N2dOR .card-title {
  margin-bottom: 0rem;
}
.cid-sB1c8N2dOR a {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sB1c8N2dOR .card-box:hover a:hover {
  color: #1a191d !important;
}
.cid-sB1c8N2dOR .align-center {
  text-align: center;
}
.cid-sB1c8N2dOR .card-title,
.cid-sB1c8N2dOR .card-img {
  text-align: right;
}
.cid-sa6jXKqAqJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #1a191d;
}
.cid-sa6jXKqAqJ .brand_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.cid-sa6jXKqAqJ .footer_logo {
  width: auto;
  object-fit: cover;
  margin-bottom: 15px;
}
.cid-sa6jXKqAqJ .footer_title {
  margin-bottom: 15px;
  opacity: .8;
}
.cid-sa6jXKqAqJ .footer_items {
  margin-bottom: .25rem;
  font-weight: 500;
}
.cid-sa6jXKqAqJ .footer_items a:hover {
  color: #ffffff !important;
}
.cid-sa6jXKqAqJ .privacy {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sa6jXKqAqJ .privacy {
    text-align: left;
  }
}
.cid-sa6jXKqAqJ .line {
  position: relative;
  margin: 90px 0 25px;
  height: 1px;
}
.cid-sa6jXKqAqJ .line:before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #f3f3f3;
  left: -32px;
  width: calc(100% + 64px);
}
@media (max-width: 767px) {
  .cid-sa6jXKqAqJ .divider {
    margin: 20px 0;
  }
  .cid-sa6jXKqAqJ .footer_wrap {
    text-align: center;
    margin-bottom: 25px;
  }
  .cid-sa6jXKqAqJ .footer_wrap img {
    margin: auto;
  }
  .cid-sa6jXKqAqJ .privacy {
    text-align: center;
  }
}
.cid-sBaS1nJ8S5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #1a191d;
}
.cid-sBaS1nJ8S5 .mbr-text {
  color: #767676;
}
.cid-sBaS1nJ8S5 .mbr-title {
  color: #101010;
}
@media (max-width: 767px) {
  .cid-sBaS1nJ8S5 .md-pb {
    margin-bottom: 2rem;
  }
}
.cid-sBaS1nJ8S5 h3 {
  margin-bottom: 1.2rem;
}
@media (max-width: 992px) {
  .cid-sBaS1nJ8S5 .card {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sBaS1nJ8S5 .mbr-text {
    padding-right: 2.5rem;
  }
}
@media (min-width: 767px) {
  .cid-sBaS1nJ8S5 .row {
    margin: 0;
  }
}
.cid-uDPU4Ek4nm {
  overflow: hidden;
  background-color: #131c28;
}
.cid-uDPU4Ek4nm .decor-wrap {
  position: absolute;
  top: 3rem;
  right: 85%;
  width: 1600px;
  height: 850px;
  background-color: #ec111a;
  transform: skewX(-20deg);
}
.cid-uDPU4Ek4nm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDPU4Ek4nm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDPU4Ek4nm .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uDPU4Ek4nm .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .cid-uDPU4Ek4nm .container {
    padding: 0 15px;
  }
}
.cid-uDPU4Ek4nm .row {
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cid-uDPU4Ek4nm .content-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uDPU4Ek4nm .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uDPU4Ek4nm .content-wrapper .border-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 80%;
  height: 1px;
  background-color: #68707c;
  margin-bottom: 60px;
}
.cid-uDPU4Ek4nm .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-uDPU4Ek4nm .content-wrapper .border-wrap {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uDPU4Ek4nm .content-wrapper .mbr-text {
  display: inline-flex;
  width: 80%;
  margin-bottom: 0;
  padding-left: 80px;
}
@media (max-width: 1440px) {
  .cid-uDPU4Ek4nm .content-wrapper .mbr-text {
    padding-left: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-uDPU4Ek4nm .content-wrapper .mbr-text {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .cid-uDPU4Ek4nm .content-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uDPU4Ek4nm .items-wrapper {
  padding-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 992px) {
  .cid-uDPU4Ek4nm .items-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.cid-uDPU4Ek4nm .items-wrapper .item .item-wrapper .item-img {
  display: flex;
  justify-content: center;
  padding: 15px 25px;
  background-color: #ffffff;
}
.cid-uDPU4Ek4nm .items-wrapper .item .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-uDPU4Ek4nm .mbr-section-title {
  color: #ffffff;
}
.cid-uDPU4Ek4nm .mbr-text {
  color: #68707c;
}
.cid-uDPU4Ek4nm .mbr-text,
.cid-uDPU4Ek4nm .text-wrapper {
  color: #ffffff;
}
.cid-sAZiC9cjic {
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-sAZiC9cjic .link {
  margin: 0;
}
.cid-sAZiC9cjic .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-sAZiC9cjic .card {
    margin-bottom: 1rem;
  }
}
.cid-sAZiC9cjic .card-title {
  margin-bottom: 0rem;
}
.cid-sAZiC9cjic a {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sAZiC9cjic .card-box:hover a:hover {
  color: #1a191d !important;
}
.cid-sAZiC9cjic .align-center {
  text-align: center;
}
.cid-sAZiC9cjic .card-title,
.cid-sAZiC9cjic .card-img {
  text-align: center;
  color: #ffffff;
}
.cid-tfsCMtnpED {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tfsCMtnpED .row {
  flex-direction: row-reverse;
}
.cid-tfsCMtnpED .mbr-section-title {
  color: #160830;
}
.cid-tfsCMtnpED .mbr-text,
.cid-tfsCMtnpED .mbr-section-btn {
  color: #353535;
}
.cid-tfsCMtnpED .mbr-section-subtitle {
  color: #1468bd;
}
.cid-tfsCMtnpED img {
  border-radius: 2rem;
}
.cid-um9lrBShnJ {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-um9lrBShnJ .mbr-iconfont-1 {
  color: #1468bd;
  font-size: 3.5rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-um9lrBShnJ .card-inner {
  transition: 0.7s;
  display: flex;
}
.cid-um9lrBShnJ .link {
  margin: 0;
}
.cid-um9lrBShnJ .card-title {
  position: relative;
  margin-bottom: 0.2rem;
  padding-bottom: 0.5rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-um9lrBShnJ .mbr-iconfont {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-um9lrBShnJ .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-um9lrBShnJ .card:hover .mbr-iconfont {
  color: #101010;
}
.cid-um9lrBShnJ .card:hover .card-title {
  color: #1a191d;
}
.cid-um9lrBShnJ .media-container-row {
  align-items: flex-end;
}
@media (max-width: 767px) {
  .cid-um9lrBShnJ .card {
    padding: 0;
  }
  .cid-um9lrBShnJ .card-inner {
    flex-direction: column;
    text-align: center;
  }
  .cid-um9lrBShnJ .card-title {
    margin-top: 2rem;
  }
  .cid-um9lrBShnJ .mbr-section-title,
  .cid-um9lrBShnJ .mbr-section-subtitle {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-um9lrBShnJ .row {
    margin: 0;
  }
}
.cid-um9lrBShnJ .card {
  position: relative;
  border-radius: 0px;
  transition: 0.7s;
  margin-top: 1rem;
}
.cid-um9lrBShnJ .mbr-section-subtitle {
  color: #e9204f;
}
.cid-um9lrBShnJ .mbr-section-title {
  font-weight: 800;
}
.cid-um9lrBShnJ h2 {
  margin-bottom: 0;
}
.cid-um9lrBShnJ .title-block {
  margin-bottom: 3rem;
}
.cid-um9lrBShnJ .card-box {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
@media (min-width: 767px) {
  .cid-um9lrBShnJ .card-box {
    margin-left: 1.5rem;
  }
}
.cid-um9lrBShnJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-um9lrBShnJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tfsEKrqmzs {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tfsEKrqmzs img {
  width: 100%;
  transition: 0.3s ease-out;
  border-radius: 50%;
}
.cid-tfsEKrqmzs .card-footer {
  border-top: none;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 300px) {
  .cid-tfsEKrqmzs .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-tfsEKrqmzs .mbr-iconfont-social {
  font-size: 16px;
}
.cid-tfsEKrqmzs .icon {
  display: flex;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.27);
  border-radius: 50%;
  padding: 0.5rem;
  margin: 0 0.3rem;
  transition: 0.3s ease-out;
}
.cid-tfsEKrqmzs .panel-item {
  position: relative;
  background-color: rgba(83, 83, 83, 0.85);
  border-radius: 50%;
}
.cid-tfsEKrqmzs .mbr-section-title {
  color: #101010;
  margin-bottom: 1.3rem;
}
.cid-tfsEKrqmzs .mbr-author-name {
  color: #ffffff;
}
.cid-tfsEKrqmzs .mbr-author-desc {
  color: #ffffff;
}
.cid-tfsEKrqmzs .social-list {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tfsEKrqmzs .panel-item:hover img {
  opacity: 0.1;
}
.cid-tfsEKrqmzs .panel-item:hover .card-footer {
  opacity: 1;
}
.cid-tfsEKrqmzs .icon:hover {
  background-color: #ffffff;
  color: #1a191d;
}
@media (max-width: 767px) {
  .cid-tfsEKrqmzs .mbr-testimonial {
    padding: 0;
  }
  .cid-tfsEKrqmzs .title {
    padding: 0;
  }
  .cid-tfsEKrqmzs .align-center {
    text-align: center;
  }
}
@media (min-width: 767px) {
  .cid-tfsEKrqmzs .mbr-section-subtitle {
    margin-bottom: 3.5rem;
  }
}
@media (max-width: 992px) {
  .cid-tfsEKrqmzs .mbr-testimonial {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tfsEKrqmzs .mbr-testimonial {
    padding: 0 2.5rem;
  }
}
.cid-tfsHDLOI4U {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #161616;
}
.cid-tfsHDLOI4U .link {
  margin: 0;
}
.cid-tfsHDLOI4U .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tfsHDLOI4U .card {
    margin-bottom: 1rem;
  }
}
.cid-tfsHDLOI4U .card-title {
  margin-bottom: 0rem;
}
.cid-tfsHDLOI4U a {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tfsHDLOI4U .card-box:hover a:hover {
  color: #1a191d !important;
}
.cid-tfsHDLOI4U .align-center {
  text-align: center;
}
.cid-tfsHDLOI4U .card-title,
.cid-tfsHDLOI4U .card-img {
  color: #ffffff;
}
.cid-uobz4iI8I1 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #edefeb;
}
.cid-uobz4iI8I1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uobz4iI8I1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uobz4iI8I1 .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uobz4iI8I1 .item {
    margin-bottom: 1rem;
  }
}
.cid-uobz4iI8I1 .item-wrapper {
  position: relative;
}
.cid-uobz4iI8I1 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-uobz4iI8I1 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uobz4iI8I1 .carousel-control,
.cid-uobz4iI8I1 .close {
  background: #1b1b1b;
}
.cid-uobz4iI8I1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uobz4iI8I1 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uobz4iI8I1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uobz4iI8I1 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uobz4iI8I1 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uobz4iI8I1 .close::before {
  content: '\e91a';
}
.cid-uobz4iI8I1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uobz4iI8I1 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uobz4iI8I1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uobz4iI8I1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uobz4iI8I1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uobz4iI8I1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uobz4iI8I1 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uobz4iI8I1 .carousel-indicators li.active,
.cid-uobz4iI8I1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uobz4iI8I1 .carousel-indicators li::after,
.cid-uobz4iI8I1 .carousel-indicators li::before {
  content: none;
}
.cid-uobz4iI8I1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uobz4iI8I1 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uobz4iI8I1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uobz4iI8I1 .carousel-indicators {
    display: none;
  }
}
.cid-uobz4iI8I1 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uobz4iI8I1 .carousel-inner > .active {
  display: block;
}
.cid-uobz4iI8I1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uobz4iI8I1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uobz4iI8I1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uobz4iI8I1 .carousel-control,
  .cid-uobz4iI8I1 .carousel-indicators,
  .cid-uobz4iI8I1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uobz4iI8I1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uobz4iI8I1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uobz4iI8I1 .carousel-indicators .active,
.cid-uobz4iI8I1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uobz4iI8I1 .carousel-indicators .active {
  background: #fff;
}
.cid-uobz4iI8I1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uobz4iI8I1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uobz4iI8I1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uobz4iI8I1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uobz4iI8I1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uobz4iI8I1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uobz4iI8I1 .carousel {
  width: 100%;
}
.cid-uobz4iI8I1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uobz4iI8I1 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uobz4iI8I1 .modal.fade .modal-dialog,
.cid-uobz4iI8I1 .modal.in .modal-dialog {
  transform: none;
}
.cid-uobz4iI8I1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uobz4iI8I1 .content-head {
  max-width: 800px;
}
.cid-tfsCu7Qvj1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tfsCu7Qvj1 .fb-page,
.cid-tfsCu7Qvj1 span,
.cid-tfsCu7Qvj1 iframe {
  width: 500px;
  height: 970px;
}
.cid-tfsCu7Qvj1 blockquote {
  display: none;
}
.cid-tfsCu7Qvj1 .fb-page {
  background-color: #1877f2;
  border-radius: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMin meet' viewBox='0 0 262 266.895'><path id='path3087' fill='%23fff' d='M182.409,262.307v-99.803h33.499l5.016-38.895h-38.515V98.777c0-11.261,3.127-18.935,19.275-18.935 l20.596-0.009V45.045c-3.562-0.474-15.788-1.533-30.012-1.533c-29.695,0-50.025,18.126-50.025,51.413v28.684h-33.585v38.895h33.585 v99.803H182.409z'></path></svg>");
}
.cid-tfsCu7Qvj1 .mbr-section-title {
  color: #149dcc;
}
.cid-tfsF8eFeHz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/426610a0-8b87-4528-b964-381c10b40d2f-tenc89673f3fb69981d9-1360x764.webp");
}
.cid-tfsF8eFeHz .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tfsF8eFeHz .align-center {
    text-align: center;
  }
  .cid-tfsF8eFeHz .wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tfsF8eFeHz .block-btn {
  display: flex;
}
.cid-tfsF8eFeHz .mbr-section-subtitle {
  margin-bottom: 2rem;
}
.cid-tfsF8eFeHz h1 {
  margin-bottom: 0;
}
.cid-tfsF8eFeHz .wrapper {
  background-color: #3d3d3d;
  border-radius: 4px;
}
@media (min-width: 767px) {
  .cid-tfsF8eFeHz .container {
    padding: 0 3rem;
  }
  .cid-tfsF8eFeHz .wrapper {
    padding: 3.8rem 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tfsF8eFeHz .block-btn {
    justify-content: center;
  }
  .cid-tfsF8eFeHz .text-block {
    text-align: center;
  }
  .cid-tfsF8eFeHz .mbr-section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tfsF8eFeHz .block-btn {
    justify-content: flex-end;
  }
  .cid-tfsF8eFeHz .btn {
    border-radius: 2px;
    margin-right: 0rem;
  }
}
.cid-tfsF8eFeHz .btn-white:hover {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.cid-tfsF8eFeHz .btn-white:hover::before {
  background-color: #000000 !important;
}
.cid-um9cz4E5rL {
  background-color: #ffffff;
}
.cid-um9cz4E5rL .row {
  flex-direction: row-reverse;
}
.cid-um9cz4E5rL .mbr-section-title {
  color: #160830;
}
.cid-um9cz4E5rL .mbr-text,
.cid-um9cz4E5rL .mbr-section-btn {
  color: #353535;
}
.cid-um9cz4E5rL .mbr-section-subtitle {
  color: #1468bd;
}
.cid-um9cz4E5rL img {
  border-radius: 2rem;
}
#custom-html-1l {
  /* Type valid CSS here */
}
#custom-html-1l div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1l p {
  font-size: 60px;
  color: #777;
}
.cid-um9cz6OD3L {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/426610a0-8b87-4528-b964-381c10b40d2f-tenc89673f3fb69981d9-1360x764.webp");
}
.cid-um9cz6OD3L .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-um9cz6OD3L .align-center {
    text-align: center;
  }
  .cid-um9cz6OD3L .wrapper {
    padding: 2rem 1rem;
  }
}
.cid-um9cz6OD3L .block-btn {
  display: flex;
}
.cid-um9cz6OD3L .mbr-section-subtitle {
  margin-bottom: 2rem;
}
.cid-um9cz6OD3L h1 {
  margin-bottom: 0;
}
.cid-um9cz6OD3L .wrapper {
  background-color: #3d3d3d;
  border-radius: 4px;
}
@media (min-width: 767px) {
  .cid-um9cz6OD3L .container {
    padding: 0 3rem;
  }
  .cid-um9cz6OD3L .wrapper {
    padding: 3.8rem 4rem;
  }
}
@media (max-width: 992px) {
  .cid-um9cz6OD3L .block-btn {
    justify-content: center;
  }
  .cid-um9cz6OD3L .text-block {
    text-align: center;
  }
  .cid-um9cz6OD3L .mbr-section-title {
    text-align: center;
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-um9cz6OD3L .block-btn {
    justify-content: flex-end;
  }
  .cid-um9cz6OD3L .btn {
    border-radius: 2px;
    margin-right: 0rem;
  }
}
.cid-um9cz6OD3L .btn-white:hover {
  color: #ffffff !important;
  border-color: #000000 !important;
}
.cid-um9cz6OD3L .btn-white:hover::before {
  background-color: #000000 !important;
}
.cid-t0heKzRdcJ {
  z-index: 1000;
  width: 100%;
}
.cid-t0heKzRdcJ nav.navbar {
  position: fixed;
}
.cid-t0heKzRdcJ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0heKzRdcJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0heKzRdcJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0heKzRdcJ .dropdown-item:hover,
.cid-t0heKzRdcJ .dropdown-item:focus {
  background: #3d3d3d !important;
  color: white !important;
}
.cid-t0heKzRdcJ .dropdown-item:hover span {
  color: white;
}
.cid-t0heKzRdcJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0heKzRdcJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0heKzRdcJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0heKzRdcJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0heKzRdcJ .nav-link {
  position: relative;
}
.cid-t0heKzRdcJ .container {
  display: flex;
  margin: auto;
}
.cid-t0heKzRdcJ .iconfont-wrapper {
  color: #1f1437 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0heKzRdcJ .dropdown-menu,
.cid-t0heKzRdcJ .navbar.opened {
  background: #ffffff !important;
}
.cid-t0heKzRdcJ .nav-item:focus,
.cid-t0heKzRdcJ .nav-link:focus {
  outline: none;
}
.cid-t0heKzRdcJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0heKzRdcJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0heKzRdcJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0heKzRdcJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0heKzRdcJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0heKzRdcJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0heKzRdcJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
  -webkit-backdrop-filter: saturate(180%) blur(50px);
  backdrop-filter: saturate(180%) blur(50px);
}
.cid-t0heKzRdcJ .navbar.opened {
  transition: all 0.3s;
}
.cid-t0heKzRdcJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0heKzRdcJ .navbar .navbar-logo img {
  width: auto;
}
.cid-t0heKzRdcJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0heKzRdcJ .navbar.collapsed {
  justify-content: center;
}
.cid-t0heKzRdcJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0heKzRdcJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0heKzRdcJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.6rem);
  }
}
.cid-t0heKzRdcJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0heKzRdcJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0heKzRdcJ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-t0heKzRdcJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0heKzRdcJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0heKzRdcJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0heKzRdcJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0heKzRdcJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0heKzRdcJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0heKzRdcJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0heKzRdcJ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-t0heKzRdcJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0heKzRdcJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0heKzRdcJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0heKzRdcJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0heKzRdcJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0heKzRdcJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0heKzRdcJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0heKzRdcJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0heKzRdcJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0heKzRdcJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0heKzRdcJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0heKzRdcJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0heKzRdcJ .dropdown-item.active,
.cid-t0heKzRdcJ .dropdown-item:active {
  background-color: transparent;
}
.cid-t0heKzRdcJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0heKzRdcJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0heKzRdcJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0heKzRdcJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0heKzRdcJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0heKzRdcJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0heKzRdcJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0heKzRdcJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0heKzRdcJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0heKzRdcJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-t0heKzRdcJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0heKzRdcJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0heKzRdcJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0heKzRdcJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0heKzRdcJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0heKzRdcJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0heKzRdcJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0heKzRdcJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0heKzRdcJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t0heKzRdcJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0heKzRdcJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t0heKzRdcJ .navbar {
    height: 70px;
  }
  .cid-t0heKzRdcJ .navbar.opened {
    height: auto;
  }
  .cid-t0heKzRdcJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHeuDqqafg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #151e11;
}
.cid-uHeuDqqafg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHeuDqqafg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHeuDqqafg .row {
  justify-content: center;
}
.cid-uHeuDqqafg .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uHeuDqqafg .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uHeuDqqafg .title-wrapper .mbr-section-title span {
  color: #ffbe0d;
}
.cid-uHeuDqqafg .mbr-section-title {
  color: #fff7ee;
  text-align: center;
}
.cid-sa6jXKqAqJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #1a191d;
}
.cid-sa6jXKqAqJ .brand_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.cid-sa6jXKqAqJ .footer_logo {
  width: auto;
  object-fit: cover;
  margin-bottom: 15px;
}
.cid-sa6jXKqAqJ .footer_title {
  margin-bottom: 15px;
  opacity: .8;
}
.cid-sa6jXKqAqJ .footer_items {
  margin-bottom: .25rem;
  font-weight: 500;
}
.cid-sa6jXKqAqJ .footer_items a:hover {
  color: #ffffff !important;
}
.cid-sa6jXKqAqJ .privacy {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sa6jXKqAqJ .privacy {
    text-align: left;
  }
}
.cid-sa6jXKqAqJ .line {
  position: relative;
  margin: 90px 0 25px;
  height: 1px;
}
.cid-sa6jXKqAqJ .line:before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #f3f3f3;
  left: -32px;
  width: calc(100% + 64px);
}
@media (max-width: 767px) {
  .cid-sa6jXKqAqJ .divider {
    margin: 20px 0;
  }
  .cid-sa6jXKqAqJ .footer_wrap {
    text-align: center;
    margin-bottom: 25px;
  }
  .cid-sa6jXKqAqJ .footer_wrap img {
    margin: auto;
  }
  .cid-sa6jXKqAqJ .privacy {
    text-align: center;
  }
}
