@import url(https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap);





body {
  font-family: Barlow;
}
.display-1 {
  font-family: 'Roboto', sans-serif;
  font-size: 3.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.76rem;
}
.display-2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.6rem;
  line-height: 1.3;
}
.display-2 > .mbr-iconfont {
  font-size: 4.16rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.2rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- 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.88rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #800002 !important;
}
.bg-success {
  background-color: #cacaca !important;
}
.bg-info {
  background-color: #fb7522 !important;
}
.bg-warning {
  background-color: #4da92e !important;
}
.bg-danger {
  background-color: #ff4e4e !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #800002 !important;
  border-color: #800002 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #340001 !important;
  border-color: #340001 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #340001 !important;
  border-color: #340001 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #767676 !important;
  border-color: #767676 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #505050 !important;
  border-color: #505050 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #505050 !important;
  border-color: #505050 !important;
}
.btn-info,
.btn-info:active {
  background-color: #fb7522 !important;
  border-color: #fb7522 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #cd5104 !important;
  border-color: #cd5104 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #cd5104 !important;
  border-color: #cd5104 !important;
}
.btn-success,
.btn-success:active {
  background-color: #cacaca !important;
  border-color: #cacaca !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #a4a4a4 !important;
  border-color: #a4a4a4 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #a4a4a4 !important;
  border-color: #a4a4a4 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #4da92e !important;
  border-color: #4da92e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #326d1e !important;
  border-color: #326d1e !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #326d1e !important;
  border-color: #326d1e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff4e4e !important;
  border-color: #ff4e4e !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff0101 !important;
  border-color: #ff0101 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff0101 !important;
  border-color: #ff0101 !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: #1a0000;
  color: #1a0000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #800002;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #800002 !important;
  border-color: #800002 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #434343;
  color: #434343;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #767676;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #767676 !important;
  border-color: #767676 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #b44703;
  color: #b44703;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #000000 !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #fb7522;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #fb7522 !important;
  border-color: #fb7522 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #979797;
  color: #979797;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #cacaca;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #cacaca !important;
  border-color: #cacaca !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #285918;
  color: #285918;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #000000 !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #4da92e;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #4da92e !important;
  border-color: #4da92e !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #e70000;
  color: #e70000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #ff4e4e;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4e4e !important;
  border-color: #ff4e4e !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: #000000 !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  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 !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #000000 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #800002 !important;
}
.text-secondary {
  color: #767676 !important;
}
.text-success {
  color: #cacaca !important;
}
.text-info {
  color: #fb7522 !important;
}
.text-warning {
  color: #4da92e !important;
}
.text-danger {
  color: #ff4e4e !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #1a0000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #434343 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #979797 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #b44703 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #285918 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #e70000 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #fb7522;
}
.alert-warning {
  background-color: #4da92e;
}
.alert-danger {
  background-color: #ff4e4e;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #800002;
  border-color: #800002;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #800002;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ff0004;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fff2ea;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #93db7b;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #800002;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #800002;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  -webkit-transition: 0.4s;
  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: #800002;
  border-bottom-color: #800002;
}
.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: #800002 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #767676 !important;
  box-shadow: none !important;
}
.sidebar-block .mbr-gallery-item .galleryItem .onsale {
  top: 0px;
}
.sidebar-block .mbr-gallery-item .galleryItem .sidebar_wraper {
  bottom: -35px;
  margin-left: 1rem;
}
.cid-rKm3fK0Hms .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rKm3fK0Hms .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rKm3fK0Hms .navbar .dropdown-item {
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #d6d6d6;
  background: #efefef !important;
}
.cid-rKm3fK0Hms .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-rKm3fK0Hms .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-rKm3fK0Hms .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rKm3fK0Hms .navbar .dropdown-menu {
  min-width: 100%;
  padding: 3px 0 0 0;
  background: transparent !important;
}
.cid-rKm3fK0Hms .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #800002;
}
.cid-rKm3fK0Hms .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-rKm3fK0Hms .navbar.collapsed {
  flex-direction: row !important;
}
.cid-rKm3fK0Hms .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rKm3fK0Hms .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 92.94285714vh;
  }
}
.cid-rKm3fK0Hms .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-rKm3fK0Hms .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rKm3fK0Hms .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rKm3fK0Hms .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-rKm3fK0Hms .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-rKm3fK0Hms .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.667em;
}
.cid-rKm3fK0Hms .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rKm3fK0Hms .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-rKm3fK0Hms .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-rKm3fK0Hms .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rKm3fK0Hms .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-rKm3fK0Hms .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rKm3fK0Hms .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rKm3fK0Hms .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-rKm3fK0Hms .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-rKm3fK0Hms .navbar .nav-dropdown .link {
    margin: 0.667em 1.667em;
  }
  .cid-rKm3fK0Hms .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rKm3fK0Hms .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rKm3fK0Hms .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
    color: inherit !important;
  }
  .cid-rKm3fK0Hms .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-rKm3fK0Hms .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rKm3fK0Hms .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-rKm3fK0Hms .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rKm3fK0Hms .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rKm3fK0Hms .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rKm3fK0Hms .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-rKm3fK0Hms .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rKm3fK0Hms .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rKm3fK0Hms .dropdown-item.active,
.cid-rKm3fK0Hms .dropdown-item:active {
  background-color: transparent;
}
.cid-rKm3fK0Hms .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rKm3fK0Hms .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rKm3fK0Hms .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rKm3fK0Hms .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rKm3fK0Hms .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-rKm3fK0Hms .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rKm3fK0Hms ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-rKm3fK0Hms .navbar-buttons {
  text-align: center;
}
.cid-rKm3fK0Hms button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rKm3fK0Hms button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rKm3fK0Hms button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rKm3fK0Hms button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rKm3fK0Hms button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rKm3fK0Hms button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rKm3fK0Hms nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rKm3fK0Hms nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rKm3fK0Hms nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rKm3fK0Hms nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rKm3fK0Hms .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rKm3fK0Hms a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
  letter-spacing: 2px;
}
.cid-rKm3fK0Hms .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rKm3fK0Hms .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-rKm3fK0Hms .nav-dropdown .link {
  margin: 1.667em 1.667em;
}
.cid-rKm3fK0Hms .nav-link:hover,
.cid-rKm3fK0Hms .dropdown-item:hover {
  color: #800002 !important;
}
.cid-seg7LcexC0 {
  background-image: url("../../../assets/images/aircraft-2000x973.jpg");
}
.cid-seg7LcexC0 h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-seg7LcexC0 h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-seg7LcexC0 h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-seg7LcexC0 .mbr-section-title {
  letter-spacing: .1rem;
}
.cid-seg7LcexC0 .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-seg7LcexC0 .card-img span {
  font-size: 100px;
  color: transparent;
}
.cid-seg7LcexC0 .mbr-text,
.cid-seg7LcexC0 .mbr-section-btn {
  color: #efefef;
}
.cid-seg7LcexC0 p.mbr-text.align-center.py-2.mbr-fonts-style.display-7 {
  margin-bottom: 86px;
}
.cid-seg7LcexC0 hr {
  border: 5px solid #22282C;
  width: 0px;
  display: inline;
  height: 50px;
}
.cid-seg7LcexC0 h1.mbr-section-title.align-center.my-4.mbr-bold.mbr-fonts-style.display-1 {
  letter-spacing: .025em;
  text-transform: uppercase;
}
@media (max-width: 415px) {
  .cid-seg7LcexC0 h1.mbr-section-title.align-center.my-4.mbr-bold.mbr-fonts-style.display-1 {
    font-size: 1.75em;
  }
}
@media (max-width: 376px) {
  .cid-seg7LcexC0 h1.mbr-section-title.align-center.my-4.mbr-bold.mbr-fonts-style.display-1 {
    font-size: 1.7em;
  }
}
@media (max-width: 321px) {
  .cid-seg7LcexC0 h1.mbr-section-title.align-center.my-4.mbr-bold.mbr-fonts-style.display-1 {
    font-size: 1.52em;
  }
  .cid-seg7LcexC0 span.mbri-protect.mbr-iconfont {
    font-size: 65px;
  }
}
.cid-seg7LcexC0 .mbr-arrow {
  background-color: #532D90;
  hover: #ffffff;
}
.cid-seg7LcexC0 .mbr-section-title,
.cid-seg7LcexC0 .card-img {
  color: #800002;
}
.cid-rKP3voEXoG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rKP3voEXoG .container-fluid {
  padding: 0 3rem;
}
.cid-rKP3voEXoG .card {
  display: block;
}
.cid-rKP3voEXoG .card .card-wrapper {
  height: 1%;
}
.cid-rKP3voEXoG .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-rKP3voEXoG .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rKP3voEXoG .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rKP3voEXoG .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-rKP3voEXoG .container-fluid {
    padding: 0 1rem;
  }
  .cid-rKP3voEXoG .text-row {
    padding-bottom: 1rem;
  }
}
.cid-rKP3voEXoG H2 {
  color: #800002;
}
.cid-rKP3voEXoG .mbr-text,
.cid-rKP3voEXoG .card-btn {
  color: #800002;
}
.cid-segtYxcgBq {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-segtYxcgBq H1 {
  color: #22282C;
}
.cid-segtYxcgBq .align-left {
  margin: auto;
}
.cid-segtYxcgBq .row {
  justify-content: space-between;
}
.cid-segtYxcgBq .mbr-text,
.cid-segtYxcgBq .mbr-section-btn {
  color: #716c80;
}
.cid-segtYxcgBq .block-border {
  border-left: 3px solid #22282C;
  padding-left: 4rem;
}
.cid-segtYxcgBq .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-segtYxcgBq .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-segtYxcgBq .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-segtYxcgBq .link:hover {
  color: #800002 !important;
}
.cid-segtYxcgBq .link:hover .link-ico {
  color: #800002 !important;
  padding-left: 10px;
}
.cid-segtYxcgBq DIV {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-segtYxcgBq .block-border {
    border: none;
    padding-left: 1rem;
  }
  .cid-segtYxcgBq h1 {
    padding-bottom: 1rem;
  }
}
.cid-segtYxcgBq .mbr-text,
.cid-segtYxcgBq .media-content {
  color: #000000;
}
.cid-seg9SjCXhM {
  padding-top: 90px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/industry-aerospace-2000x655.jpg");
}
.cid-seg9SjCXhM img {
  height: 210px;
  object-fit: cover;
  width: 210px;
  border-radius: 100%;
}
.cid-seg9SjCXhM .row {
  justify-content: center;
}
.cid-seg9SjCXhM .mbr-text {
  color: #ffffff;
}
.cid-seg9SjCXhM .item {
  display: inline-flex;
  align-items: center;
  padding-right: 2rem;
}
.cid-seg9SjCXhM .mbr-iconfont {
  color: #cccccc !important;
  font-size: 1rem!important;
  padding-right: 0.5rem;
  padding-bottom: 0.1rem;
}
.cid-seg9SjCXhM .date {
  margin: 0;
  color: #cccccc;
}
.cid-seg9SjCXhM .img-col {
  margin: auto 0;
}
@media (max-width: 767px) {
  .cid-seg9SjCXhM .icon-box {
    flex-direction: column;
  }
  .cid-seg9SjCXhM .item {
    padding-right: 0rem;
    padding-bottom: 0.3rem;
  }
  .cid-seg9SjCXhM img {
    margin-bottom: 2rem;
  }
}
.cid-seg9SjCXhM H3 {
  color: #ffffff;
}
.cid-seglzSkm4P {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-seglzSkm4P h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-seglzSkm4P h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-seglzSkm4P h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-seglzSkm4P .mbr-text,
.cid-seglzSkm4P .mbr-section-btn {
  color: #767676;
}
.cid-seglzSkm4P H1 {
  color: #800002;
  padding: 10px 10px 10px 10px;
}
.cid-segkzEO3jn {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-segkzEO3jn .mbr-text {
  color: #000000;
}
.cid-segkzEO3jn h4 {
  text-align: center;
}
.cid-segkzEO3jn p {
  text-align: center;
}
.cid-segkzEO3jn .card-img span {
  font-size: 96px;
  color: #800002;
}
.cid-segkzEO3jn .card-title,
.cid-segkzEO3jn .card-img {
  color: #232323;
}
.cid-rKmcffP0ou {
  padding-top: 90px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/bg-fade-1294x735.png");
}
.cid-rKmcffP0ou .back {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background-color: #efeeee;
}
.cid-rKmcffP0ou .block {
  background-color: #800002;
}
.cid-rKmcffP0ou img {
  width: 100%;
}
.cid-rKmcffP0ou .content-wrapper {
  margin: auto;
  position: relative;
  padding: 10rem 16rem;
  display: flex;
  justify-content: flex-end;
}
.cid-rKmcffP0ou .content {
  max-width: 600px;
}
.cid-rKmcffP0ou h4 {
  position: absolute;
  transform: rotate(270deg);
  transform-origin: bottom left;
  left: 18rem;
  width: fit-content;
  padding: 0;
  margin: 0;
  bottom: 35%;
}
@media (max-width: 1600px) {
  .cid-rKmcffP0ou .content-wrapper {
    padding: 6rem 4rem;
  }
  .cid-rKmcffP0ou h4 {
    left: 5rem;
  }
}
@media (max-width: 767px) {
  .cid-rKmcffP0ou .content-wrapper {
    padding: 4rem 0rem;
  }
  .cid-rKmcffP0ou h4 {
    left: 2rem;
    bottom: 30%;
  }
}
.cid-rKmcffP0ou H1 {
  color: #ffffff;
  text-align: left;
}
.cid-rKmcffP0ou .mbr-text,
.cid-rKmcffP0ou .mbr-section-btn {
  color: #efefef;
}
.cid-sjfzdsaQf4 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #cacaca;
}
.cid-sjfzdsaQf4 .mbr-text {
  color: #121525;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sjfzdsaQf4 p {
    text-align: center;
  }
  .cid-sjfzdsaQf4 .row {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
