.btn {
  border-width: 2px;
}
body {
  font-family: 'Montserrat', sans-serif;
}
.display-1 {
  font-family: 'Montserrat-Regular';
  font-size: 4rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  line-height: 1.4;
}
.display-4 > .mbr-iconfont {
  font-size: 1.0625rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2.375rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.96875rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.125rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.9rem;
    font-size: calc( 1.48125rem + (2.375 - 1.48125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.48125rem + (2.375 - 1.48125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.5 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #fc6004 !important;
}
.bg-success {
  background-color: #dedede !important;
}
.bg-info {
  background-color: #333333 !important;
}
.bg-warning {
  background-color: #999999 !important;
}
.bg-danger {
  background-color: #fc6004 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #fc6004 !important;
  border-color: #fc6004 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #a73f02 !important;
  border-color: #a73f02 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #a73f02 !important;
  border-color: #a73f02 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #fc6004 !important;
  border-color: #fc6004 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #a73f02 !important;
  border-color: #a73f02 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a73f02 !important;
  border-color: #a73f02 !important;
}
.btn-info,
.btn-info:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #080808 !important;
  border-color: #080808 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #080808 !important;
  border-color: #080808 !important;
}
.btn-success,
.btn-success:active {
  background-color: #dedede !important;
  border-color: #dedede !important;
  color: #5f5f5f !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #b3b3b3 !important;
  border-color: #b3b3b3 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #5f5f5f !important;
  background-color: #b3b3b3 !important;
  border-color: #b3b3b3 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #999999 !important;
  border-color: #999999 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #6e6e6e !important;
  border-color: #6e6e6e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #6e6e6e !important;
  border-color: #6e6e6e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #fc6004 !important;
  border-color: #fc6004 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #a73f02 !important;
  border-color: #a73f02 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #a73f02 !important;
  border-color: #a73f02 !important;
}
.btn-white,
.btn-white:active {
  background-color: #f9f7f5 !important;
  border-color: #f9f7f5 !important;
  color: #95785a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #5f4c39 !important;
  background-color: #d8ccbf !important;
  border-color: #d8ccbf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #95785a !important;
  background-color: #d8ccbf !important;
  border-color: #d8ccbf !important;
}
.btn-black,
.btn-black:active {
  background-color: #222222 !important;
  border-color: #222222 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #fc6004;
  color: #fc6004;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a73f02 !important;
  background-color: transparent!important;
  border-color: #a73f02 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #fc6004 !important;
  border-color: #fc6004 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #fc6004;
  color: #fc6004;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a73f02 !important;
  background-color: transparent!important;
  border-color: #a73f02 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #fc6004 !important;
  border-color: #fc6004 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #333333;
  color: #333333;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #080808 !important;
  background-color: transparent!important;
  border-color: #080808 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #dedede;
  color: #dedede;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #b3b3b3 !important;
  background-color: transparent!important;
  border-color: #b3b3b3 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #5f5f5f !important;
  background-color: #dedede !important;
  border-color: #dedede !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #999999;
  color: #999999;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #6e6e6e !important;
  background-color: transparent!important;
  border-color: #6e6e6e !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #999999 !important;
  border-color: #999999 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #fc6004;
  color: #fc6004;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #a73f02 !important;
  background-color: transparent!important;
  border-color: #a73f02 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #fc6004 !important;
  border-color: #fc6004 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #222222;
  color: #222222;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #f9f7f5;
  color: #f9f7f5;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d8ccbf !important;
  background-color: transparent!important;
  border-color: #d8ccbf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #95785a !important;
  background-color: #f9f7f5 !important;
  border-color: #f9f7f5 !important;
}
.text-primary {
  color: #fc6004 !important;
}
.text-secondary {
  color: #fc6004 !important;
}
.text-success {
  color: #dedede !important;
}
.text-info {
  color: #333333 !important;
}
.text-warning {
  color: #999999 !important;
}
.text-danger {
  color: #fc6004 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #983a02 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #983a02 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #ababab !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #000000 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #666666 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #983a02 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #d3c4b5 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #fc6004;
}
.nav-tabs .nav-link:not(.active) {
  color: #222222;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #333333;
}
.alert-warning {
  background-color: #999999;
}
.alert-danger {
  background-color: #fc6004;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #fc6004;
  border-color: #fc6004;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #fc6004;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fee0ce;
}
.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: #a6a6a6;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #d9d9d9;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fee0ce;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.0625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #fc6004 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.0625rem;
}
blockquote {
  border-color: #fc6004;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #fc6004;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #fc6004;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #fc6004;
  border-bottom-color: #fc6004;
}
.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: #fc6004 !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: #fc6004 !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='%23fc6004' %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;
}
html,
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.container {
  max-width: 1302px;
}
.btn {
  padding: 12px 24px;
  border-radius: 0;
  letter-spacing: 3px;
}
.btn-big {
  padding: 20px 40px !important;
}
.btn-scale {
  transition: 0.3s all;
}
.btn-scale:hover {
  transform: scale(0.9);
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-t7aIcrzg4a {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t7aIcrzg4a nav.navbar {
  position: fixed;
}
.cid-t7aIcrzg4a .container,
.cid-t7aIcrzg4a .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t7aIcrzg4a .container,
  .cid-t7aIcrzg4a .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-t7aIcrzg4a .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-t7aIcrzg4a .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #fc6004 !important;
}
.cid-t7aIcrzg4a .dropdown-item:hover,
.cid-t7aIcrzg4a .dropdown-item:focus {
  color: #fc6004 !important;
}
.cid-t7aIcrzg4a .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t7aIcrzg4a .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t7aIcrzg4a .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t7aIcrzg4a .nav-link {
  position: relative;
}
.cid-t7aIcrzg4a .nav-link:hover {
  color: #ffffff !important;
}
.cid-t7aIcrzg4a .nav-link:hover:before {
  opacity: 1;
}
.cid-t7aIcrzg4a .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-t7aIcrzg4a .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t7aIcrzg4a .container {
  display: flex;
  margin: auto;
}
.cid-t7aIcrzg4a .iconfont-wrapper {
  color: #040402 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t7aIcrzg4a .nav-item:focus,
.cid-t7aIcrzg4a .nav-link:focus {
  outline: none;
}
.cid-t7aIcrzg4a .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t7aIcrzg4a .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t7aIcrzg4a .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t7aIcrzg4a .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t7aIcrzg4a .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t7aIcrzg4a .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t7aIcrzg4a .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #fc6004;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fc6004;
}
.cid-t7aIcrzg4a .navbar.opened {
  transition: all 0.3s;
}
.cid-t7aIcrzg4a .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t7aIcrzg4a .navbar .navbar-logo img {
  width: auto;
}
.cid-t7aIcrzg4a .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t7aIcrzg4a .navbar.collapsed {
  justify-content: center;
}
.cid-t7aIcrzg4a .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t7aIcrzg4a .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t7aIcrzg4a .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t7aIcrzg4a .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t7aIcrzg4a .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t7aIcrzg4a .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-t7aIcrzg4a .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t7aIcrzg4a .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t7aIcrzg4a .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t7aIcrzg4a .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t7aIcrzg4a .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t7aIcrzg4a .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t7aIcrzg4a .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t7aIcrzg4a .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-t7aIcrzg4a .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t7aIcrzg4a .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t7aIcrzg4a .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t7aIcrzg4a .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t7aIcrzg4a .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t7aIcrzg4a .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t7aIcrzg4a .navbar.navbar-short {
  min-height: 60px;
}
.cid-t7aIcrzg4a .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t7aIcrzg4a .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t7aIcrzg4a .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-t7aIcrzg4a .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t7aIcrzg4a .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t7aIcrzg4a .dropdown-item.active,
.cid-t7aIcrzg4a .dropdown-item:active {
  background-color: transparent;
}
.cid-t7aIcrzg4a .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t7aIcrzg4a .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t7aIcrzg4a .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t7aIcrzg4a .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fc6004;
}
.cid-t7aIcrzg4a .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t7aIcrzg4a .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t7aIcrzg4a ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t7aIcrzg4a .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t7aIcrzg4a button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-t7aIcrzg4a button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t7aIcrzg4a button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t7aIcrzg4a button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t7aIcrzg4a button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t7aIcrzg4a button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t7aIcrzg4a nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t7aIcrzg4a nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t7aIcrzg4a nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t7aIcrzg4a nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t7aIcrzg4a .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t7aIcrzg4a a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t7aIcrzg4a .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-t7aIcrzg4a .navbar {
    height: 70px;
  }
  .cid-t7aIcrzg4a .navbar.opened {
    height: auto;
  }
  .cid-t7aIcrzg4a .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-t7aIcrzg4a .icons-menu {
    padding-right: 0;
  }
  .cid-t7aIcrzg4a .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tb7z7U8dRu {
  background-image: url("../../../assets/images/intro-inredpro-ok-final-ok-ok.gif");
}
.cid-tb7z7U8dRu .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tb7z7U8dRu .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-tb7z7U8dRu .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tb7z7U8dRu .label-text {
    text-align: center !important;
  }
}
.cid-tb7z7U8dRu .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tb7z7U8dRu .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tb7z7U8dRu .mbr-section-title,
.cid-tb7z7U8dRu .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-sSwTkM5eXb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sSwTkM5eXb .row {
  flex-direction: row-reverse;
}
.cid-sSwTkM5eXb .image-wrapper {
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .cid-sSwTkM5eXb .image-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-sSwTkM5eXb .image-wrapper {
    padding: 30px;
  }
}
.cid-sSwTkM5eXb .image-wrapper .img-caption-container {
  position: relative;
  display: flex;
}
.cid-sSwTkM5eXb .image-wrapper img {
  height: 200px;
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .cid-sSwTkM5eXb .image-wrapper img {
    height: 277px;
  }
}
@media (max-width: 991px) {
  .cid-sSwTkM5eXb .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-sSwTkM5eXb .col-text {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-sSwTkM5eXb .col-text {
    text-align: center;
  }
}
.cid-sSwTkM5eXb .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-sSwTkM5eXb .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #222222;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sSwTkM5eXb .label-text {
    text-align: center !important;
  }
}
.cid-sSwTkM5eXb .mbr-section-title {
  margin-bottom: 24px;
  color: #222222;
  width: 100%;
}
.cid-sSwTkM5eXb .mbr-text {
  color: #999999;
  width: 100%;
  margin-bottom: 1.5rem;
  text-align: center;
}
.cid-sSwTkM5eXb .btn-container {
  width: 100%;
}
@media (max-width: 575px) {
  .cid-sSwTkM5eXb .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sSwTkM5eXb .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sSwTkM5eXb .mbr-section-title,
.cid-sSwTkM5eXb .mbr-section-btn {
  text-align: center;
}
.cid-tasSp9dirZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-tasSp9dirZ .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #ffe161;
  margin-bottom: 1rem;
}
.cid-tasSp9dirZ .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tasSp9dirZ .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tasSp9dirZ .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-tasSp9dirZ .card-wrapper:hover {
  background: transparent;
}
.cid-tasSp9dirZ .card-title,
.cid-tasSp9dirZ .card-box {
  color: #ffffff;
}
.cid-tasSp9dirZ .main-title,
.cid-tasSp9dirZ .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-tasSp9dirZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tasSp9dirZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbr4Tk3QyB .block {
  height: 704px;
}
@media (max-width: 992px) {
  .cid-tbr4Tk3QyB .block {
    height: 352px;
  }
}
.cid-tbamoEPxNl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tbamoEPxNl .main_header {
  margin-bottom: 5rem;
}
.cid-tbamoEPxNl .mbr-section-subtitle {
  margin-bottom: .75rem;
  line-height: 1;
}
.cid-tbamoEPxNl .mbr-text {
  margin-top: 1.5rem;
  letter-spacing: -0.025rem;
  color: #111111;
}
.cid-tbamoEPxNl .card_wrapper {
  height: 100%;
  margin-bottom: 3.5rem;
  cursor: pointer;
}
.cid-tbamoEPxNl .item-img {
  position: relative;
  transition: box-shadow 0.2s ease-in, transform 0.2s ease-in;
}
.cid-tbamoEPxNl .item-img:hover {
  transform: scale(1.02, 1.02);
  box-shadow: 0 0 15px -1px rgba(0, 0, 0, 0.4);
}
.cid-tbamoEPxNl .item-img:before {
  position: absolute;
  content: ' ';
  display: block;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}
.cid-tbamoEPxNl img,
.cid-tbamoEPxNl .item-img {
  width: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 250px;
  object-fit: cover;
}
.cid-tbamoEPxNl .card_content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}
.cid-tbamoEPxNl .card_info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.cid-tbamoEPxNl .card_text {
  padding-top: 5px;
  color: #eae8e4;
}
.cid-tbamoEPxNl .card-number {
  min-width: 48px;
  color: #eae8e4;
  text-align: right;
}
.cid-tbamoEPxNl .list_content {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px dotted rgba(55, 60, 66, 0.5);
}
.cid-tbamoEPxNl .list_content:nth-child(1) {
  border: none;
}
.cid-tbamoEPxNl .list_date {
  min-width: 130px;
}
.cid-tbamoEPxNl .list_text {
  padding: 0 1rem;
}
.cid-tbamoEPxNl .list_number {
  min-width: 50px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tbamoEPxNl .main_header {
    margin-bottom: 2.5rem;
  }
  .cid-tbamoEPxNl .mbr-section-subtitle {
    margin-bottom: .25rem;
  }
  .cid-tbamoEPxNl .mbr-text {
    margin-top: .75rem;
  }
  .cid-tbamoEPxNl .card_wrapper {
    margin-bottom: 1.75rem;
  }
  .cid-tbamoEPxNl .item-img,
  .cid-tbamoEPxNl img {
    max-height: 200px;
  }
  .cid-tbamoEPxNl .list_content {
    flex-direction: column-reverse;
    padding: 14px 0;
  }
  .cid-tbamoEPxNl .list_text {
    padding: 5px 0;
  }
  .cid-tbamoEPxNl .list_number {
    text-align: left;
  }
}
.cid-tbamoEPxNl .card_title {
  color: #ffe161;
  text-align: left;
}
.cid-tbamoEPxNl .mbr-section-title {
  color: #fc6004;
}
.cid-taAuXmCOiS {
  background-color: #040402;
}
.cid-taAuXmCOiS H1 {
  color: #fc6004;
}
.cid-taAuXmCOiS h1 {
  background: linear-gradient(to left, #fc6004, currentColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-taAuXmCOiS img {
  width: 100%;
}
.cid-taAuXmCOiS .mbr-text,
.cid-taAuXmCOiS .mbr-section-btn {
  color: #999999;
}
.cid-tb49J2SYDx {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tb49J2SYDx .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-tb49J2SYDx .img-wrap {
  height: 100%;
}
.cid-tb49J2SYDx .img-wrap .wrapper {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.cid-tb49J2SYDx .img-wrap .wrapper .overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-color: #040402;
  opacity: 0.3;
  pointer-events: none;
}
.cid-tb49J2SYDx .img-wrap .wrapper .box {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s ease-in-out;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-30%);
}
.cid-tb49J2SYDx .img-wrap .wrapper .box .mbr-media {
  z-index: 2;
}
.cid-tb49J2SYDx .img-wrap .wrapper .box .mbr-media .icon-wrap {
  position: relative;
  display: inline-flex;
  width: 95px;
  height: 95px;
  align-items: center;
  justify-content: center;
  background-color: #e2090d;
  border-radius: 100%;
}
.cid-tb49J2SYDx .img-wrap .wrapper .box .mbr-media .icon-wrap::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 100%;
  -webkit-animation: pulse-border 1.5s ease-out infinite;
  animation: pulse-border 1.5s ease-out infinite;
}
.cid-tb49J2SYDx .img-wrap .wrapper .box .mbr-media .icon-wrap span {
  padding-left: 4px;
  font-size: 15px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff;
}
.cid-tb49J2SYDx .img-wrap .wrapper .box .mbr-media .icon-wrap span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-tb49J2SYDx .img-wrap .wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-tb49J2SYDx input,
.cid-tb49J2SYDx textarea {
  border-left: none !important;
  border-top: none !important;
  border-right: none !important;
  border-radius: 3px;
  padding: 13px 20px;
  line-height: 4.28;
  height: 60px;
  font-size: 14px;
  color: #fc6004;
}
.cid-tb49J2SYDx input:focus,
.cid-tb49J2SYDx textarea:focus {
  border-left: none !important;
  border-top: none !important;
  border-right: none !important;
}
.cid-tb49J2SYDx .form-control,
.cid-tb49J2SYDx .field-input {
  background-color: #ffffff;
  border-color: #ffffff !important;
  color: #6d7a8c;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
  font-weight: 400;
}
.cid-tb49J2SYDx .form-control:hover,
.cid-tb49J2SYDx .field-input:hover,
.cid-tb49J2SYDx .form-control:focus,
.cid-tb49J2SYDx .field-input:focus {
  background-color: #ffffff;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tb49J2SYDx input::-webkit-input-placeholder,
.cid-tb49J2SYDx textarea::-webkit-input-placeholder {
  color: #6d7a8c;
  font-weight: 400;
}
.cid-tb49J2SYDx input:-moz-placeholder,
.cid-tb49J2SYDx textarea:-moz-placeholder {
  color: #6d7a8c;
}
.cid-tb49J2SYDx .jq-selectbox li,
.cid-tb49J2SYDx .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-tb49J2SYDx .jq-selectbox li:hover,
.cid-tb49J2SYDx .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-tb49J2SYDx .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff !important;
}
.cid-tb49J2SYDx .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff !important;
}
.cid-tb49J2SYDx .form {
  padding: 38px 40px 45px;
}
.cid-tb49J2SYDx .form .mbr-subtitle {
  color: #ffffff;
}
.cid-tb49J2SYDx .form .mbr-section-title {
  color: #ffffff;
}
.cid-tb49J2SYDx .form .mbr-text {
  margin-top: 20px;
  color: #ffffff;
}
.cid-tb49J2SYDx textarea {
  min-height: 105px;
  line-height: normal;
}
.cid-tb49J2SYDx .mbr-section-btn {
  margin: 0;
}
.cid-tb49J2SYDx .mbr-section-btn .btn {
  width: 100%;
  text-align: center;
  margin: 0 !important;
}
.cid-tb49J2SYDx .mbr-section-btn .btn:hover {
  color: #dedede;
}
.cid-tb49J2SYDx .second {
  padding-right: 0;
}
@media (max-width: 768px) {
  .cid-tb49J2SYDx .mbr-section-title {
    text-align: left;
  }
  .cid-tb49J2SYDx .second {
    margin-top: 30px;
  }
}
.cid-tb49J2SYDx .mbr-form {
  background-color: #fc6004;
}
.cid-tb49J2SYDx .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tb49J2SYDx .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tb49J2SYDx .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tb49J2SYDx a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tb49J2SYDx a.close:hover {
  color: #ffffff;
}
@-webkit-keyframes pulse-border {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
@keyframes pulse-border {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
@media (max-width: 991px) {
  .cid-tb49J2SYDx .second {
    padding-left: 0;
  }
}
.cid-tb49J2SYDx .form .mbr-text {
  text-align: center;
}
.cid-t8ddaAWkOm {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t8ddaAWkOm .row {
  flex-direction: row-reverse;
}
.cid-t8ddaAWkOm .row {
  align-items: center;
}
.cid-t8ddaAWkOm .image-wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .cid-t8ddaAWkOm .image-wrapper {
    padding: 0 30px;
    padding-right: 2.5rem;
  }
}
.cid-t8ddaAWkOm .image-wrapper img {
  width: auto;
  max-width: 100%;
  align-self: flex-end;
  object-fit: cover;
}
.cid-t8ddaAWkOm .image-wrapper img:last-child {
  align-self: flex-start;
  margin-top: -25%;
}
@media (max-width: 991px) {
  .cid-t8ddaAWkOm .image-wrapper img {
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-t8ddaAWkOm .col-text {
    padding-bottom: 4.8rem;
  }
}
@media (min-width: 992px) {
  .cid-t8ddaAWkOm .col-text {
    padding: 0 30px;
    padding-left: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t8ddaAWkOm .col-text {
    text-align: center;
  }
}
.cid-t8ddaAWkOm .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t8ddaAWkOm .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #222222;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-t8ddaAWkOm .label-text {
    text-align: center !important;
  }
}
.cid-t8ddaAWkOm .mbr-section-title {
  width: 100%;
  margin-bottom: 24px;
  color: #222222;
}
.cid-t8ddaAWkOm .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 1.5rem;
  text-align: center;
}
.cid-t8ddaAWkOm .lists-container {
  display: flex;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t8ddaAWkOm .lists-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-t8ddaAWkOm .lists-container {
    justify-content: center;
  }
}
.cid-t8ddaAWkOm .list {
  display: flex;
  flex-direction: column;
  color: #555555;
  padding: 0 8px 0 0;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .cid-t8ddaAWkOm .list {
    width: 100%;
    padding-right: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-t8ddaAWkOm .list {
    align-items: center;
  }
}
.cid-t8ddaAWkOm .list-item {
  display: flex;
  align-items: center;
}
.cid-t8ddaAWkOm .icon-wrapper {
  margin-right: 5px;
}
.cid-t8ddaAWkOm .icon-wrapper span {
  color: #c69453;
  font-size: 21px;
}
.cid-t8ddaAWkOm .list-item-text {
  flex-grow: 1;
  color: #040402;
}
.cid-t8ddaAWkOm .btn-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-t8ddaAWkOm .btn-container {
    margin-top: 16px;
  }
}
@media (max-width: 575px) {
  .cid-t8ddaAWkOm .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t8ddaAWkOm .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t8ddaAWkOm .mbr-section-title,
.cid-t8ddaAWkOm .mbr-section-btn {
  text-align: center;
  color: #fc6004;
}
.cid-sSwZSCgWd3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fc6004;
  overflow: hidden;
}
.cid-u96sMBtlbs {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u96sMBtlbs nav.navbar {
  position: fixed;
}
.cid-u96sMBtlbs .container,
.cid-u96sMBtlbs .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u96sMBtlbs .container,
  .cid-u96sMBtlbs .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-u96sMBtlbs .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-u96sMBtlbs .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #fc6004 !important;
}
.cid-u96sMBtlbs .dropdown-item:hover,
.cid-u96sMBtlbs .dropdown-item:focus {
  color: #fc6004 !important;
}
.cid-u96sMBtlbs .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u96sMBtlbs .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u96sMBtlbs .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u96sMBtlbs .nav-link {
  position: relative;
}
.cid-u96sMBtlbs .nav-link:hover {
  color: #ffffff !important;
}
.cid-u96sMBtlbs .nav-link:hover:before {
  opacity: 1;
}
.cid-u96sMBtlbs .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-u96sMBtlbs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u96sMBtlbs .container {
  display: flex;
  margin: auto;
}
.cid-u96sMBtlbs .iconfont-wrapper {
  color: #040402 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u96sMBtlbs .nav-item:focus,
.cid-u96sMBtlbs .nav-link:focus {
  outline: none;
}
.cid-u96sMBtlbs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u96sMBtlbs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u96sMBtlbs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u96sMBtlbs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u96sMBtlbs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u96sMBtlbs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u96sMBtlbs .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #fc6004;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fc6004;
}
.cid-u96sMBtlbs .navbar.opened {
  transition: all 0.3s;
}
.cid-u96sMBtlbs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u96sMBtlbs .navbar .navbar-logo img {
  width: auto;
}
.cid-u96sMBtlbs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u96sMBtlbs .navbar.collapsed {
  justify-content: center;
}
.cid-u96sMBtlbs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u96sMBtlbs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u96sMBtlbs .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u96sMBtlbs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u96sMBtlbs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u96sMBtlbs .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-u96sMBtlbs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u96sMBtlbs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u96sMBtlbs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u96sMBtlbs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u96sMBtlbs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u96sMBtlbs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u96sMBtlbs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u96sMBtlbs .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-u96sMBtlbs .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u96sMBtlbs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u96sMBtlbs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u96sMBtlbs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u96sMBtlbs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u96sMBtlbs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u96sMBtlbs .navbar.navbar-short {
  min-height: 60px;
}
.cid-u96sMBtlbs .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u96sMBtlbs .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u96sMBtlbs .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-u96sMBtlbs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u96sMBtlbs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u96sMBtlbs .dropdown-item.active,
.cid-u96sMBtlbs .dropdown-item:active {
  background-color: transparent;
}
.cid-u96sMBtlbs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u96sMBtlbs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u96sMBtlbs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u96sMBtlbs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fc6004;
}
.cid-u96sMBtlbs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u96sMBtlbs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u96sMBtlbs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u96sMBtlbs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u96sMBtlbs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-u96sMBtlbs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u96sMBtlbs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u96sMBtlbs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u96sMBtlbs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u96sMBtlbs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u96sMBtlbs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u96sMBtlbs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u96sMBtlbs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u96sMBtlbs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u96sMBtlbs .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u96sMBtlbs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u96sMBtlbs .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-u96sMBtlbs .navbar {
    height: 70px;
  }
  .cid-u96sMBtlbs .navbar.opened {
    height: auto;
  }
  .cid-u96sMBtlbs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-u96sMBtlbs .icons-menu {
    padding-right: 0;
  }
  .cid-u96sMBtlbs .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-u96tapjIoF {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-color: #090f10;
}
.cid-u96tapjIoF .mbr-fallback-image.disabled {
  display: none;
}
.cid-u96tapjIoF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u96tapjIoF .mbr-figure {
    margin-top: 1.5rem;
  }
}
.cid-u96tapjIoF .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-u96tapjIoF .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u96tapjIoF .media-content,
.cid-u96tapjIoF .mbr-figure {
  align-self: center;
}
.cid-u96tapjIoF .mbr-figure iframe {
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
}
.cid-u96tapjIoF .mbr-figure {
  border-radius: 0rem;
  overflow: hidden;
}
@media (min-width: 767px) {
  .cid-u96tapjIoF .mbr-figure {
    border-radius: 2rem;
  }
}
.cid-u96tapjIoF .mbr-text,
.cid-u96tapjIoF .mbr-section-btn {
  text-align: left;
  color: #f4f3ec;
}
.cid-u96tapjIoF .mbr-section-title {
  color: #ffe161;
}
.cid-u96tapjIoF .mbr-section-title DIV {
  text-align: center;
}
.cid-u96tdcNstY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a1e21;
  overflow: hidden;
}
.cid-u96tdcNstY .mbr-fallback-image.disabled {
  display: none;
}
.cid-u96tdcNstY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u96tdcNstY .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 40px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 767px) {
  .cid-u96tdcNstY .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-u96tdcNstY .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-u96tdcNstY .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
.cid-u96tdcNstY .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 15px;
}
.cid-u96tdcNstY .border-item {
  width: 100%;
  height: 1px;
  margin-bottom: 20px;
  background-color: #16181c;
}
.cid-u96tdcNstY .card-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-u96tn3MXf5 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1e21;
}
.cid-u96tn3MXf5 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u96tn3MXf5 .form-control,
.cid-u96tn3MXf5 .field-input {
  padding: 0.5rem;
  background-color: #7b7b7b;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-u96tn3MXf5 .form-control::-webkit-input-placeholder,
.cid-u96tn3MXf5 .field-input::-webkit-input-placeholder,
.cid-u96tn3MXf5 .form-control::-webkit-input-placeholder,
.cid-u96tn3MXf5 .field-input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-u96tn3MXf5 .form-control:-moz-placeholder,
.cid-u96tn3MXf5 .field-input:-moz-placeholder,
.cid-u96tn3MXf5 .form-control:-moz-placeholder,
.cid-u96tn3MXf5 .field-input:-moz-placeholder {
  color: #c1c1c1;
}
.cid-u96tn3MXf5 .form-control:hover,
.cid-u96tn3MXf5 .field-input:hover,
.cid-u96tn3MXf5 .form-control:focus,
.cid-u96tn3MXf5 .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-u96tn3MXf5 .form-control:hover::-webkit-input-placeholder,
.cid-u96tn3MXf5 .field-input:hover::-webkit-input-placeholder,
.cid-u96tn3MXf5 .form-control:focus::-webkit-input-placeholder,
.cid-u96tn3MXf5 .field-input:focus::-webkit-input-placeholder,
.cid-u96tn3MXf5 .form-control:hover::-webkit-input-placeholder,
.cid-u96tn3MXf5 .field-input:hover::-webkit-input-placeholder,
.cid-u96tn3MXf5 .form-control:focus::-webkit-input-placeholder,
.cid-u96tn3MXf5 .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-u96tn3MXf5 .form-control:hover:-moz-placeholder,
.cid-u96tn3MXf5 .field-input:hover:-moz-placeholder,
.cid-u96tn3MXf5 .form-control:focus:-moz-placeholder,
.cid-u96tn3MXf5 .field-input:focus:-moz-placeholder,
.cid-u96tn3MXf5 .form-control:hover:-moz-placeholder,
.cid-u96tn3MXf5 .field-input:hover:-moz-placeholder,
.cid-u96tn3MXf5 .form-control:focus:-moz-placeholder,
.cid-u96tn3MXf5 .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-u96tn3MXf5 .jq-number__spin:hover,
.cid-u96tn3MXf5 .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-u96tn3MXf5 .jq-number__spin {
  background-color: #7b7b7b;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-u96tn3MXf5 .jq-selectbox li,
.cid-u96tn3MXf5 .jq-selectbox li {
  background-color: #7b7b7b;
  color: #ffffff;
}
.cid-u96tn3MXf5 .jq-selectbox li:hover,
.cid-u96tn3MXf5 .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-u96tn3MXf5 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-u96tn3MXf5 .jq-number__spin.minus:hover:after,
.cid-u96tn3MXf5 .jq-number__spin.plus:hover:after {
  border-top-color: #7b7b7b;
  border-bottom-color: #7b7b7b;
}
.cid-u96tn3MXf5 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-u96tn3MXf5 .jq-number__spin.minus:after,
.cid-u96tn3MXf5 .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-u96tn3MXf5 input::-webkit-clear-button {
  display: none;
}
.cid-u96tn3MXf5 input::-webkit-inner-spin-button {
  display: none;
}
.cid-u96tn3MXf5 input::-webkit-outer-spin-button {
  display: none;
}
.cid-u96tn3MXf5 input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-u96tn3MXf5 H4 {
  text-align: center;
  color: #f4f3ec;
}
.cid-u96tn3MXf5 P {
  color: #ffe885;
  text-align: center;
}
.cid-u96tn3MXf5 H5 {
  color: #fff0b0;
}
.cid-u96tn3MXf5 LABEL {
  color: #ffffff;
}
.cid-u96tfjQBHW {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1e21;
}
.cid-u96tfjQBHW .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u96tfjQBHW .form-control,
.cid-u96tfjQBHW .field-input {
  padding: 0.5rem;
  background-color: #7b7b7b;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-u96tfjQBHW .form-control::-webkit-input-placeholder,
.cid-u96tfjQBHW .field-input::-webkit-input-placeholder,
.cid-u96tfjQBHW .form-control::-webkit-input-placeholder,
.cid-u96tfjQBHW .field-input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-u96tfjQBHW .form-control:-moz-placeholder,
.cid-u96tfjQBHW .field-input:-moz-placeholder,
.cid-u96tfjQBHW .form-control:-moz-placeholder,
.cid-u96tfjQBHW .field-input:-moz-placeholder {
  color: #c1c1c1;
}
.cid-u96tfjQBHW .form-control:hover,
.cid-u96tfjQBHW .field-input:hover,
.cid-u96tfjQBHW .form-control:focus,
.cid-u96tfjQBHW .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-u96tfjQBHW .form-control:hover::-webkit-input-placeholder,
.cid-u96tfjQBHW .field-input:hover::-webkit-input-placeholder,
.cid-u96tfjQBHW .form-control:focus::-webkit-input-placeholder,
.cid-u96tfjQBHW .field-input:focus::-webkit-input-placeholder,
.cid-u96tfjQBHW .form-control:hover::-webkit-input-placeholder,
.cid-u96tfjQBHW .field-input:hover::-webkit-input-placeholder,
.cid-u96tfjQBHW .form-control:focus::-webkit-input-placeholder,
.cid-u96tfjQBHW .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-u96tfjQBHW .form-control:hover:-moz-placeholder,
.cid-u96tfjQBHW .field-input:hover:-moz-placeholder,
.cid-u96tfjQBHW .form-control:focus:-moz-placeholder,
.cid-u96tfjQBHW .field-input:focus:-moz-placeholder,
.cid-u96tfjQBHW .form-control:hover:-moz-placeholder,
.cid-u96tfjQBHW .field-input:hover:-moz-placeholder,
.cid-u96tfjQBHW .form-control:focus:-moz-placeholder,
.cid-u96tfjQBHW .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-u96tfjQBHW .jq-number__spin:hover,
.cid-u96tfjQBHW .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-u96tfjQBHW .jq-number__spin {
  background-color: #7b7b7b;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-u96tfjQBHW .jq-selectbox li,
.cid-u96tfjQBHW .jq-selectbox li {
  background-color: #7b7b7b;
  color: #ffffff;
}
.cid-u96tfjQBHW .jq-selectbox li:hover,
.cid-u96tfjQBHW .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-u96tfjQBHW .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-u96tfjQBHW .jq-number__spin.minus:hover:after,
.cid-u96tfjQBHW .jq-number__spin.plus:hover:after {
  border-top-color: #7b7b7b;
  border-bottom-color: #7b7b7b;
}
.cid-u96tfjQBHW .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-u96tfjQBHW .jq-number__spin.minus:after,
.cid-u96tfjQBHW .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-u96tfjQBHW input::-webkit-clear-button {
  display: none;
}
.cid-u96tfjQBHW input::-webkit-inner-spin-button {
  display: none;
}
.cid-u96tfjQBHW input::-webkit-outer-spin-button {
  display: none;
}
.cid-u96tfjQBHW input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-u96tfjQBHW H4 {
  text-align: center;
  color: #f4f3ec;
}
.cid-u96tfjQBHW P {
  color: #e6c63b;
}
.cid-u96tfjQBHW H5 {
  color: #fff0b0;
}
.cid-u96tfjQBHW LABEL {
  color: #ffffff;
}
.cid-u96sMDtuLy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-u96sMDtuLy .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #ffe161;
  margin-bottom: 1rem;
}
.cid-u96sMDtuLy .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-u96sMDtuLy .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-u96sMDtuLy .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-u96sMDtuLy .card-wrapper:hover {
  background: transparent;
}
.cid-u96sMDtuLy .card-title,
.cid-u96sMDtuLy .card-box {
  color: #ffffff;
}
.cid-u96sMDtuLy .main-title,
.cid-u96sMDtuLy .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-u96sMDtuLy .mbr-fallback-image.disabled {
  display: none;
}
.cid-u96sMDtuLy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u96sMDRf5N {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tayodeDtcn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tayodeDtcn nav.navbar {
  position: fixed;
}
.cid-tayodeDtcn .container,
.cid-tayodeDtcn .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tayodeDtcn .container,
  .cid-tayodeDtcn .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tayodeDtcn .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-tayodeDtcn .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #fc6004 !important;
}
.cid-tayodeDtcn .dropdown-item:hover,
.cid-tayodeDtcn .dropdown-item:focus {
  color: #fc6004 !important;
}
.cid-tayodeDtcn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tayodeDtcn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tayodeDtcn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tayodeDtcn .nav-link {
  position: relative;
}
.cid-tayodeDtcn .nav-link:hover {
  color: #ffffff !important;
}
.cid-tayodeDtcn .nav-link:hover:before {
  opacity: 1;
}
.cid-tayodeDtcn .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-tayodeDtcn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tayodeDtcn .container {
  display: flex;
  margin: auto;
}
.cid-tayodeDtcn .iconfont-wrapper {
  color: #040402 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tayodeDtcn .nav-item:focus,
.cid-tayodeDtcn .nav-link:focus {
  outline: none;
}
.cid-tayodeDtcn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tayodeDtcn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tayodeDtcn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tayodeDtcn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tayodeDtcn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tayodeDtcn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tayodeDtcn .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #fc6004;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fc6004;
}
.cid-tayodeDtcn .navbar.opened {
  transition: all 0.3s;
}
.cid-tayodeDtcn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tayodeDtcn .navbar .navbar-logo img {
  width: auto;
}
.cid-tayodeDtcn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tayodeDtcn .navbar.collapsed {
  justify-content: center;
}
.cid-tayodeDtcn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tayodeDtcn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tayodeDtcn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tayodeDtcn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tayodeDtcn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tayodeDtcn .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-tayodeDtcn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tayodeDtcn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tayodeDtcn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tayodeDtcn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tayodeDtcn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tayodeDtcn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tayodeDtcn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tayodeDtcn .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-tayodeDtcn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tayodeDtcn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tayodeDtcn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tayodeDtcn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tayodeDtcn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tayodeDtcn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tayodeDtcn .navbar.navbar-short {
  min-height: 60px;
}
.cid-tayodeDtcn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tayodeDtcn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tayodeDtcn .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-tayodeDtcn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tayodeDtcn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tayodeDtcn .dropdown-item.active,
.cid-tayodeDtcn .dropdown-item:active {
  background-color: transparent;
}
.cid-tayodeDtcn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tayodeDtcn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tayodeDtcn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tayodeDtcn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fc6004;
}
.cid-tayodeDtcn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tayodeDtcn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tayodeDtcn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tayodeDtcn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tayodeDtcn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-tayodeDtcn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tayodeDtcn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tayodeDtcn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tayodeDtcn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tayodeDtcn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tayodeDtcn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tayodeDtcn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tayodeDtcn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tayodeDtcn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tayodeDtcn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tayodeDtcn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tayodeDtcn .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-tayodeDtcn .navbar {
    height: 70px;
  }
  .cid-tayodeDtcn .navbar.opened {
    height: auto;
  }
  .cid-tayodeDtcn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-tayodeDtcn .icons-menu {
    padding-right: 0;
  }
  .cid-tayodeDtcn .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tb956a9piS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tb956a9piS .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-tb956a9piS .img-wrap {
  height: 100%;
}
.cid-tb956a9piS .img-wrap .wrapper {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.cid-tb956a9piS .img-wrap .wrapper .overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-color: #040402;
  opacity: 0.5;
  pointer-events: none;
}
.cid-tb956a9piS .img-wrap .wrapper .box {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s ease-in-out;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-30%);
}
.cid-tb956a9piS .img-wrap .wrapper .box .mbr-media {
  z-index: 2;
}
.cid-tb956a9piS .img-wrap .wrapper .box .mbr-media .icon-wrap {
  position: relative;
  display: inline-flex;
  width: 95px;
  height: 95px;
  align-items: center;
  justify-content: center;
  background-color: #e2090d;
  border-radius: 100%;
}
.cid-tb956a9piS .img-wrap .wrapper .box .mbr-media .icon-wrap::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 100%;
  -webkit-animation: pulse-border 1.5s ease-out infinite;
  animation: pulse-border 1.5s ease-out infinite;
}
.cid-tb956a9piS .img-wrap .wrapper .box .mbr-media .icon-wrap span {
  padding-left: 4px;
  font-size: 15px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff;
}
.cid-tb956a9piS .img-wrap .wrapper .box .mbr-media .icon-wrap span.mbri-play:before {
  position: absolute;
  left: 50%;
  transform: translateX(-35%);
}
.cid-tb956a9piS .img-wrap .wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-tb956a9piS input,
.cid-tb956a9piS textarea {
  border-left: none !important;
  border-top: none !important;
  border-right: none !important;
  border-radius: 3px;
  padding: 13px 20px;
  line-height: 4.28;
  height: 60px;
  font-size: 14px;
  color: #fc6004;
}
.cid-tb956a9piS input:focus,
.cid-tb956a9piS textarea:focus {
  border-left: none !important;
  border-top: none !important;
  border-right: none !important;
}
.cid-tb956a9piS .form-control,
.cid-tb956a9piS .field-input {
  background-color: #ffffff;
  border-color: #ffffff !important;
  color: #6d7a8c;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
  font-weight: 400;
}
.cid-tb956a9piS .form-control:hover,
.cid-tb956a9piS .field-input:hover,
.cid-tb956a9piS .form-control:focus,
.cid-tb956a9piS .field-input:focus {
  background-color: #ffffff;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tb956a9piS input::-webkit-input-placeholder,
.cid-tb956a9piS textarea::-webkit-input-placeholder {
  color: #6d7a8c;
  font-weight: 400;
}
.cid-tb956a9piS input:-moz-placeholder,
.cid-tb956a9piS textarea:-moz-placeholder {
  color: #6d7a8c;
}
.cid-tb956a9piS .jq-selectbox li,
.cid-tb956a9piS .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-tb956a9piS .jq-selectbox li:hover,
.cid-tb956a9piS .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-tb956a9piS .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff !important;
}
.cid-tb956a9piS .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff !important;
}
.cid-tb956a9piS .form {
  padding: 38px 40px 45px;
}
.cid-tb956a9piS .form .mbr-subtitle {
  color: #ffffff;
}
.cid-tb956a9piS .form .mbr-section-title {
  color: #ffffff;
}
.cid-tb956a9piS .form .mbr-text {
  margin-top: 20px;
  color: #ffffff;
}
.cid-tb956a9piS textarea {
  min-height: 105px;
  line-height: normal;
}
.cid-tb956a9piS .mbr-section-btn {
  margin: 0;
}
.cid-tb956a9piS .mbr-section-btn .btn {
  width: 100%;
  text-align: center;
  margin: 0 !important;
}
.cid-tb956a9piS .mbr-section-btn .btn:hover {
  color: #dedede;
}
.cid-tb956a9piS .second {
  padding-right: 0;
}
@media (max-width: 768px) {
  .cid-tb956a9piS .mbr-section-title {
    text-align: left;
  }
  .cid-tb956a9piS .second {
    margin-top: 30px;
  }
}
.cid-tb956a9piS .mbr-form {
  background-color: #fc6004;
}
.cid-tb956a9piS .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tb956a9piS .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tb956a9piS .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tb956a9piS a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tb956a9piS a.close:hover {
  color: #ffffff;
}
@-webkit-keyframes pulse-border {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
@keyframes pulse-border {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
@media (max-width: 991px) {
  .cid-tb956a9piS .second {
    padding-left: 0;
  }
}
.cid-tb956a9piS .form .mbr-text {
  text-align: left;
}
.cid-tb9cpQHqcd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #040402;
}
.cid-tb9cpQHqcd .row {
  flex-direction: row-reverse;
}
.cid-tb9cpQHqcd .row {
  align-items: center;
}
.cid-tb9cpQHqcd .image-wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .cid-tb9cpQHqcd .image-wrapper {
    padding: 0 30px;
    padding-right: 2.5rem;
  }
}
.cid-tb9cpQHqcd .image-wrapper img {
  width: auto;
  max-width: 100%;
  align-self: flex-end;
  object-fit: cover;
}
.cid-tb9cpQHqcd .image-wrapper img:last-child {
  align-self: flex-start;
  margin-top: -25%;
}
@media (max-width: 991px) {
  .cid-tb9cpQHqcd .image-wrapper img {
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-tb9cpQHqcd .col-text {
    padding-bottom: 4.8rem;
  }
}
@media (min-width: 992px) {
  .cid-tb9cpQHqcd .col-text {
    padding: 0 30px;
    padding-left: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tb9cpQHqcd .col-text {
    text-align: center;
  }
}
.cid-tb9cpQHqcd .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tb9cpQHqcd .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #222222;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-tb9cpQHqcd .label-text {
    text-align: center !important;
  }
}
.cid-tb9cpQHqcd .mbr-section-title {
  width: 100%;
  margin-bottom: 24px;
  color: #222222;
}
.cid-tb9cpQHqcd .mbr-text {
  color: #999999;
  width: 100%;
  margin-bottom: 1.5rem;
  text-align: left;
}
.cid-tb9cpQHqcd .lists-container {
  display: flex;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tb9cpQHqcd .lists-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tb9cpQHqcd .lists-container {
    justify-content: center;
  }
}
.cid-tb9cpQHqcd .list {
  display: flex;
  flex-direction: column;
  color: #555555;
  padding: 0 8px 0 0;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .cid-tb9cpQHqcd .list {
    width: 100%;
    padding-right: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-tb9cpQHqcd .list {
    align-items: center;
  }
}
.cid-tb9cpQHqcd .list-item {
  display: flex;
  align-items: center;
}
.cid-tb9cpQHqcd .icon-wrapper {
  margin-right: 5px;
}
.cid-tb9cpQHqcd .icon-wrapper span {
  color: #c69453;
  font-size: 21px;
}
.cid-tb9cpQHqcd .list-item-text {
  flex-grow: 1;
  color: #999999;
}
.cid-tb9cpQHqcd .btn-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tb9cpQHqcd .btn-container {
    margin-top: 16px;
  }
}
@media (max-width: 575px) {
  .cid-tb9cpQHqcd .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tb9cpQHqcd .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tb9cpQHqcd .mbr-section-title,
.cid-tb9cpQHqcd .mbr-section-btn {
  text-align: left;
  color: #d11535;
}
.cid-tb95tbSXpm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tb95tbSXpm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tb95tbSXpm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tb95tbSXpm .google-map {
  height: 30rem;
  position: relative;
}
.cid-tb95tbSXpm .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tb95tbSXpm .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tb95tbSXpm .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tb95tbSXpm .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tayodxd3p0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-udxjEg46Ce {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-udxjEg46Ce nav.navbar {
  position: fixed;
}
.cid-udxjEg46Ce .container,
.cid-udxjEg46Ce .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-udxjEg46Ce .container,
  .cid-udxjEg46Ce .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-udxjEg46Ce .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-udxjEg46Ce .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #fc6004 !important;
}
.cid-udxjEg46Ce .dropdown-item:hover,
.cid-udxjEg46Ce .dropdown-item:focus {
  color: #fc6004 !important;
}
.cid-udxjEg46Ce .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-udxjEg46Ce .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-udxjEg46Ce .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udxjEg46Ce .nav-link {
  position: relative;
}
.cid-udxjEg46Ce .nav-link:hover {
  color: #ffffff !important;
}
.cid-udxjEg46Ce .nav-link:hover:before {
  opacity: 1;
}
.cid-udxjEg46Ce .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-udxjEg46Ce .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udxjEg46Ce .container {
  display: flex;
  margin: auto;
}
.cid-udxjEg46Ce .iconfont-wrapper {
  color: #040402 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-udxjEg46Ce .nav-item:focus,
.cid-udxjEg46Ce .nav-link:focus {
  outline: none;
}
.cid-udxjEg46Ce .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-udxjEg46Ce .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udxjEg46Ce .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-udxjEg46Ce .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udxjEg46Ce .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udxjEg46Ce .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udxjEg46Ce .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #fc6004;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fc6004;
}
.cid-udxjEg46Ce .navbar.opened {
  transition: all 0.3s;
}
.cid-udxjEg46Ce .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-udxjEg46Ce .navbar .navbar-logo img {
  width: auto;
}
.cid-udxjEg46Ce .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-udxjEg46Ce .navbar.collapsed {
  justify-content: center;
}
.cid-udxjEg46Ce .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udxjEg46Ce .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udxjEg46Ce .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-udxjEg46Ce .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udxjEg46Ce .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udxjEg46Ce .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-udxjEg46Ce .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udxjEg46Ce .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udxjEg46Ce .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udxjEg46Ce .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udxjEg46Ce .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udxjEg46Ce .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udxjEg46Ce .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udxjEg46Ce .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-udxjEg46Ce .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-udxjEg46Ce .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udxjEg46Ce .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udxjEg46Ce .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-udxjEg46Ce .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-udxjEg46Ce .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-udxjEg46Ce .navbar.navbar-short {
  min-height: 60px;
}
.cid-udxjEg46Ce .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-udxjEg46Ce .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-udxjEg46Ce .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-udxjEg46Ce .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udxjEg46Ce .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udxjEg46Ce .dropdown-item.active,
.cid-udxjEg46Ce .dropdown-item:active {
  background-color: transparent;
}
.cid-udxjEg46Ce .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udxjEg46Ce .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udxjEg46Ce .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udxjEg46Ce .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fc6004;
}
.cid-udxjEg46Ce .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udxjEg46Ce .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udxjEg46Ce ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-udxjEg46Ce .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-udxjEg46Ce button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-udxjEg46Ce button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-udxjEg46Ce button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udxjEg46Ce button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udxjEg46Ce button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udxjEg46Ce button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udxjEg46Ce nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udxjEg46Ce nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udxjEg46Ce nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udxjEg46Ce nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udxjEg46Ce .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-udxjEg46Ce a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-udxjEg46Ce .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-udxjEg46Ce .navbar {
    height: 70px;
  }
  .cid-udxjEg46Ce .navbar.opened {
    height: auto;
  }
  .cid-udxjEg46Ce .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-udxjEg46Ce .icons-menu {
    padding-right: 0;
  }
  .cid-udxjEg46Ce .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-udxjEgpBt1 {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-udxjEgpBt1 .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #fc6004;
  margin-bottom: 1rem;
}
.cid-udxjEgpBt1 .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-udxjEgpBt1 .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-udxjEgpBt1 .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-udxjEgpBt1 .card-wrapper:hover {
  background: transparent;
}
.cid-udxjEgpBt1 .card-title,
.cid-udxjEgpBt1 .card-box {
  color: #ffffff;
}
.cid-udxjEgpBt1 .main-title,
.cid-udxjEgpBt1 .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-udxjEgpBt1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-udxjEgpBt1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udxkANsFQb {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #f4f3ec;
}
.cid-udxkANsFQb .mbr-fallback-image.disabled {
  display: none;
}
.cid-udxkANsFQb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udxkANsFQb h2:before {
  content: attr(data-replace);
  position: absolute;
  bottom: 0;
  left: 0;
}
.cid-udxkANsFQb .row {
  justify-content: space-between;
}
.cid-udxkANsFQb .mbr-text,
.cid-udxkANsFQb .mbr-section-btn {
  text-align: center;
}
.cid-udxjEgIGG7 {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-udxjEgIGG7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-udxjEgIGG7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udxjEgIGG7 .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-udxjEgIGG7 .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-udxjEgIGG7 .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-udxjEgIGG7 .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1599px) {
  .cid-udxjEgIGG7 .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-udxjEgIGG7 .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-udxjEgIGG7 .mbr-section-head {
  width: 100%;
}
.cid-udxjEgIGG7 .mbr-section-title {
  color: #fc6004;
}
@media (max-width: 767px) {
  .cid-udxjEgIGG7 .mbr-section-title {
    text-align: center;
  }
}
.cid-udxjEgIGG7 .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-udxjEgIGG7 .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-udxjEgIGG7 .card-row {
  align-items: stretch;
}
.cid-udxjEgIGG7 .item {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-udxjEgIGG7 .item {
    margin-top: 30px;
  }
}
.cid-udxjEgIGG7 .item-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 575px) {
  .cid-udxjEgIGG7 .item-wrapper {
    padding: 20px;
  }
}
.cid-udxjEgIGG7 .item-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-udxjEgIGG7 .item-wrapper:hover .item-img img {
  transform: scale(1.1);
}
.cid-udxjEgIGG7 .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 19px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .4s all;
}
.cid-udxjEgIGG7 .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-udxjEgIGG7 .item-img img {
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-udxjEgIGG7 .card-box {
  position: relative;
  z-index: 5;
  padding-top: 18px;
}
.cid-udxjEgIGG7 .card-title {
  position: relative;
  z-index: 5;
  color: #e6c63b;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-udxjEgIGG7 .card-title {
    margin-bottom: 10px;
  }
}
.cid-udxjEgIGG7 .card-text {
  position: relative;
  z-index: 5;
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-udxjEgIGG7 .card-text a {
  transition: .4s all;
}
.cid-udxjEgIGG7 .card-text a:hover {
  color: #fc6004 !important;
}
.cid-udxjEhdBiB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-udxjEhdBiB .row {
  border-top: 1px solid #FFFFFF;
  min-height: 600px;
  margin-top: -1px;
}
.cid-udxjEhdBiB .mbr-text {
  color: #FFFFFF;
  max-width: 330px;
  text-align: left;
}
.cid-udxjEhdBiB .color-text {
  color: #d11535;
}
.cid-udxjEhdBiB .custom-block {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  padding-right: 0;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-udxjEhdBiB .card-wrapper {
  position: relative;
  padding: 3rem 24px;
}
.cid-udxjEhdBiB .buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -12px;
}
.cid-udxjEhdBiB .buttons-container .item-button {
  margin: 0;
}
.cid-udxjEhdBiB .buttons-container .btn {
  margin: 0 0 16px 12px;
}
.cid-udxjEhdBiB .buttons-container .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-udxjEhdBiB .buttons-container .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
@media (min-width: 768px) {
  .cid-udxjEhdBiB .wrapper {
    margin-right: -32px;
    margin-left: -32px;
    padding-right: 12px;
    padding-left: 12px;
  }
  .cid-udxjEhdBiB .custom-block_left {
    border-right: 1px solid #ffffff;
  }
}
.cid-udxjEhdBiB .custom-block_left {
  padding: 0;
}
.cid-udxjEhdBiB .custom-block_left .section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 3rem;
  right: 16px;
  margin: 0;
  box-shadow: 0 0 130px 1px #fc6004;
  transform: rotate(45deg);
  border-radius: 50%;
  width: 120px;
  height: 120px;
}
.cid-udxjEhdBiB .custom-block_left .section-btn .btn-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  background: #fc6004;
  border-radius: 50%;
  transition: 0.2s;
}
.cid-udxjEhdBiB .custom-block_left .section-btn .btn-custom:hover {
  background: #a73f02;
}
.cid-udxjEhdBiB .custom-block_left .section-btn .btn-custom span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.cid-udxjEhdBiB .card-box {
  max-width: 565px;
}
.cid-udxjEhdBiB .image-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  padding: 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .cid-udxjEhdBiB .image-wrapper {
    order: -1;
    border-bottom: none;
  }
}
.cid-udxjEhdBiB .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-udxjEhdBiB .wrapper {
    padding-right: 16px;
    padding-left: 16px;
  }
  .cid-udxjEhdBiB .card-wrapper {
    position: relative;
    padding: 60px;
  }
  .cid-udxjEhdBiB .custom-block_left .section-btn {
    bottom: 35px;
    right: 35px;
  }
}
@media (max-width: 575px) {
  .cid-udxjEhdBiB .custom-block_left {
    padding: 0;
  }
  .cid-udxjEhdBiB .custom-block_left .section-btn {
    position: sticky;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
  }
  .cid-udxjEhdBiB .custom-block_left .section-btn .btn-custom {
    width: 80px;
    height: 80px;
  }
  .cid-udxjEhdBiB .card-title-box {
    margin-bottom: 16px;
  }
  .cid-udxjEhdBiB .mbr-text {
    max-width: 100%;
    margin-bottom: 16px !important;
  }
}
.cid-udxjEhdBiB .card-title {
  color: #ffe161;
  text-align: left;
}
.cid-udxjEhDzHW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #222222;
}
.cid-udxjEhDzHW .mbr-text {
  color: #999999;
  text-align: left;
}
.cid-udxjEhDzHW .mbr-section-subtitle {
  color: #e2090d;
  text-align: left;
}
.cid-udxjEi1d9R {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #28282c;
}
@media (max-width: 767px) {
  .cid-udxjEi1d9R .card-wrapper {
    margin: 0;
    padding: 0;
  }
}
.cid-udxjEi1d9R .mbr-section-title,
.cid-udxjEi1d9R .mbr-section-subtitle {
  color: #ffffff;
}
.cid-udxjEi1d9R .card-title,
.cid-udxjEi1d9R .card-box {
  color: #e2090d;
}
.cid-udxjEi1d9R .mbr-text {
  color: #9b9ba5;
}
@media (max-width: 600px) {
  .cid-udxjEi1d9R .mbr-section-title {
    letter-spacing: -1px;
  }
}
@media (min-width: 768px) {
  .cid-udxjEi1d9R .border-right {
    border-right: 2px solid rgba(255, 255, 255, 0.25);
  }
  .cid-udxjEi1d9R .top {
    border-top: 2px solid rgba(255, 255, 255, 0.25);
  }
  .cid-udxjEi1d9R .margin-left {
    margin-left: 5rem;
    padding: 3rem 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .cid-udxjEi1d9R .border-right {
    padding: 3rem 3rem 3rem 0;
  }
}
.cid-udxjEimCE9 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #28282c;
}
@media (max-width: 767px) {
  .cid-udxjEimCE9 .card-wrapper {
    margin: 0;
    padding: 0;
  }
}
.cid-udxjEimCE9 .mbr-section-title,
.cid-udxjEimCE9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-udxjEimCE9 .card-title,
.cid-udxjEimCE9 .card-box {
  color: #e2090d;
}
.cid-udxjEimCE9 .mbr-text {
  color: #9b9ba5;
}
@media (max-width: 600px) {
  .cid-udxjEimCE9 .mbr-section-title {
    letter-spacing: -1px;
  }
}
@media (min-width: 768px) {
  .cid-udxjEimCE9 .border-right {
    border-right: 2px solid rgba(255, 255, 255, 0.25);
  }
  .cid-udxjEimCE9 .top {
    border-top: 2px solid rgba(255, 255, 255, 0.25);
  }
  .cid-udxjEimCE9 .margin-left {
    margin-left: 5rem;
    padding: 3rem 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .cid-udxjEimCE9 .border-right {
    padding: 3rem 3rem 3rem 0;
  }
}
.cid-udxjEiJGBa {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/inred.......-1920x1080.jpg");
}
.cid-udxjEiJGBa .mbr-media {
  position: relative;
}
.cid-udxjEiJGBa .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-udxjEiJGBa .box {
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .cid-udxjEiJGBa .box {
    min-height: 300px;
  }
}
.cid-udxjEiJGBa .icon-wrap {
  position: relative;
  margin: auto;
  width: 100px;
  height: 100px;
  background: #d11535;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-udxjEiJGBa .icon-wrap a {
  height: 20px;
}
.cid-udxjEiJGBa .icon-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #d11535;
  opacity: 0.8;
  border-radius: 50%;
  animation-duration: 1s;
  animation-name: icons;
  animation-iteration-count: infinite;
  z-index: 1;
}
@keyframes icons {
  from {
    width: 100px;
    height: 100px;
    opacity: 0.8;
  }
  to {
    width: 160px;
    height: 160px;
    opacity: 0;
  }
}
.cid-udxjEiJGBa .mbr-media span {
  font-size: 1.5rem;
  transition: all 0.2s;
  z-index: 2;
  padding-left: 4px;
  position: relative;
  color: #ffffff;
}
.cid-udxjEiJGBa .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-udxjEiJGBa .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-udxjEiJGBa .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-udxjEiJGBa .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-udxjEiJGBa .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-udxjEiJGBa .mbr-section-title {
  color: #ffffff;
}
.cid-udxjEjdT7K {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-usJ4ERXE5s {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-usJ4ERXE5s nav.navbar {
  position: fixed;
}
.cid-usJ4ERXE5s .container,
.cid-usJ4ERXE5s .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-usJ4ERXE5s .container,
  .cid-usJ4ERXE5s .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-usJ4ERXE5s .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-usJ4ERXE5s .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #fc6004 !important;
}
.cid-usJ4ERXE5s .dropdown-item:hover,
.cid-usJ4ERXE5s .dropdown-item:focus {
  color: #fc6004 !important;
}
.cid-usJ4ERXE5s .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-usJ4ERXE5s .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-usJ4ERXE5s .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-usJ4ERXE5s .nav-link {
  position: relative;
}
.cid-usJ4ERXE5s .nav-link:hover {
  color: #ffffff !important;
}
.cid-usJ4ERXE5s .nav-link:hover:before {
  opacity: 1;
}
.cid-usJ4ERXE5s .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-usJ4ERXE5s .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-usJ4ERXE5s .container {
  display: flex;
  margin: auto;
}
.cid-usJ4ERXE5s .iconfont-wrapper {
  color: #040402 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-usJ4ERXE5s .nav-item:focus,
.cid-usJ4ERXE5s .nav-link:focus {
  outline: none;
}
.cid-usJ4ERXE5s .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-usJ4ERXE5s .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-usJ4ERXE5s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-usJ4ERXE5s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-usJ4ERXE5s .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-usJ4ERXE5s .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-usJ4ERXE5s .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #fc6004;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fc6004;
}
.cid-usJ4ERXE5s .navbar.opened {
  transition: all 0.3s;
}
.cid-usJ4ERXE5s .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-usJ4ERXE5s .navbar .navbar-logo img {
  width: auto;
}
.cid-usJ4ERXE5s .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-usJ4ERXE5s .navbar.collapsed {
  justify-content: center;
}
.cid-usJ4ERXE5s .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-usJ4ERXE5s .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-usJ4ERXE5s .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-usJ4ERXE5s .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-usJ4ERXE5s .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-usJ4ERXE5s .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-usJ4ERXE5s .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-usJ4ERXE5s .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-usJ4ERXE5s .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-usJ4ERXE5s .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-usJ4ERXE5s .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-usJ4ERXE5s .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-usJ4ERXE5s .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-usJ4ERXE5s .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-usJ4ERXE5s .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-usJ4ERXE5s .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-usJ4ERXE5s .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-usJ4ERXE5s .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-usJ4ERXE5s .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-usJ4ERXE5s .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-usJ4ERXE5s .navbar.navbar-short {
  min-height: 60px;
}
.cid-usJ4ERXE5s .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-usJ4ERXE5s .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-usJ4ERXE5s .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-usJ4ERXE5s .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-usJ4ERXE5s .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-usJ4ERXE5s .dropdown-item.active,
.cid-usJ4ERXE5s .dropdown-item:active {
  background-color: transparent;
}
.cid-usJ4ERXE5s .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-usJ4ERXE5s .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-usJ4ERXE5s .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-usJ4ERXE5s .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fc6004;
}
.cid-usJ4ERXE5s .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-usJ4ERXE5s .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-usJ4ERXE5s ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-usJ4ERXE5s .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-usJ4ERXE5s button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-usJ4ERXE5s button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-usJ4ERXE5s button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-usJ4ERXE5s button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-usJ4ERXE5s button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-usJ4ERXE5s button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-usJ4ERXE5s nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-usJ4ERXE5s nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-usJ4ERXE5s nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-usJ4ERXE5s nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-usJ4ERXE5s .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-usJ4ERXE5s a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-usJ4ERXE5s .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-usJ4ERXE5s .navbar {
    height: 70px;
  }
  .cid-usJ4ERXE5s .navbar.opened {
    height: auto;
  }
  .cid-usJ4ERXE5s .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-usJ4ERXE5s .icons-menu {
    padding-right: 0;
  }
  .cid-usJ4ERXE5s .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-usNFFIHsCF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8e8e8;
}
.cid-usNFFIHsCF .mbr-fallback-image.disabled {
  display: none;
}
.cid-usNFFIHsCF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usNFFIHsCF .row {
  justify-content: center;
}
.cid-usNFFIHsCF .title-wrapper {
  margin-bottom: 75px;
}
@media (max-width: 992px) {
  .cid-usNFFIHsCF .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-usNFFIHsCF .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-usNFFIHsCF .title-wrapper .mbr-desc {
  margin: 0;
}
.cid-usNFFIHsCF .image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  margin: 0 1rem;
}
.cid-usNFFIHsCF .image-wrapper:hover img {
  opacity: .7;
}
.cid-usNFFIHsCF .image-wrapper:hover .circle-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-usNFFIHsCF .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 40px;
  transition: all .3s ease;
}
.cid-usNFFIHsCF .image-wrapper .circle-wrapper {
  width: 154px;
  height: 154px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e6c63b;
  border-radius: 100%;
  z-index: 1;
}
.cid-usNFFIHsCF .image-wrapper .circle-wrapper .mbr-iconfont {
  font-size: 70px;
  display: block;
  color: #101511;
  transition: all .3s ease;
}
.cid-usNFFIHsCF .mbr-section-title {
  color: #101511;
  text-align: center;
}
.cid-usNFFIHsCF .mbr-desc {
  color: #6e716f;
  text-align: center;
}
.cid-usJ4ESi8fy {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-usJ4ESi8fy H1 {
  color: #e2090d;
  text-align: center;
}
.cid-usJ4ESi8fy h1 {
  background: linear-gradient(to left, #fc6004, currentColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-usJ4ESi8fy img {
  width: 100%;
}
.cid-usJ4ESi8fy .mbr-text,
.cid-usJ4ESi8fy .mbr-section-btn {
  color: #f9f7f5;
  text-align: center;
}
.cid-usJ4ESi8fy H2 {
  text-align: center;
}
.cid-usJ4ESyphL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-usJ4ESyphL .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #ffe161;
  margin-bottom: 1rem;
}
.cid-usJ4ESyphL .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-usJ4ESyphL .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-usJ4ESyphL .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-usJ4ESyphL .card-wrapper:hover {
  background: transparent;
}
.cid-usJ4ESyphL .card-title,
.cid-usJ4ESyphL .card-box {
  color: #ffffff;
}
.cid-usJ4ESyphL .main-title,
.cid-usJ4ESyphL .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-usJ4ESyphL .mbr-fallback-image.disabled {
  display: none;
}
.cid-usJ4ESyphL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usJ4ESRjgc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-usJ4ESRjgc .row {
  border-top: 1px solid #FFFFFF;
  min-height: 600px;
  margin-top: -1px;
}
.cid-usJ4ESRjgc .mbr-text {
  color: #FFFFFF;
  max-width: 330px;
  text-align: left;
}
.cid-usJ4ESRjgc .color-text {
  color: #d11535;
}
.cid-usJ4ESRjgc .custom-block {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  padding-right: 0;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-usJ4ESRjgc .card-wrapper {
  position: relative;
  padding: 3rem 24px;
}
.cid-usJ4ESRjgc .buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -12px;
}
.cid-usJ4ESRjgc .buttons-container .item-button {
  margin: 0;
}
.cid-usJ4ESRjgc .buttons-container .btn {
  margin: 0 0 16px 12px;
}
.cid-usJ4ESRjgc .buttons-container .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-usJ4ESRjgc .buttons-container .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
@media (min-width: 768px) {
  .cid-usJ4ESRjgc .wrapper {
    margin-right: -32px;
    margin-left: -32px;
    padding-right: 12px;
    padding-left: 12px;
  }
  .cid-usJ4ESRjgc .custom-block_left {
    border-right: 1px solid #ffffff;
  }
}
.cid-usJ4ESRjgc .custom-block_left {
  padding: 0;
}
.cid-usJ4ESRjgc .custom-block_left .section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 3rem;
  right: 16px;
  margin: 0;
  box-shadow: 0 0 130px 1px #fc6004;
  transform: rotate(45deg);
  border-radius: 50%;
  width: 120px;
  height: 120px;
}
.cid-usJ4ESRjgc .custom-block_left .section-btn .btn-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  background: #fc6004;
  border-radius: 50%;
  transition: 0.2s;
}
.cid-usJ4ESRjgc .custom-block_left .section-btn .btn-custom:hover {
  background: #a73f02;
}
.cid-usJ4ESRjgc .custom-block_left .section-btn .btn-custom span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.cid-usJ4ESRjgc .card-box {
  max-width: 565px;
}
.cid-usJ4ESRjgc .image-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  padding: 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .cid-usJ4ESRjgc .image-wrapper {
    order: -1;
    border-bottom: none;
  }
}
.cid-usJ4ESRjgc .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-usJ4ESRjgc .wrapper {
    padding-right: 16px;
    padding-left: 16px;
  }
  .cid-usJ4ESRjgc .card-wrapper {
    position: relative;
    padding: 60px;
  }
  .cid-usJ4ESRjgc .custom-block_left .section-btn {
    bottom: 35px;
    right: 35px;
  }
}
@media (max-width: 575px) {
  .cid-usJ4ESRjgc .custom-block_left {
    padding: 0;
  }
  .cid-usJ4ESRjgc .custom-block_left .section-btn {
    position: sticky;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
  }
  .cid-usJ4ESRjgc .custom-block_left .section-btn .btn-custom {
    width: 80px;
    height: 80px;
  }
  .cid-usJ4ESRjgc .card-title-box {
    margin-bottom: 16px;
  }
  .cid-usJ4ESRjgc .mbr-text {
    max-width: 100%;
    margin-bottom: 16px !important;
  }
}
.cid-usJ4ESRjgc .card-title {
  color: #ffe885;
  text-align: left;
}
.cid-usJ4ET9ndz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/inred-imagen-original-2000x1288.png");
}
.cid-usJ4ET9ndz .mbr-media {
  position: relative;
}
.cid-usJ4ET9ndz .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-usJ4ET9ndz .box {
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .cid-usJ4ET9ndz .box {
    min-height: 300px;
  }
}
.cid-usJ4ET9ndz .icon-wrap {
  position: relative;
  margin: auto;
  width: 100px;
  height: 100px;
  background: #d11535;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-usJ4ET9ndz .icon-wrap a {
  height: 20px;
}
.cid-usJ4ET9ndz .icon-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #d11535;
  opacity: 0.8;
  border-radius: 50%;
  animation-duration: 1s;
  animation-name: icons;
  animation-iteration-count: infinite;
  z-index: 1;
}
@keyframes icons {
  from {
    width: 100px;
    height: 100px;
    opacity: 0.8;
  }
  to {
    width: 160px;
    height: 160px;
    opacity: 0;
  }
}
.cid-usJ4ET9ndz .mbr-media span {
  font-size: 1.5rem;
  transition: all 0.2s;
  z-index: 2;
  padding-left: 4px;
  position: relative;
  color: #ffffff;
}
.cid-usJ4ET9ndz .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-usJ4ET9ndz .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-usJ4ET9ndz .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-usJ4ET9ndz .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-usJ4ET9ndz .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-usJ4ET9ndz .mbr-section-title {
  color: #ffffff;
}
.cid-usJ4ETBHcR {
  background-image: url("../../../assets/images/intro-inredpro-ok-final-ok-ok.gif");
}
.cid-usJ4ETBHcR .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-usJ4ETBHcR .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-usJ4ETBHcR .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-usJ4ETBHcR .label-text {
    text-align: center !important;
  }
}
.cid-usJ4ETBHcR .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-usJ4ETBHcR .mbr-section-title {
    text-align: center !important;
  }
}
.cid-usJ4ETBHcR .mbr-section-title,
.cid-usJ4ETBHcR .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-usJ4ETRcg9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-uCrjB4Ad26 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCrjB4Ad26 nav.navbar {
  position: fixed;
}
.cid-uCrjB4Ad26 .container,
.cid-uCrjB4Ad26 .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uCrjB4Ad26 .container,
  .cid-uCrjB4Ad26 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uCrjB4Ad26 .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-uCrjB4Ad26 .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #fc6004 !important;
}
.cid-uCrjB4Ad26 .dropdown-item:hover,
.cid-uCrjB4Ad26 .dropdown-item:focus {
  color: #fc6004 !important;
}
.cid-uCrjB4Ad26 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCrjB4Ad26 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCrjB4Ad26 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCrjB4Ad26 .nav-link {
  position: relative;
}
.cid-uCrjB4Ad26 .nav-link:hover {
  color: #ffffff !important;
}
.cid-uCrjB4Ad26 .nav-link:hover:before {
  opacity: 1;
}
.cid-uCrjB4Ad26 .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-uCrjB4Ad26 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCrjB4Ad26 .container {
  display: flex;
  margin: auto;
}
.cid-uCrjB4Ad26 .iconfont-wrapper {
  color: #040402 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCrjB4Ad26 .nav-item:focus,
.cid-uCrjB4Ad26 .nav-link:focus {
  outline: none;
}
.cid-uCrjB4Ad26 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCrjB4Ad26 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCrjB4Ad26 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCrjB4Ad26 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCrjB4Ad26 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCrjB4Ad26 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCrjB4Ad26 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #fc6004;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fc6004;
}
.cid-uCrjB4Ad26 .navbar.opened {
  transition: all 0.3s;
}
.cid-uCrjB4Ad26 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCrjB4Ad26 .navbar .navbar-logo img {
  width: auto;
}
.cid-uCrjB4Ad26 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCrjB4Ad26 .navbar.collapsed {
  justify-content: center;
}
.cid-uCrjB4Ad26 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCrjB4Ad26 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCrjB4Ad26 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uCrjB4Ad26 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCrjB4Ad26 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCrjB4Ad26 .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-uCrjB4Ad26 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCrjB4Ad26 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCrjB4Ad26 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCrjB4Ad26 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCrjB4Ad26 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCrjB4Ad26 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCrjB4Ad26 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCrjB4Ad26 .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-uCrjB4Ad26 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCrjB4Ad26 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCrjB4Ad26 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCrjB4Ad26 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCrjB4Ad26 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCrjB4Ad26 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uCrjB4Ad26 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCrjB4Ad26 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCrjB4Ad26 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCrjB4Ad26 .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-uCrjB4Ad26 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCrjB4Ad26 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCrjB4Ad26 .dropdown-item.active,
.cid-uCrjB4Ad26 .dropdown-item:active {
  background-color: transparent;
}
.cid-uCrjB4Ad26 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCrjB4Ad26 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCrjB4Ad26 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCrjB4Ad26 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fc6004;
}
.cid-uCrjB4Ad26 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCrjB4Ad26 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCrjB4Ad26 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCrjB4Ad26 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCrjB4Ad26 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-uCrjB4Ad26 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uCrjB4Ad26 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCrjB4Ad26 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCrjB4Ad26 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCrjB4Ad26 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCrjB4Ad26 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCrjB4Ad26 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCrjB4Ad26 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCrjB4Ad26 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCrjB4Ad26 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCrjB4Ad26 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCrjB4Ad26 .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-uCrjB4Ad26 .navbar {
    height: 70px;
  }
  .cid-uCrjB4Ad26 .navbar.opened {
    height: auto;
  }
  .cid-uCrjB4Ad26 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-uCrjB4Ad26 .icons-menu {
    padding-right: 0;
  }
  .cid-uCrjB4Ad26 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-uCrjB4WJy1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fbfbfb;
}
.cid-uCrjB4WJy1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCrjB4WJy1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCrjB4WJy1 .video-wrapper iframe {
  width: 100%;
}
.cid-uCrjB4WJy1 .mbr-section-title,
.cid-uCrjB4WJy1 .mbr-section-subtitle,
.cid-uCrjB4WJy1 .mbr-text {
  text-align: center;
}
.cid-uCrjB4WJy1 .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uCrjB4WJy1 .container-fluid {
    padding: 0;
  }
}
.cid-uCrjB4WJy1 .app-video-wrapper::before {
  position: absolute;
  font-family: "Moririse2";
  content: "\e95f";
  font-size: 12px;
  line-height: 70px;
  margin-left: -35px;
  margin-top: -35px;
  top: 50%;
  left: 50%;
  color: #fc6004;
  text-shadow: none;
  z-index: 1;
  width: 105px;
  height: 105px;
  background-color: #fbfbfb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
.cid-uCrjB4WJy1 .app-video-wrapper > img {
  opacity: .6;
}
.cid-uCrkWxGAKu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ededed;
}
.cid-uCrkWxGAKu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCrkWxGAKu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uCrkWxGAKu .container {
    padding: 0 16px;
  }
}
.cid-uCrkWxGAKu .row {
  justify-content: center;
  margin: 0 -12px;
}
.cid-uCrkWxGAKu .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
.cid-uCrkWxGAKu .item .item-wrapper .item-img img {
  height: 650px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uCrkWxGAKu .item .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uCrmrLXPvv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ededed;
}
.cid-uCrmrLXPvv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCrmrLXPvv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCrmrLXPvv .item {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uCrmrLXPvv .item {
    margin-bottom: 12px;
  }
}
.cid-uCrmrLXPvv .item .item-wrapper .item-img img {
  width: 100%;
  object-fit: cover;
}
.cid-uCrmrLXPvv .item .item-wrapper .card_1 {
  margin: 80px 0 0 180px;
}
@media (max-width: 1440px) {
  .cid-uCrmrLXPvv .item .item-wrapper .card_1 {
    margin: 40px 0 0 120px;
  }
}
@media (max-width: 1200px) {
  .cid-uCrmrLXPvv .item .item-wrapper .card_1 {
    margin: 0;
  }
}
.cid-uCrmrLXPvv .item .item-wrapper .card_1 img {
  height: 760px;
}
@media (max-width: 992px) {
  .cid-uCrmrLXPvv .item .item-wrapper .card_1 img {
    height: 350px;
  }
}
.cid-uCrmrLXPvv .item .item-wrapper .card_2 {
  display: flex;
  justify-content: center;
}
.cid-uCrmrLXPvv .item .item-wrapper .card_2 img {
  height: 520px;
  width: 60%;
}
@media (max-width: 1440px) {
  .cid-uCrmrLXPvv .item .item-wrapper .card_2 img {
    width: 80%;
  }
}
@media (max-width: 1200px) {
  .cid-uCrmrLXPvv .item .item-wrapper .card_2 img {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-uCrmrLXPvv .item .item-wrapper .card_2 img {
    height: 350px;
  }
}
.cid-uCrjB5kN8Y {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-taAnT6Z5hB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-taAnT6Z5hB nav.navbar {
  position: fixed;
}
.cid-taAnT6Z5hB .container,
.cid-taAnT6Z5hB .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-taAnT6Z5hB .container,
  .cid-taAnT6Z5hB .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-taAnT6Z5hB .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-taAnT6Z5hB .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #fc6004 !important;
}
.cid-taAnT6Z5hB .dropdown-item:hover,
.cid-taAnT6Z5hB .dropdown-item:focus {
  color: #fc6004 !important;
}
.cid-taAnT6Z5hB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-taAnT6Z5hB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-taAnT6Z5hB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-taAnT6Z5hB .nav-link {
  position: relative;
}
.cid-taAnT6Z5hB .nav-link:hover {
  color: #ffffff !important;
}
.cid-taAnT6Z5hB .nav-link:hover:before {
  opacity: 1;
}
.cid-taAnT6Z5hB .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-taAnT6Z5hB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-taAnT6Z5hB .container {
  display: flex;
  margin: auto;
}
.cid-taAnT6Z5hB .iconfont-wrapper {
  color: #040402 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-taAnT6Z5hB .nav-item:focus,
.cid-taAnT6Z5hB .nav-link:focus {
  outline: none;
}
.cid-taAnT6Z5hB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-taAnT6Z5hB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-taAnT6Z5hB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-taAnT6Z5hB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-taAnT6Z5hB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-taAnT6Z5hB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-taAnT6Z5hB .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #fc6004;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fc6004;
}
.cid-taAnT6Z5hB .navbar.opened {
  transition: all 0.3s;
}
.cid-taAnT6Z5hB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-taAnT6Z5hB .navbar .navbar-logo img {
  width: auto;
}
.cid-taAnT6Z5hB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-taAnT6Z5hB .navbar.collapsed {
  justify-content: center;
}
.cid-taAnT6Z5hB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-taAnT6Z5hB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-taAnT6Z5hB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-taAnT6Z5hB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-taAnT6Z5hB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-taAnT6Z5hB .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-taAnT6Z5hB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-taAnT6Z5hB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-taAnT6Z5hB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-taAnT6Z5hB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-taAnT6Z5hB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-taAnT6Z5hB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-taAnT6Z5hB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-taAnT6Z5hB .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-taAnT6Z5hB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-taAnT6Z5hB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-taAnT6Z5hB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-taAnT6Z5hB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-taAnT6Z5hB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-taAnT6Z5hB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-taAnT6Z5hB .navbar.navbar-short {
  min-height: 60px;
}
.cid-taAnT6Z5hB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-taAnT6Z5hB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-taAnT6Z5hB .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-taAnT6Z5hB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-taAnT6Z5hB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-taAnT6Z5hB .dropdown-item.active,
.cid-taAnT6Z5hB .dropdown-item:active {
  background-color: transparent;
}
.cid-taAnT6Z5hB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-taAnT6Z5hB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-taAnT6Z5hB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-taAnT6Z5hB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fc6004;
}
.cid-taAnT6Z5hB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-taAnT6Z5hB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-taAnT6Z5hB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-taAnT6Z5hB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-taAnT6Z5hB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-taAnT6Z5hB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-taAnT6Z5hB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-taAnT6Z5hB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-taAnT6Z5hB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-taAnT6Z5hB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-taAnT6Z5hB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-taAnT6Z5hB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-taAnT6Z5hB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-taAnT6Z5hB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-taAnT6Z5hB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-taAnT6Z5hB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-taAnT6Z5hB .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-taAnT6Z5hB .navbar {
    height: 70px;
  }
  .cid-taAnT6Z5hB .navbar.opened {
    height: auto;
  }
  .cid-taAnT6Z5hB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-taAnT6Z5hB .icons-menu {
    padding-right: 0;
  }
  .cid-taAnT6Z5hB .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-taAnT8z9jf {
  padding-top: 105px;
  padding-bottom: 150px;
  background-color: #ffffff;
}
.cid-taAnT8z9jf H1 {
  color: #fc6004;
}
.cid-taAnT8z9jf h1 {
  background: linear-gradient(to left, #fc6004, currentColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-taAnT8z9jf img {
  width: 100%;
}
.cid-taAnT8z9jf .mbr-text,
.cid-taAnT8z9jf .mbr-section-btn {
  color: #111111;
}
.cid-tb9l1klNtH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-tb9l1klNtH .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #ffe161;
  margin-bottom: 1rem;
}
.cid-tb9l1klNtH .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tb9l1klNtH .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tb9l1klNtH .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-tb9l1klNtH .card-wrapper:hover {
  background: transparent;
}
.cid-tb9l1klNtH .card-title,
.cid-tb9l1klNtH .card-box {
  color: #ffffff;
}
.cid-tb9l1klNtH .main-title,
.cid-tb9l1klNtH .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-tb9l1klNtH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tb9l1klNtH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-taAnTd2IrQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-taAnTd2IrQ .row {
  border-top: 1px solid #FFFFFF;
  min-height: 600px;
  margin-top: -1px;
}
.cid-taAnTd2IrQ .mbr-text {
  color: #FFFFFF;
  max-width: 330px;
  text-align: left;
}
.cid-taAnTd2IrQ .color-text {
  color: #d11535;
}
.cid-taAnTd2IrQ .custom-block {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  padding-right: 0;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-taAnTd2IrQ .card-wrapper {
  position: relative;
  padding: 3rem 24px;
}
.cid-taAnTd2IrQ .buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -12px;
}
.cid-taAnTd2IrQ .buttons-container .item-button {
  margin: 0;
}
.cid-taAnTd2IrQ .buttons-container .btn {
  margin: 0 0 16px 12px;
}
.cid-taAnTd2IrQ .buttons-container .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-taAnTd2IrQ .buttons-container .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
@media (min-width: 768px) {
  .cid-taAnTd2IrQ .wrapper {
    margin-right: -32px;
    margin-left: -32px;
    padding-right: 12px;
    padding-left: 12px;
  }
  .cid-taAnTd2IrQ .custom-block_left {
    border-right: 1px solid #ffffff;
  }
}
.cid-taAnTd2IrQ .custom-block_left {
  padding: 0;
}
.cid-taAnTd2IrQ .custom-block_left .section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 3rem;
  right: 16px;
  margin: 0;
  box-shadow: 0 0 130px 1px #fc6004;
  transform: rotate(45deg);
  border-radius: 50%;
  width: 120px;
  height: 120px;
}
.cid-taAnTd2IrQ .custom-block_left .section-btn .btn-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  background: #fc6004;
  border-radius: 50%;
  transition: 0.2s;
}
.cid-taAnTd2IrQ .custom-block_left .section-btn .btn-custom:hover {
  background: #a73f02;
}
.cid-taAnTd2IrQ .custom-block_left .section-btn .btn-custom span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.cid-taAnTd2IrQ .card-box {
  max-width: 565px;
}
.cid-taAnTd2IrQ .image-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  padding: 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .cid-taAnTd2IrQ .image-wrapper {
    order: -1;
    border-bottom: none;
  }
}
.cid-taAnTd2IrQ .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-taAnTd2IrQ .wrapper {
    padding-right: 16px;
    padding-left: 16px;
  }
  .cid-taAnTd2IrQ .card-wrapper {
    position: relative;
    padding: 60px;
  }
  .cid-taAnTd2IrQ .custom-block_left .section-btn {
    bottom: 35px;
    right: 35px;
  }
}
@media (max-width: 575px) {
  .cid-taAnTd2IrQ .custom-block_left {
    padding: 0;
  }
  .cid-taAnTd2IrQ .custom-block_left .section-btn {
    position: sticky;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
  }
  .cid-taAnTd2IrQ .custom-block_left .section-btn .btn-custom {
    width: 80px;
    height: 80px;
  }
  .cid-taAnTd2IrQ .card-title-box {
    margin-bottom: 16px;
  }
  .cid-taAnTd2IrQ .mbr-text {
    max-width: 100%;
    margin-bottom: 16px !important;
  }
}
.cid-taAnTd2IrQ .card-title {
  color: #ffe885;
  text-align: left;
}
.cid-taAnTj4Yl3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/inred-imagen-original-2000x1288.png");
}
.cid-taAnTj4Yl3 .mbr-media {
  position: relative;
}
.cid-taAnTj4Yl3 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-taAnTj4Yl3 .box {
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .cid-taAnTj4Yl3 .box {
    min-height: 300px;
  }
}
.cid-taAnTj4Yl3 .icon-wrap {
  position: relative;
  margin: auto;
  width: 100px;
  height: 100px;
  background: #d11535;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-taAnTj4Yl3 .icon-wrap a {
  height: 20px;
}
.cid-taAnTj4Yl3 .icon-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #d11535;
  opacity: 0.8;
  border-radius: 50%;
  animation-duration: 1s;
  animation-name: icons;
  animation-iteration-count: infinite;
  z-index: 1;
}
@keyframes icons {
  from {
    width: 100px;
    height: 100px;
    opacity: 0.8;
  }
  to {
    width: 160px;
    height: 160px;
    opacity: 0;
  }
}
.cid-taAnTj4Yl3 .mbr-media span {
  font-size: 1.5rem;
  transition: all 0.2s;
  z-index: 2;
  padding-left: 4px;
  position: relative;
  color: #ffffff;
}
.cid-taAnTj4Yl3 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-taAnTj4Yl3 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-taAnTj4Yl3 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-taAnTj4Yl3 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-taAnTj4Yl3 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-taAnTj4Yl3 .mbr-section-title {
  color: #ffffff;
}
.cid-taAnT7Z6X0 {
  background-image: url("../../../assets/images/intro-inredpro-ok-final-ok-ok.gif");
}
.cid-taAnT7Z6X0 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-taAnT7Z6X0 .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-taAnT7Z6X0 .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-taAnT7Z6X0 .label-text {
    text-align: center !important;
  }
}
.cid-taAnT7Z6X0 .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-taAnT7Z6X0 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-taAnT7Z6X0 .mbr-section-title,
.cid-taAnT7Z6X0 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-taAnTnXFSk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tZFZMzICD9 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tZFZMzICD9 nav.navbar {
  position: fixed;
}
.cid-tZFZMzICD9 .container,
.cid-tZFZMzICD9 .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tZFZMzICD9 .container,
  .cid-tZFZMzICD9 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tZFZMzICD9 .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-tZFZMzICD9 .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #fc6004 !important;
}
.cid-tZFZMzICD9 .dropdown-item:hover,
.cid-tZFZMzICD9 .dropdown-item:focus {
  color: #fc6004 !important;
}
.cid-tZFZMzICD9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tZFZMzICD9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tZFZMzICD9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tZFZMzICD9 .nav-link {
  position: relative;
}
.cid-tZFZMzICD9 .nav-link:hover {
  color: #ffffff !important;
}
.cid-tZFZMzICD9 .nav-link:hover:before {
  opacity: 1;
}
.cid-tZFZMzICD9 .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-tZFZMzICD9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tZFZMzICD9 .container {
  display: flex;
  margin: auto;
}
.cid-tZFZMzICD9 .iconfont-wrapper {
  color: #040402 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tZFZMzICD9 .nav-item:focus,
.cid-tZFZMzICD9 .nav-link:focus {
  outline: none;
}
.cid-tZFZMzICD9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tZFZMzICD9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tZFZMzICD9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tZFZMzICD9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tZFZMzICD9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tZFZMzICD9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tZFZMzICD9 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #fc6004;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fc6004;
}
.cid-tZFZMzICD9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tZFZMzICD9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tZFZMzICD9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tZFZMzICD9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tZFZMzICD9 .navbar.collapsed {
  justify-content: center;
}
.cid-tZFZMzICD9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tZFZMzICD9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tZFZMzICD9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tZFZMzICD9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tZFZMzICD9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tZFZMzICD9 .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-tZFZMzICD9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tZFZMzICD9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tZFZMzICD9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tZFZMzICD9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tZFZMzICD9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tZFZMzICD9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tZFZMzICD9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tZFZMzICD9 .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-tZFZMzICD9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tZFZMzICD9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tZFZMzICD9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tZFZMzICD9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tZFZMzICD9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tZFZMzICD9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tZFZMzICD9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tZFZMzICD9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tZFZMzICD9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tZFZMzICD9 .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-tZFZMzICD9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tZFZMzICD9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tZFZMzICD9 .dropdown-item.active,
.cid-tZFZMzICD9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tZFZMzICD9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tZFZMzICD9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tZFZMzICD9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tZFZMzICD9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fc6004;
}
.cid-tZFZMzICD9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tZFZMzICD9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tZFZMzICD9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tZFZMzICD9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tZFZMzICD9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-tZFZMzICD9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tZFZMzICD9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tZFZMzICD9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZFZMzICD9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tZFZMzICD9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tZFZMzICD9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZFZMzICD9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tZFZMzICD9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tZFZMzICD9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tZFZMzICD9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tZFZMzICD9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tZFZMzICD9 .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-tZFZMzICD9 .navbar {
    height: 70px;
  }
  .cid-tZFZMzICD9 .navbar.opened {
    height: auto;
  }
  .cid-tZFZMzICD9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-tZFZMzICD9 .icons-menu {
    padding-right: 0;
  }
  .cid-tZFZMzICD9 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tZFZMzWMmO {
  padding-top: 135px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-tZFZMzWMmO H1 {
  color: #fc6004;
  text-align: center;
}
.cid-tZFZMzWMmO h1 {
  background: linear-gradient(to left, #fc6004, currentColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tZFZMzWMmO img {
  width: 100%;
}
.cid-tZFZMzWMmO .mbr-text,
.cid-tZFZMzWMmO .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tZFZMzWMmO H2 {
  text-align: center;
}
.cid-tZFZMA8yaM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-tZFZMA8yaM .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #ffe161;
  margin-bottom: 1rem;
}
.cid-tZFZMA8yaM .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tZFZMA8yaM .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tZFZMA8yaM .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-tZFZMA8yaM .card-wrapper:hover {
  background: transparent;
}
.cid-tZFZMA8yaM .card-title,
.cid-tZFZMA8yaM .card-box {
  color: #ffffff;
}
.cid-tZFZMA8yaM .main-title,
.cid-tZFZMA8yaM .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-tZFZMA8yaM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZFZMA8yaM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZFZMAkdGo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-tZFZMAkdGo .row {
  border-top: 1px solid #FFFFFF;
  min-height: 600px;
  margin-top: -1px;
}
.cid-tZFZMAkdGo .mbr-text {
  color: #FFFFFF;
  max-width: 330px;
  text-align: left;
}
.cid-tZFZMAkdGo .color-text {
  color: #d11535;
}
.cid-tZFZMAkdGo .custom-block {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  padding-right: 0;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-tZFZMAkdGo .card-wrapper {
  position: relative;
  padding: 3rem 24px;
}
.cid-tZFZMAkdGo .buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -12px;
}
.cid-tZFZMAkdGo .buttons-container .item-button {
  margin: 0;
}
.cid-tZFZMAkdGo .buttons-container .btn {
  margin: 0 0 16px 12px;
}
.cid-tZFZMAkdGo .buttons-container .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-tZFZMAkdGo .buttons-container .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
@media (min-width: 768px) {
  .cid-tZFZMAkdGo .wrapper {
    margin-right: -32px;
    margin-left: -32px;
    padding-right: 12px;
    padding-left: 12px;
  }
  .cid-tZFZMAkdGo .custom-block_left {
    border-right: 1px solid #ffffff;
  }
}
.cid-tZFZMAkdGo .custom-block_left {
  padding: 0;
}
.cid-tZFZMAkdGo .custom-block_left .section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 3rem;
  right: 16px;
  margin: 0;
  box-shadow: 0 0 130px 1px #fc6004;
  transform: rotate(45deg);
  border-radius: 50%;
  width: 120px;
  height: 120px;
}
.cid-tZFZMAkdGo .custom-block_left .section-btn .btn-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  background: #fc6004;
  border-radius: 50%;
  transition: 0.2s;
}
.cid-tZFZMAkdGo .custom-block_left .section-btn .btn-custom:hover {
  background: #a73f02;
}
.cid-tZFZMAkdGo .custom-block_left .section-btn .btn-custom span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.cid-tZFZMAkdGo .card-box {
  max-width: 565px;
}
.cid-tZFZMAkdGo .image-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  padding: 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .cid-tZFZMAkdGo .image-wrapper {
    order: -1;
    border-bottom: none;
  }
}
.cid-tZFZMAkdGo .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tZFZMAkdGo .wrapper {
    padding-right: 16px;
    padding-left: 16px;
  }
  .cid-tZFZMAkdGo .card-wrapper {
    position: relative;
    padding: 60px;
  }
  .cid-tZFZMAkdGo .custom-block_left .section-btn {
    bottom: 35px;
    right: 35px;
  }
}
@media (max-width: 575px) {
  .cid-tZFZMAkdGo .custom-block_left {
    padding: 0;
  }
  .cid-tZFZMAkdGo .custom-block_left .section-btn {
    position: sticky;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
  }
  .cid-tZFZMAkdGo .custom-block_left .section-btn .btn-custom {
    width: 80px;
    height: 80px;
  }
  .cid-tZFZMAkdGo .card-title-box {
    margin-bottom: 16px;
  }
  .cid-tZFZMAkdGo .mbr-text {
    max-width: 100%;
    margin-bottom: 16px !important;
  }
}
.cid-tZFZMAkdGo .card-title {
  color: #ffe885;
  text-align: left;
}
.cid-tZFZMAsWxe {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/inred-imagen-original-2000x1288.png");
}
.cid-tZFZMAsWxe .mbr-media {
  position: relative;
}
.cid-tZFZMAsWxe .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-tZFZMAsWxe .box {
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .cid-tZFZMAsWxe .box {
    min-height: 300px;
  }
}
.cid-tZFZMAsWxe .icon-wrap {
  position: relative;
  margin: auto;
  width: 100px;
  height: 100px;
  background: #d11535;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tZFZMAsWxe .icon-wrap a {
  height: 20px;
}
.cid-tZFZMAsWxe .icon-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #d11535;
  opacity: 0.8;
  border-radius: 50%;
  animation-duration: 1s;
  animation-name: icons;
  animation-iteration-count: infinite;
  z-index: 1;
}
@keyframes icons {
  from {
    width: 100px;
    height: 100px;
    opacity: 0.8;
  }
  to {
    width: 160px;
    height: 160px;
    opacity: 0;
  }
}
.cid-tZFZMAsWxe .mbr-media span {
  font-size: 1.5rem;
  transition: all 0.2s;
  z-index: 2;
  padding-left: 4px;
  position: relative;
  color: #ffffff;
}
.cid-tZFZMAsWxe .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tZFZMAsWxe .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tZFZMAsWxe .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tZFZMAsWxe .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tZFZMAsWxe .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tZFZMAsWxe .mbr-section-title {
  color: #ffffff;
}
.cid-tZFZMAOE6g {
  background-image: url("../../../assets/images/intro-inredpro-ok-final-ok-ok.gif");
}
.cid-tZFZMAOE6g .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tZFZMAOE6g .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-tZFZMAOE6g .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tZFZMAOE6g .label-text {
    text-align: center !important;
  }
}
.cid-tZFZMAOE6g .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tZFZMAOE6g .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tZFZMAOE6g .mbr-section-title,
.cid-tZFZMAOE6g .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tZFZMAWdXj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-vfs3kzmfDq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vfs3kzmfDq nav.navbar {
  position: fixed;
}
.cid-vfs3kzmfDq .container,
.cid-vfs3kzmfDq .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vfs3kzmfDq .container,
  .cid-vfs3kzmfDq .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-vfs3kzmfDq .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-vfs3kzmfDq .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #fc6004 !important;
}
.cid-vfs3kzmfDq .dropdown-item:hover,
.cid-vfs3kzmfDq .dropdown-item:focus {
  color: #fc6004 !important;
}
.cid-vfs3kzmfDq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vfs3kzmfDq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vfs3kzmfDq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vfs3kzmfDq .nav-link {
  position: relative;
}
.cid-vfs3kzmfDq .nav-link:hover {
  color: #ffffff !important;
}
.cid-vfs3kzmfDq .nav-link:hover:before {
  opacity: 1;
}
.cid-vfs3kzmfDq .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-vfs3kzmfDq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vfs3kzmfDq .container {
  display: flex;
  margin: auto;
}
.cid-vfs3kzmfDq .iconfont-wrapper {
  color: #040402 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vfs3kzmfDq .nav-item:focus,
.cid-vfs3kzmfDq .nav-link:focus {
  outline: none;
}
.cid-vfs3kzmfDq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vfs3kzmfDq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vfs3kzmfDq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vfs3kzmfDq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vfs3kzmfDq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vfs3kzmfDq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vfs3kzmfDq .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #fc6004;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fc6004;
}
.cid-vfs3kzmfDq .navbar.opened {
  transition: all 0.3s;
}
.cid-vfs3kzmfDq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vfs3kzmfDq .navbar .navbar-logo img {
  width: auto;
}
.cid-vfs3kzmfDq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vfs3kzmfDq .navbar.collapsed {
  justify-content: center;
}
.cid-vfs3kzmfDq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vfs3kzmfDq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vfs3kzmfDq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vfs3kzmfDq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vfs3kzmfDq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vfs3kzmfDq .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-vfs3kzmfDq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vfs3kzmfDq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vfs3kzmfDq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vfs3kzmfDq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vfs3kzmfDq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vfs3kzmfDq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vfs3kzmfDq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vfs3kzmfDq .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-vfs3kzmfDq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vfs3kzmfDq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vfs3kzmfDq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vfs3kzmfDq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vfs3kzmfDq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vfs3kzmfDq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vfs3kzmfDq .navbar.navbar-short {
  min-height: 60px;
}
.cid-vfs3kzmfDq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vfs3kzmfDq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vfs3kzmfDq .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-vfs3kzmfDq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vfs3kzmfDq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vfs3kzmfDq .dropdown-item.active,
.cid-vfs3kzmfDq .dropdown-item:active {
  background-color: transparent;
}
.cid-vfs3kzmfDq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vfs3kzmfDq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vfs3kzmfDq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vfs3kzmfDq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fc6004;
}
.cid-vfs3kzmfDq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vfs3kzmfDq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vfs3kzmfDq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vfs3kzmfDq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vfs3kzmfDq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-vfs3kzmfDq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vfs3kzmfDq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vfs3kzmfDq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfs3kzmfDq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vfs3kzmfDq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vfs3kzmfDq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfs3kzmfDq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vfs3kzmfDq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vfs3kzmfDq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vfs3kzmfDq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vfs3kzmfDq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vfs3kzmfDq .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-vfs3kzmfDq .navbar {
    height: 70px;
  }
  .cid-vfs3kzmfDq .navbar.opened {
    height: auto;
  }
  .cid-vfs3kzmfDq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-vfs3kzmfDq .icons-menu {
    padding-right: 0;
  }
  .cid-vfs3kzmfDq .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-vfs3kzF0aQ {
  padding-top: 105px;
  padding-bottom: 150px;
  background-color: #ffffff;
}
.cid-vfs3kzF0aQ H1 {
  color: #fc6004;
}
.cid-vfs3kzF0aQ h1 {
  background: linear-gradient(to left, #fc6004, currentColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-vfs3kzF0aQ img {
  width: 100%;
}
.cid-vfs3kzF0aQ .mbr-text,
.cid-vfs3kzF0aQ .mbr-section-btn {
  color: #111111;
}
.cid-vfs3kzV0z1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-vfs3kzV0z1 .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #ffe161;
  margin-bottom: 1rem;
}
.cid-vfs3kzV0z1 .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-vfs3kzV0z1 .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-vfs3kzV0z1 .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-vfs3kzV0z1 .card-wrapper:hover {
  background: transparent;
}
.cid-vfs3kzV0z1 .card-title,
.cid-vfs3kzV0z1 .card-box {
  color: #ffffff;
}
.cid-vfs3kzV0z1 .main-title,
.cid-vfs3kzV0z1 .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-vfs3kzV0z1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfs3kzV0z1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vfs3kAdSLr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-vfs3kAdSLr .row {
  border-top: 1px solid #FFFFFF;
  min-height: 600px;
  margin-top: -1px;
}
.cid-vfs3kAdSLr .mbr-text {
  color: #FFFFFF;
  max-width: 330px;
  text-align: left;
}
.cid-vfs3kAdSLr .color-text {
  color: #d11535;
}
.cid-vfs3kAdSLr .custom-block {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  padding-right: 0;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-vfs3kAdSLr .card-wrapper {
  position: relative;
  padding: 3rem 24px;
}
.cid-vfs3kAdSLr .buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -12px;
}
.cid-vfs3kAdSLr .buttons-container .item-button {
  margin: 0;
}
.cid-vfs3kAdSLr .buttons-container .btn {
  margin: 0 0 16px 12px;
}
.cid-vfs3kAdSLr .buttons-container .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-vfs3kAdSLr .buttons-container .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
@media (min-width: 768px) {
  .cid-vfs3kAdSLr .wrapper {
    margin-right: -32px;
    margin-left: -32px;
    padding-right: 12px;
    padding-left: 12px;
  }
  .cid-vfs3kAdSLr .custom-block_left {
    border-right: 1px solid #ffffff;
  }
}
.cid-vfs3kAdSLr .custom-block_left {
  padding: 0;
}
.cid-vfs3kAdSLr .custom-block_left .section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 3rem;
  right: 16px;
  margin: 0;
  box-shadow: 0 0 130px 1px #fc6004;
  transform: rotate(45deg);
  border-radius: 50%;
  width: 120px;
  height: 120px;
}
.cid-vfs3kAdSLr .custom-block_left .section-btn .btn-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  background: #fc6004;
  border-radius: 50%;
  transition: 0.2s;
}
.cid-vfs3kAdSLr .custom-block_left .section-btn .btn-custom:hover {
  background: #a73f02;
}
.cid-vfs3kAdSLr .custom-block_left .section-btn .btn-custom span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.cid-vfs3kAdSLr .card-box {
  max-width: 565px;
}
.cid-vfs3kAdSLr .image-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  padding: 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .cid-vfs3kAdSLr .image-wrapper {
    order: -1;
    border-bottom: none;
  }
}
.cid-vfs3kAdSLr .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-vfs3kAdSLr .wrapper {
    padding-right: 16px;
    padding-left: 16px;
  }
  .cid-vfs3kAdSLr .card-wrapper {
    position: relative;
    padding: 60px;
  }
  .cid-vfs3kAdSLr .custom-block_left .section-btn {
    bottom: 35px;
    right: 35px;
  }
}
@media (max-width: 575px) {
  .cid-vfs3kAdSLr .custom-block_left {
    padding: 0;
  }
  .cid-vfs3kAdSLr .custom-block_left .section-btn {
    position: sticky;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
  }
  .cid-vfs3kAdSLr .custom-block_left .section-btn .btn-custom {
    width: 80px;
    height: 80px;
  }
  .cid-vfs3kAdSLr .card-title-box {
    margin-bottom: 16px;
  }
  .cid-vfs3kAdSLr .mbr-text {
    max-width: 100%;
    margin-bottom: 16px !important;
  }
}
.cid-vfs3kAdSLr .card-title {
  color: #ffe885;
  text-align: left;
}
.cid-vfs3kAufSN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/inred-imagen-original-2000x1288.png");
}
.cid-vfs3kAufSN .mbr-media {
  position: relative;
}
.cid-vfs3kAufSN .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-vfs3kAufSN .box {
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .cid-vfs3kAufSN .box {
    min-height: 300px;
  }
}
.cid-vfs3kAufSN .icon-wrap {
  position: relative;
  margin: auto;
  width: 100px;
  height: 100px;
  background: #d11535;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vfs3kAufSN .icon-wrap a {
  height: 20px;
}
.cid-vfs3kAufSN .icon-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #d11535;
  opacity: 0.8;
  border-radius: 50%;
  animation-duration: 1s;
  animation-name: icons;
  animation-iteration-count: infinite;
  z-index: 1;
}
@keyframes icons {
  from {
    width: 100px;
    height: 100px;
    opacity: 0.8;
  }
  to {
    width: 160px;
    height: 160px;
    opacity: 0;
  }
}
.cid-vfs3kAufSN .mbr-media span {
  font-size: 1.5rem;
  transition: all 0.2s;
  z-index: 2;
  padding-left: 4px;
  position: relative;
  color: #ffffff;
}
.cid-vfs3kAufSN .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-vfs3kAufSN .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-vfs3kAufSN .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-vfs3kAufSN .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vfs3kAufSN .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vfs3kAufSN .mbr-section-title {
  color: #ffffff;
}
.cid-vfs3kATqFB {
  background-image: url("../../../assets/images/intro-inredpro-ok-final-ok-ok.gif");
}
.cid-vfs3kATqFB .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-vfs3kATqFB .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-vfs3kATqFB .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-vfs3kATqFB .label-text {
    text-align: center !important;
  }
}
.cid-vfs3kATqFB .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vfs3kATqFB .mbr-section-title {
    text-align: center !important;
  }
}
.cid-vfs3kATqFB .mbr-section-title,
.cid-vfs3kATqFB .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-vfs3kB8Nlm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-vftszagPb0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vftszagPb0 nav.navbar {
  position: fixed;
}
.cid-vftszagPb0 .container,
.cid-vftszagPb0 .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vftszagPb0 .container,
  .cid-vftszagPb0 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-vftszagPb0 .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-vftszagPb0 .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #fc6004 !important;
}
.cid-vftszagPb0 .dropdown-item:hover,
.cid-vftszagPb0 .dropdown-item:focus {
  color: #fc6004 !important;
}
.cid-vftszagPb0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vftszagPb0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vftszagPb0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vftszagPb0 .nav-link {
  position: relative;
}
.cid-vftszagPb0 .nav-link:hover {
  color: #ffffff !important;
}
.cid-vftszagPb0 .nav-link:hover:before {
  opacity: 1;
}
.cid-vftszagPb0 .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-vftszagPb0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vftszagPb0 .container {
  display: flex;
  margin: auto;
}
.cid-vftszagPb0 .iconfont-wrapper {
  color: #040402 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vftszagPb0 .nav-item:focus,
.cid-vftszagPb0 .nav-link:focus {
  outline: none;
}
.cid-vftszagPb0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vftszagPb0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vftszagPb0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vftszagPb0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vftszagPb0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vftszagPb0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vftszagPb0 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #fc6004;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fc6004;
}
.cid-vftszagPb0 .navbar.opened {
  transition: all 0.3s;
}
.cid-vftszagPb0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vftszagPb0 .navbar .navbar-logo img {
  width: auto;
}
.cid-vftszagPb0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vftszagPb0 .navbar.collapsed {
  justify-content: center;
}
.cid-vftszagPb0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vftszagPb0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vftszagPb0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vftszagPb0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vftszagPb0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vftszagPb0 .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-vftszagPb0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vftszagPb0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vftszagPb0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vftszagPb0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vftszagPb0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vftszagPb0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vftszagPb0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vftszagPb0 .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-vftszagPb0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vftszagPb0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vftszagPb0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vftszagPb0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vftszagPb0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vftszagPb0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vftszagPb0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-vftszagPb0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vftszagPb0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vftszagPb0 .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-vftszagPb0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vftszagPb0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vftszagPb0 .dropdown-item.active,
.cid-vftszagPb0 .dropdown-item:active {
  background-color: transparent;
}
.cid-vftszagPb0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vftszagPb0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vftszagPb0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vftszagPb0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fc6004;
}
.cid-vftszagPb0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vftszagPb0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vftszagPb0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vftszagPb0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vftszagPb0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-vftszagPb0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vftszagPb0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vftszagPb0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vftszagPb0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vftszagPb0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vftszagPb0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vftszagPb0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vftszagPb0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vftszagPb0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vftszagPb0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vftszagPb0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vftszagPb0 .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-vftszagPb0 .navbar {
    height: 70px;
  }
  .cid-vftszagPb0 .navbar.opened {
    height: auto;
  }
  .cid-vftszagPb0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-vftszagPb0 .icons-menu {
    padding-right: 0;
  }
  .cid-vftszagPb0 .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-vftszaDlAW {
  padding-top: 105px;
  padding-bottom: 150px;
  background-color: #ffffff;
}
.cid-vftszaDlAW H1 {
  color: #fc6004;
}
.cid-vftszaDlAW h1 {
  background: linear-gradient(to left, #fc6004, currentColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-vftszaDlAW img {
  width: 100%;
}
.cid-vftszaDlAW .mbr-text,
.cid-vftszaDlAW .mbr-section-btn {
  color: #111111;
}
.cid-vftszaUJHk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-vftszaUJHk .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #ffe161;
  margin-bottom: 1rem;
}
.cid-vftszaUJHk .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-vftszaUJHk .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-vftszaUJHk .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-vftszaUJHk .card-wrapper:hover {
  background: transparent;
}
.cid-vftszaUJHk .card-title,
.cid-vftszaUJHk .card-box {
  color: #ffffff;
}
.cid-vftszaUJHk .main-title,
.cid-vftszaUJHk .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-vftszaUJHk .mbr-fallback-image.disabled {
  display: none;
}
.cid-vftszaUJHk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vftszbd7Rn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-vftszbd7Rn .row {
  border-top: 1px solid #FFFFFF;
  min-height: 600px;
  margin-top: -1px;
}
.cid-vftszbd7Rn .mbr-text {
  color: #FFFFFF;
  max-width: 330px;
  text-align: left;
}
.cid-vftszbd7Rn .color-text {
  color: #d11535;
}
.cid-vftszbd7Rn .custom-block {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  padding-right: 0;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-vftszbd7Rn .card-wrapper {
  position: relative;
  padding: 3rem 24px;
}
.cid-vftszbd7Rn .buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -12px;
}
.cid-vftszbd7Rn .buttons-container .item-button {
  margin: 0;
}
.cid-vftszbd7Rn .buttons-container .btn {
  margin: 0 0 16px 12px;
}
.cid-vftszbd7Rn .buttons-container .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-vftszbd7Rn .buttons-container .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
@media (min-width: 768px) {
  .cid-vftszbd7Rn .wrapper {
    margin-right: -32px;
    margin-left: -32px;
    padding-right: 12px;
    padding-left: 12px;
  }
  .cid-vftszbd7Rn .custom-block_left {
    border-right: 1px solid #ffffff;
  }
}
.cid-vftszbd7Rn .custom-block_left {
  padding: 0;
}
.cid-vftszbd7Rn .custom-block_left .section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 3rem;
  right: 16px;
  margin: 0;
  box-shadow: 0 0 130px 1px #fc6004;
  transform: rotate(45deg);
  border-radius: 50%;
  width: 120px;
  height: 120px;
}
.cid-vftszbd7Rn .custom-block_left .section-btn .btn-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  background: #fc6004;
  border-radius: 50%;
  transition: 0.2s;
}
.cid-vftszbd7Rn .custom-block_left .section-btn .btn-custom:hover {
  background: #a73f02;
}
.cid-vftszbd7Rn .custom-block_left .section-btn .btn-custom span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.cid-vftszbd7Rn .card-box {
  max-width: 565px;
}
.cid-vftszbd7Rn .image-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  padding: 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .cid-vftszbd7Rn .image-wrapper {
    order: -1;
    border-bottom: none;
  }
}
.cid-vftszbd7Rn .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-vftszbd7Rn .wrapper {
    padding-right: 16px;
    padding-left: 16px;
  }
  .cid-vftszbd7Rn .card-wrapper {
    position: relative;
    padding: 60px;
  }
  .cid-vftszbd7Rn .custom-block_left .section-btn {
    bottom: 35px;
    right: 35px;
  }
}
@media (max-width: 575px) {
  .cid-vftszbd7Rn .custom-block_left {
    padding: 0;
  }
  .cid-vftszbd7Rn .custom-block_left .section-btn {
    position: sticky;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
  }
  .cid-vftszbd7Rn .custom-block_left .section-btn .btn-custom {
    width: 80px;
    height: 80px;
  }
  .cid-vftszbd7Rn .card-title-box {
    margin-bottom: 16px;
  }
  .cid-vftszbd7Rn .mbr-text {
    max-width: 100%;
    margin-bottom: 16px !important;
  }
}
.cid-vftszbd7Rn .card-title {
  color: #ffe885;
  text-align: left;
}
.cid-vftszbt0as {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/inred-imagen-original-2000x1288.png");
}
.cid-vftszbt0as .mbr-media {
  position: relative;
}
.cid-vftszbt0as .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-vftszbt0as .box {
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .cid-vftszbt0as .box {
    min-height: 300px;
  }
}
.cid-vftszbt0as .icon-wrap {
  position: relative;
  margin: auto;
  width: 100px;
  height: 100px;
  background: #d11535;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vftszbt0as .icon-wrap a {
  height: 20px;
}
.cid-vftszbt0as .icon-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #d11535;
  opacity: 0.8;
  border-radius: 50%;
  animation-duration: 1s;
  animation-name: icons;
  animation-iteration-count: infinite;
  z-index: 1;
}
@keyframes icons {
  from {
    width: 100px;
    height: 100px;
    opacity: 0.8;
  }
  to {
    width: 160px;
    height: 160px;
    opacity: 0;
  }
}
.cid-vftszbt0as .mbr-media span {
  font-size: 1.5rem;
  transition: all 0.2s;
  z-index: 2;
  padding-left: 4px;
  position: relative;
  color: #ffffff;
}
.cid-vftszbt0as .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-vftszbt0as .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-vftszbt0as .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-vftszbt0as .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vftszbt0as .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vftszbt0as .mbr-section-title {
  color: #ffffff;
}
.cid-vftszc1SQE {
  background-image: url("../../../assets/images/intro-inredpro-ok-final-ok-ok.gif");
}
.cid-vftszc1SQE .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-vftszc1SQE .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-vftszc1SQE .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-vftszc1SQE .label-text {
    text-align: center !important;
  }
}
.cid-vftszc1SQE .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vftszc1SQE .mbr-section-title {
    text-align: center !important;
  }
}
.cid-vftszc1SQE .mbr-section-title,
.cid-vftszc1SQE .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-vftszcgIhk {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-taFe5R4xRL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-taFe5R4xRL nav.navbar {
  position: fixed;
}
.cid-taFe5R4xRL .container,
.cid-taFe5R4xRL .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-taFe5R4xRL .container,
  .cid-taFe5R4xRL .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-taFe5R4xRL .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-taFe5R4xRL .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #fc6004 !important;
}
.cid-taFe5R4xRL .dropdown-item:hover,
.cid-taFe5R4xRL .dropdown-item:focus {
  color: #fc6004 !important;
}
.cid-taFe5R4xRL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-taFe5R4xRL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-taFe5R4xRL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-taFe5R4xRL .nav-link {
  position: relative;
}
.cid-taFe5R4xRL .nav-link:hover {
  color: #ffffff !important;
}
.cid-taFe5R4xRL .nav-link:hover:before {
  opacity: 1;
}
.cid-taFe5R4xRL .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-taFe5R4xRL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-taFe5R4xRL .container {
  display: flex;
  margin: auto;
}
.cid-taFe5R4xRL .iconfont-wrapper {
  color: #040402 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-taFe5R4xRL .nav-item:focus,
.cid-taFe5R4xRL .nav-link:focus {
  outline: none;
}
.cid-taFe5R4xRL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-taFe5R4xRL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-taFe5R4xRL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-taFe5R4xRL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-taFe5R4xRL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-taFe5R4xRL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-taFe5R4xRL .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #fc6004;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fc6004;
}
.cid-taFe5R4xRL .navbar.opened {
  transition: all 0.3s;
}
.cid-taFe5R4xRL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-taFe5R4xRL .navbar .navbar-logo img {
  width: auto;
}
.cid-taFe5R4xRL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-taFe5R4xRL .navbar.collapsed {
  justify-content: center;
}
.cid-taFe5R4xRL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-taFe5R4xRL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-taFe5R4xRL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-taFe5R4xRL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-taFe5R4xRL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-taFe5R4xRL .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-taFe5R4xRL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-taFe5R4xRL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-taFe5R4xRL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-taFe5R4xRL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-taFe5R4xRL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-taFe5R4xRL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-taFe5R4xRL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-taFe5R4xRL .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-taFe5R4xRL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-taFe5R4xRL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-taFe5R4xRL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-taFe5R4xRL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-taFe5R4xRL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-taFe5R4xRL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-taFe5R4xRL .navbar.navbar-short {
  min-height: 60px;
}
.cid-taFe5R4xRL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-taFe5R4xRL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-taFe5R4xRL .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-taFe5R4xRL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-taFe5R4xRL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-taFe5R4xRL .dropdown-item.active,
.cid-taFe5R4xRL .dropdown-item:active {
  background-color: transparent;
}
.cid-taFe5R4xRL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-taFe5R4xRL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-taFe5R4xRL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-taFe5R4xRL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fc6004;
}
.cid-taFe5R4xRL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-taFe5R4xRL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-taFe5R4xRL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-taFe5R4xRL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-taFe5R4xRL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-taFe5R4xRL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-taFe5R4xRL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-taFe5R4xRL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-taFe5R4xRL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-taFe5R4xRL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-taFe5R4xRL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-taFe5R4xRL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-taFe5R4xRL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-taFe5R4xRL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-taFe5R4xRL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-taFe5R4xRL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-taFe5R4xRL .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-taFe5R4xRL .navbar {
    height: 70px;
  }
  .cid-taFe5R4xRL .navbar.opened {
    height: auto;
  }
  .cid-taFe5R4xRL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-taFe5R4xRL .icons-menu {
    padding-right: 0;
  }
  .cid-taFe5R4xRL .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-taFe5Sc1ep {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-taFe5Sc1ep .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #ffe161;
  margin-bottom: 1rem;
}
.cid-taFe5Sc1ep .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-taFe5Sc1ep .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-taFe5Sc1ep .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-taFe5Sc1ep .card-wrapper:hover {
  background: transparent;
}
.cid-taFe5Sc1ep .card-title,
.cid-taFe5Sc1ep .card-box {
  color: #ffffff;
}
.cid-taFe5Sc1ep .main-title,
.cid-taFe5Sc1ep .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-taFe5Sc1ep .mbr-fallback-image.disabled {
  display: none;
}
.cid-taFe5Sc1ep .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-taFe5SASun {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-taFe5SASun .row {
  border-top: 1px solid #FFFFFF;
  min-height: 600px;
  margin-top: -1px;
}
.cid-taFe5SASun .mbr-text {
  color: #FFFFFF;
  max-width: 330px;
  text-align: left;
}
.cid-taFe5SASun .color-text {
  color: #fef1e5;
}
.cid-taFe5SASun .custom-block {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  padding-right: 0;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-taFe5SASun .card-wrapper {
  position: relative;
  padding: 3rem 24px;
}
.cid-taFe5SASun .buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -12px;
}
.cid-taFe5SASun .buttons-container .item-button {
  margin: 0;
}
.cid-taFe5SASun .buttons-container .btn {
  margin: 0 0 16px 12px;
}
.cid-taFe5SASun .buttons-container .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-taFe5SASun .buttons-container .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
@media (min-width: 768px) {
  .cid-taFe5SASun .wrapper {
    margin-right: -32px;
    margin-left: -32px;
    padding-right: 12px;
    padding-left: 12px;
  }
  .cid-taFe5SASun .custom-block_left {
    border-right: 1px solid #ffffff;
  }
}
.cid-taFe5SASun .custom-block_left {
  padding: 0;
}
.cid-taFe5SASun .custom-block_left .section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 3rem;
  right: 16px;
  margin: 0;
  box-shadow: 0 0 130px 1px #fc6004;
  transform: rotate(45deg);
  border-radius: 50%;
  width: 120px;
  height: 120px;
}
.cid-taFe5SASun .custom-block_left .section-btn .btn-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  background: #fc6004;
  border-radius: 50%;
  transition: 0.2s;
}
.cid-taFe5SASun .custom-block_left .section-btn .btn-custom:hover {
  background: #a73f02;
}
.cid-taFe5SASun .custom-block_left .section-btn .btn-custom span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.cid-taFe5SASun .card-box {
  max-width: 565px;
}
.cid-taFe5SASun .image-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  padding: 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .cid-taFe5SASun .image-wrapper {
    order: -1;
    border-bottom: none;
  }
}
.cid-taFe5SASun .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-taFe5SASun .wrapper {
    padding-right: 16px;
    padding-left: 16px;
  }
  .cid-taFe5SASun .card-wrapper {
    position: relative;
    padding: 60px;
  }
  .cid-taFe5SASun .custom-block_left .section-btn {
    bottom: 35px;
    right: 35px;
  }
}
@media (max-width: 575px) {
  .cid-taFe5SASun .custom-block_left {
    padding: 0;
  }
  .cid-taFe5SASun .custom-block_left .section-btn {
    position: sticky;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
  }
  .cid-taFe5SASun .custom-block_left .section-btn .btn-custom {
    width: 80px;
    height: 80px;
  }
  .cid-taFe5SASun .card-title-box {
    margin-bottom: 16px;
  }
  .cid-taFe5SASun .mbr-text {
    max-width: 100%;
    margin-bottom: 16px !important;
  }
}
.cid-taFe5SASun .card-title {
  color: #fc6004;
  text-align: left;
}
.cid-taGCU18qUY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #222222;
}
.cid-taGCU18qUY .mbr-text {
  color: #999999;
  text-align: left;
}
.cid-taGCU18qUY .mbr-section-subtitle {
  color: #fc6004;
  text-align: left;
}
.cid-taGrOIkVZu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #28282c;
}
@media (max-width: 767px) {
  .cid-taGrOIkVZu .card-wrapper {
    margin: 0;
    padding: 0;
  }
}
.cid-taGrOIkVZu .mbr-section-title,
.cid-taGrOIkVZu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-taGrOIkVZu .card-title,
.cid-taGrOIkVZu .card-box {
  color: #e2090d;
}
.cid-taGrOIkVZu .mbr-text {
  color: #9b9ba5;
}
@media (max-width: 600px) {
  .cid-taGrOIkVZu .mbr-section-title {
    letter-spacing: -1px;
  }
}
@media (min-width: 768px) {
  .cid-taGrOIkVZu .border-right {
    border-right: 2px solid rgba(255, 255, 255, 0.25);
  }
  .cid-taGrOIkVZu .top {
    border-top: 2px solid rgba(255, 255, 255, 0.25);
  }
  .cid-taGrOIkVZu .margin-left {
    margin-left: 5rem;
    padding: 3rem 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .cid-taGrOIkVZu .border-right {
    padding: 3rem 3rem 3rem 0;
  }
}
.cid-taGxg9JWss {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #28282c;
}
@media (max-width: 767px) {
  .cid-taGxg9JWss .card-wrapper {
    margin: 0;
    padding: 0;
  }
}
.cid-taGxg9JWss .mbr-section-title,
.cid-taGxg9JWss .mbr-section-subtitle {
  color: #ffffff;
}
.cid-taGxg9JWss .card-title,
.cid-taGxg9JWss .card-box {
  color: #e2090d;
}
.cid-taGxg9JWss .mbr-text {
  color: #9b9ba5;
}
@media (max-width: 600px) {
  .cid-taGxg9JWss .mbr-section-title {
    letter-spacing: -1px;
  }
}
@media (min-width: 768px) {
  .cid-taGxg9JWss .border-right {
    border-right: 2px solid rgba(255, 255, 255, 0.25);
  }
  .cid-taGxg9JWss .top {
    border-top: 2px solid rgba(255, 255, 255, 0.25);
  }
  .cid-taGxg9JWss .margin-left {
    margin-left: 5rem;
    padding: 3rem 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .cid-taGxg9JWss .border-right {
    padding: 3rem 3rem 3rem 0;
  }
}
.cid-taFe5SVKQb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/inred.......-1920x1080.jpg");
}
.cid-taFe5SVKQb .mbr-media {
  position: relative;
}
.cid-taFe5SVKQb .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-taFe5SVKQb .box {
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .cid-taFe5SVKQb .box {
    min-height: 300px;
  }
}
.cid-taFe5SVKQb .icon-wrap {
  position: relative;
  margin: auto;
  width: 100px;
  height: 100px;
  background: #d11535;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-taFe5SVKQb .icon-wrap a {
  height: 20px;
}
.cid-taFe5SVKQb .icon-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #d11535;
  opacity: 0.8;
  border-radius: 50%;
  animation-duration: 1s;
  animation-name: icons;
  animation-iteration-count: infinite;
  z-index: 1;
}
@keyframes icons {
  from {
    width: 100px;
    height: 100px;
    opacity: 0.8;
  }
  to {
    width: 160px;
    height: 160px;
    opacity: 0;
  }
}
.cid-taFe5SVKQb .mbr-media span {
  font-size: 1.5rem;
  transition: all 0.2s;
  z-index: 2;
  padding-left: 4px;
  position: relative;
  color: #ffffff;
}
.cid-taFe5SVKQb .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-taFe5SVKQb .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-taFe5SVKQb .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-taFe5SVKQb .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-taFe5SVKQb .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-taFe5SVKQb .mbr-section-title {
  color: #ffffff;
}
.cid-taFe5Tsbhh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-taynYcwfXd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-taynYcwfXd nav.navbar {
  position: fixed;
}
.cid-taynYcwfXd .container,
.cid-taynYcwfXd .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-taynYcwfXd .container,
  .cid-taynYcwfXd .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-taynYcwfXd .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-taynYcwfXd .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #fc6004 !important;
}
.cid-taynYcwfXd .dropdown-item:hover,
.cid-taynYcwfXd .dropdown-item:focus {
  color: #fc6004 !important;
}
.cid-taynYcwfXd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-taynYcwfXd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-taynYcwfXd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-taynYcwfXd .nav-link {
  position: relative;
}
.cid-taynYcwfXd .nav-link:hover {
  color: #ffffff !important;
}
.cid-taynYcwfXd .nav-link:hover:before {
  opacity: 1;
}
.cid-taynYcwfXd .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-taynYcwfXd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-taynYcwfXd .container {
  display: flex;
  margin: auto;
}
.cid-taynYcwfXd .iconfont-wrapper {
  color: #040402 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-taynYcwfXd .nav-item:focus,
.cid-taynYcwfXd .nav-link:focus {
  outline: none;
}
.cid-taynYcwfXd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-taynYcwfXd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-taynYcwfXd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-taynYcwfXd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-taynYcwfXd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-taynYcwfXd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-taynYcwfXd .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #fc6004;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fc6004;
}
.cid-taynYcwfXd .navbar.opened {
  transition: all 0.3s;
}
.cid-taynYcwfXd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-taynYcwfXd .navbar .navbar-logo img {
  width: auto;
}
.cid-taynYcwfXd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-taynYcwfXd .navbar.collapsed {
  justify-content: center;
}
.cid-taynYcwfXd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-taynYcwfXd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-taynYcwfXd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-taynYcwfXd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-taynYcwfXd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-taynYcwfXd .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-taynYcwfXd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-taynYcwfXd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-taynYcwfXd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-taynYcwfXd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-taynYcwfXd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-taynYcwfXd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-taynYcwfXd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-taynYcwfXd .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-taynYcwfXd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-taynYcwfXd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-taynYcwfXd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-taynYcwfXd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-taynYcwfXd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-taynYcwfXd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-taynYcwfXd .navbar.navbar-short {
  min-height: 60px;
}
.cid-taynYcwfXd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-taynYcwfXd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-taynYcwfXd .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-taynYcwfXd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-taynYcwfXd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-taynYcwfXd .dropdown-item.active,
.cid-taynYcwfXd .dropdown-item:active {
  background-color: transparent;
}
.cid-taynYcwfXd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-taynYcwfXd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-taynYcwfXd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-taynYcwfXd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fc6004;
}
.cid-taynYcwfXd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-taynYcwfXd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-taynYcwfXd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-taynYcwfXd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-taynYcwfXd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-taynYcwfXd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-taynYcwfXd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-taynYcwfXd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-taynYcwfXd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-taynYcwfXd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-taynYcwfXd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-taynYcwfXd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-taynYcwfXd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-taynYcwfXd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-taynYcwfXd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-taynYcwfXd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-taynYcwfXd .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-taynYcwfXd .navbar {
    height: 70px;
  }
  .cid-taynYcwfXd .navbar.opened {
    height: auto;
  }
  .cid-taynYcwfXd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-taynYcwfXd .icons-menu {
    padding-right: 0;
  }
  .cid-taynYcwfXd .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-taynYky6g0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-taynYky6g0 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-taynYky6g0 .row {
    min-height: 620px;
  }
}
.cid-taynYky6g0 .image-wrapper {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-taynYky6g0 .image-wrapper img {
  position: relative;
  z-index: 2;
  width: 90%;
}
.cid-taynYky6g0 .col-text {
  position: relative;
  order: 5;
}
.cid-taynYky6g0 .col-text .radial-svg {
  display: none;
}
@media (max-width: 991px) {
  .cid-taynYky6g0 .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-taynYky6g0 .col-text {
    padding: 30px;
  }
}
.cid-taynYky6g0 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.cid-taynYky6g0 .label-text {
  width: 100%;
  color: #e6c63b;
  margin-bottom: 16px;
}
.cid-taynYky6g0 .mbr-section-title {
  margin-bottom: 1rem;
  width: 100%;
  color: #222222;
}
.cid-taynYky6g0 .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 1rem;
}
.cid-taynYky6g0 .mbr-section-btn {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.cid-taynYky6g0 .mbr-section-btn .btn {
  width: 370px;
  height: 56px;
}
.cid-taynYky6g0 .carousel {
  margin-bottom: 80px;
}
.cid-taynYky6g0 .carousel,
.cid-taynYky6g0 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-taynYky6g0 .item-wrapper {
  width: 100%;
}
.cid-taynYky6g0 .carousel-caption {
  position: static;
  text-align: left;
  margin-top: 32px;
  padding: 0;
}
.cid-taynYky6g0 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 0;
}
.cid-taynYky6g0 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-taynYky6g0 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
@media (max-width: 767px) {
  .cid-taynYky6g0 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-taynYky6g0 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-taynYky6g0 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-taynYky6g0 .carousel-control {
  top: 50%;
  transform: translateY(-50%);
  width: 30%;
  height: 40%;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 0;
}
.cid-taynYky6g0 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-taynYky6g0 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-taynYky6g0 .carousel-control {
    top: auto;
    bottom: 50%;
    transform: translateY(50%);
  }
}
.cid-taynYky6g0 .carousel-indicators {
  position: absolute;
  bottom: -80px;
  margin-top: 40px;
  margin-bottom: 20px !important;
  margin-left: 0!important;
  justify-content: flex-start;
}
.cid-taynYky6g0 .carousel-indicators li {
  height: 6px;
  width: 6px;
  margin: 3px 10px;
  background-color: transparent;
  border: 2px solid #111111;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-taynYky6g0 .carousel-indicators li.active,
.cid-taynYky6g0 .carousel-indicators li:hover {
  background-color: #fc6004;
  border: 2px solid #fc6004;
}
.cid-taynYky6g0 .carousel-indicators li::after,
.cid-taynYky6g0 .carousel-indicators li::before {
  content: none;
}
.cid-taynYky6g0 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-taynYky6g0 .carousel-indicators {
    display: none !important;
  }
}
.cid-taynYky6g0 .mbr-section-subtitle {
  color: #222222;
  margin-bottom: 0;
}
.cid-taynYky6g0 .name-text {
  color: #000000;
}
.cid-taynYky6g0 .prof-text {
  color: #000000;
}
.cid-taynYky6g0 .item-menu-overlay {
  display: none !important;
}
.cid-taynYky6g0 .user-container {
  display: flex;
  margin-top: 25px;
}
.cid-taynYky6g0 .user-wrap {
  display: flex;
  align-items: center;
}
.cid-taynYky6g0 .avatar-img {
  position: relative;
  margin-right: 20px;
}
.cid-taynYky6g0 .avatar-img img {
  width: 50px;
  height: 50px;
  max-width: 50px;
  max-height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.cid-taynYky6g0 .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tb7RuvMUc6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-tb7RuvMUc6 .mbr-overlay {
  background-color: #040402;
  opacity: 0.6;
}
.cid-tb7RuvMUc6 form .mbr-section-btn {
  text-align: left;
  width: auto;
}
.cid-tb7RuvMUc6 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tb7RuvMUc6 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tb7RuvMUc6 .form-group {
  margin-bottom: 20px;
}
.cid-tb7RuvMUc6 form .form-control {
  border-color: #FFFFFF !important;
  border-radius: 0;
  webkit-box-shadow: none;
  box-shadow: none;
  font-size: 1rem;
  color: #FFFFFF;
  background: transparent;
  font-weight: bold;
}
.cid-tb7RuvMUc6 form .form-control:focus {
  border-color: #595959 !important;
}
.cid-tb7RuvMUc6 .mbr-section-title {
  color: #e6c63b;
}
.cid-tb7RuvMUc6 .container-fluid {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 768px) {
  .cid-tb7RuvMUc6 .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-tb7RuvMUc6 .form-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 32px;
  -ms-grid-columns: 300px 1fr;
  grid-template-columns: 300px 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  max-width: 1180px;
  padding-right: 60px;
  padding-left: 60px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tb7RuvMUc6 .form-container {
    grid-template-columns: 100%;
  }
}
@media (max-width: 575px) {
  .cid-tb7RuvMUc6 .form-container {
    padding-right: 24px;
    padding-left: 24px;
  }
}
.cid-tb7RuvMUc6 form .row {
  margin: 0;
}
.cid-tb7RuvMUc6 .dragArea {
  padding: 40px 30px;
  border: 1px solid #595959;
}
.cid-tb7RuvMUc6 .form-control,
.cid-tb7RuvMUc6 form .btn {
  min-height: 64px;
}
.cid-tb7RuvMUc6 .form-textarea {
  min-height: 104px;
  padding: 31px 24px;
}
.cid-tb7NHzGdBf {
  padding-top: 60px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-tb7NHzGdBf img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 767px) {
  .cid-tb7NHzGdBf .container-fluid {
    padding: 0 2rem;
  }
}
.cid-tb7NHzGdBf .card-wrapper {
  background: #191919;
  padding: 3rem;
}
.cid-tb7NHzGdBf .card-wrapper:hover {
  background: linear-gradient(to left, #fc6004, #fc6004);
}
.cid-tb7NHzGdBf .text-wrap {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
}
.cid-tb7NHzGdBf .icon-wrapper {
  padding: 0 0.6rem;
}
.cid-tb7NHzGdBf .card-box {
  padding-top: 2rem;
}
.cid-tb7NHzGdBf .link-icon {
  font-size: 1.5rem;
  background: linear-gradient(to left, #fc6004, #fc6004);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tb7NHzGdBf .card-title {
  color: #999999;
}
.cid-tb7NHzGdBf .mbr-subtitle {
  color: #ffffff;
}
.cid-tb7NHzGdBf .main-title {
  color: #ffffff;
}
.cid-tb7NHzGdBf .main-subtitle {
  color: #999999;
}
.cid-tb7NHzGdBf .card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tb7NHzGdBf .card:hover {
  transform: translateY(-10px);
}
.cid-tb7NHzGdBf .card:hover .link-icon {
  color: #ffffff;
  -webkit-background-clip: transparent;
  -webkit-text-fill-color: unset;
}
.cid-tb7NHzGdBf .card:hover .card-title,
.cid-tb7NHzGdBf .card:hover .mbr-subtitle {
  color: #ffffff !important;
}
@media (min-width: 1600px) {
  .cid-tb7NHzGdBf .card {
    max-width: 20%;
  }
}
@media (max-width: 1600px) {
  .cid-tb7NHzGdBf .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tb8a22z0Xr {
  padding-top: 30px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-tb8a22z0Xr img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 767px) {
  .cid-tb8a22z0Xr .container-fluid {
    padding: 0 2rem;
  }
}
.cid-tb8a22z0Xr .card-wrapper {
  background: #191919;
  padding: 3rem;
}
.cid-tb8a22z0Xr .card-wrapper:hover {
  background: linear-gradient(to left, #fc6004, #fc6004);
}
.cid-tb8a22z0Xr .text-wrap {
  display: flex;
  justify-content: center;
  padding-top: 2rem;
}
.cid-tb8a22z0Xr .icon-wrapper {
  padding: 0 0.6rem;
}
.cid-tb8a22z0Xr .card-box {
  padding-top: 2rem;
}
.cid-tb8a22z0Xr .link-icon {
  font-size: 1.5rem;
  background: linear-gradient(to left, #fc6004, #fc6004);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tb8a22z0Xr .card-title {
  color: #999999;
}
.cid-tb8a22z0Xr .mbr-subtitle {
  color: #ffffff;
}
.cid-tb8a22z0Xr .main-title {
  color: #ffffff;
}
.cid-tb8a22z0Xr .main-subtitle {
  color: #999999;
}
.cid-tb8a22z0Xr .card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tb8a22z0Xr .card:hover {
  transform: translateY(-10px);
}
.cid-tb8a22z0Xr .card:hover .link-icon {
  color: #ffffff;
  -webkit-background-clip: transparent;
  -webkit-text-fill-color: unset;
}
.cid-tb8a22z0Xr .card:hover .card-title,
.cid-tb8a22z0Xr .card:hover .mbr-subtitle {
  color: #ffffff !important;
}
@media (min-width: 1600px) {
  .cid-tb8a22z0Xr .card {
    max-width: 20%;
  }
}
@media (max-width: 1600px) {
  .cid-tb8a22z0Xr .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tb7NBfmKxA {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #111111;
}
.cid-tb7NBfmKxA img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}
.cid-tb7NBfmKxA .container-fluid {
  padding: 0;
}
.cid-tb7NBfmKxA .card-wrapper {
  background: #191919;
  padding: 3rem;
}
.cid-tb7NBfmKxA .card-wrapper:hover {
  background: linear-gradient(to left, #fc6004, #fc6004);
}
.cid-tb7NBfmKxA .text-wrap {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
}
.cid-tb7NBfmKxA .icon-wrapper {
  padding: 0 0.6rem;
}
.cid-tb7NBfmKxA .card-box {
  padding-top: 2rem;
}
.cid-tb7NBfmKxA .link-icon {
  font-size: 1.5rem;
  background: linear-gradient(to left, #fc6004, #fc6004);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tb7NBfmKxA .card-title {
  color: #999999;
}
.cid-tb7NBfmKxA .mbr-subtitle {
  color: #ffffff;
}
.cid-tb7NBfmKxA .main-title {
  color: #ffffff;
}
.cid-tb7NBfmKxA .main-subtitle {
  color: #999999;
}
.cid-tb7NBfmKxA .card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tb7NBfmKxA .card:hover {
  transform: translateY(-10px);
}
.cid-tb7NBfmKxA .card:hover .link-icon {
  color: #ffffff;
  -webkit-background-clip: transparent;
  -webkit-text-fill-color: unset;
}
.cid-tb7NBfmKxA .card:hover .card-title,
.cid-tb7NBfmKxA .card:hover .mbr-subtitle {
  color: #ffffff !important;
}
@media (max-width: 1600px) {
  .cid-tb7NBfmKxA .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tb9i0oM0P3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-tb9i0oM0P3 .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #ffe161;
  margin-bottom: 1rem;
}
.cid-tb9i0oM0P3 .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tb9i0oM0P3 .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tb9i0oM0P3 .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-tb9i0oM0P3 .card-wrapper:hover {
  background: transparent;
}
.cid-tb9i0oM0P3 .card-title,
.cid-tb9i0oM0P3 .card-box {
  color: #ffffff;
}
.cid-tb9i0oM0P3 .main-title,
.cid-tb9i0oM0P3 .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-tb9i0oM0P3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tb9i0oM0P3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-taynYuUdL1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-taynTFHVIl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-taynTFHVIl nav.navbar {
  position: fixed;
}
.cid-taynTFHVIl .container,
.cid-taynTFHVIl .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-taynTFHVIl .container,
  .cid-taynTFHVIl .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-taynTFHVIl .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-taynTFHVIl .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #fc6004 !important;
}
.cid-taynTFHVIl .dropdown-item:hover,
.cid-taynTFHVIl .dropdown-item:focus {
  color: #fc6004 !important;
}
.cid-taynTFHVIl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-taynTFHVIl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-taynTFHVIl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-taynTFHVIl .nav-link {
  position: relative;
}
.cid-taynTFHVIl .nav-link:hover {
  color: #ffffff !important;
}
.cid-taynTFHVIl .nav-link:hover:before {
  opacity: 1;
}
.cid-taynTFHVIl .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-taynTFHVIl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-taynTFHVIl .container {
  display: flex;
  margin: auto;
}
.cid-taynTFHVIl .iconfont-wrapper {
  color: #040402 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-taynTFHVIl .nav-item:focus,
.cid-taynTFHVIl .nav-link:focus {
  outline: none;
}
.cid-taynTFHVIl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-taynTFHVIl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-taynTFHVIl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-taynTFHVIl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-taynTFHVIl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-taynTFHVIl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-taynTFHVIl .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #fc6004;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fc6004;
}
.cid-taynTFHVIl .navbar.opened {
  transition: all 0.3s;
}
.cid-taynTFHVIl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-taynTFHVIl .navbar .navbar-logo img {
  width: auto;
}
.cid-taynTFHVIl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-taynTFHVIl .navbar.collapsed {
  justify-content: center;
}
.cid-taynTFHVIl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-taynTFHVIl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-taynTFHVIl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-taynTFHVIl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-taynTFHVIl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-taynTFHVIl .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-taynTFHVIl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-taynTFHVIl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-taynTFHVIl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-taynTFHVIl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-taynTFHVIl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-taynTFHVIl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-taynTFHVIl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-taynTFHVIl .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-taynTFHVIl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-taynTFHVIl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-taynTFHVIl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-taynTFHVIl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-taynTFHVIl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-taynTFHVIl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-taynTFHVIl .navbar.navbar-short {
  min-height: 60px;
}
.cid-taynTFHVIl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-taynTFHVIl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-taynTFHVIl .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-taynTFHVIl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-taynTFHVIl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-taynTFHVIl .dropdown-item.active,
.cid-taynTFHVIl .dropdown-item:active {
  background-color: transparent;
}
.cid-taynTFHVIl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-taynTFHVIl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-taynTFHVIl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-taynTFHVIl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fc6004;
}
.cid-taynTFHVIl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-taynTFHVIl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-taynTFHVIl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-taynTFHVIl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-taynTFHVIl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-taynTFHVIl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-taynTFHVIl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-taynTFHVIl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-taynTFHVIl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-taynTFHVIl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-taynTFHVIl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-taynTFHVIl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-taynTFHVIl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-taynTFHVIl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-taynTFHVIl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-taynTFHVIl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-taynTFHVIl .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-taynTFHVIl .navbar {
    height: 70px;
  }
  .cid-taynTFHVIl .navbar.opened {
    height: auto;
  }
  .cid-taynTFHVIl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-taynTFHVIl .icons-menu {
    padding-right: 0;
  }
  .cid-taynTFHVIl .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-taynTGJefV .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-taynTGJefV .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-taynTGJefV .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-taynTGJefV .label-text {
    text-align: center !important;
  }
}
.cid-taynTGJefV .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-taynTGJefV .mbr-section-title {
    text-align: center !important;
  }
}
.cid-taynTGJefV .mbr-section-title,
.cid-taynTGJefV .mbr-section-btn {
  text-align: center;
}
.cid-taRXYii9G6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-taRXYii9G6 .mbr-section-title {
  letter-spacing: 0.1em;
  color: #444444;
  margin-bottom: 2rem;
}
.cid-taRXYii9G6 .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-taRXYii9G6 .list-img {
  width: 100px;
}
.cid-taRXYii9G6 .ico2 {
  color: #656565;
  font-size: 1.2rem;
}
.cid-taRXYii9G6 .btn {
  margin: 0px !important;
}
.cid-taRXYii9G6 .text-box {
  padding: 1rem;
}
.cid-taRXYii9G6 .text-box p {
  margin: 0;
}
.cid-taRXYii9G6 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-taRXYii9G6 .ico-box p {
  margin: 0;
}
.cid-taRXYii9G6 .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-taRXYii9G6 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-taRXYii9G6 .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-taRXYii9G6 .carousel-item .wrap-img {
  text-align: center;
}
.cid-taRXYii9G6 .carousel-item .wrap-img img {
  width: auto;
  max-width: 100%;
}
.cid-taRXYii9G6 .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-taRXYii9G6 .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-taRXYii9G6 .carousel-indicators li {
  display: inline-block;
}
.cid-taRXYii9G6 .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-taRXYii9G6 .carousel-indicators li.active {
  border: 0px;
}
.cid-taRXYii9G6 .li1 {
  background-image: url("../../../assets/images/before-inredpro-2-1280x964.jpg");
}
.cid-taRXYii9G6 .li2 {
  background-image: url("../../../assets/images/during-inredpro-1550x964.jpeg");
}
.cid-taRXYii9G6 .li3 {
  background-image: url("../../../assets/images/after-inredpro-1-1550x964.jpeg");
}
.cid-taRXYii9G6 .li4 {
  background-image: url("../../../assets/images/after3-inredpro-1-1550x964.jpg");
}
.cid-taRXYii9G6 .li5 {
  background-image: url("../../../assets/images/after-8-inredpro-1550x964.jpg");
}
.cid-taRXYii9G6 .li6 {
  background-image: url("../../../assets/images/inredpro-original7-1982x1280.jpg");
}
@media (max-width: 992px) {
  .cid-taRXYii9G6 .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-taRXYii9G6 .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-taRXYii9G6 .card-title2 {
  color: #fc6004;
}
.cid-taRXYii9G6 .sq {
  color: #656565;
}
.cid-taRXYii9G6 .item {
  color: #656565;
}
.cid-tbe7v9VdQk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tbe7v9VdQk .mbr-section-title {
  letter-spacing: 0.1em;
  color: #444444;
  margin-bottom: 2rem;
}
.cid-tbe7v9VdQk .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-tbe7v9VdQk .list-img {
  width: 100px;
}
.cid-tbe7v9VdQk .ico2 {
  color: #656565;
  font-size: 1.2rem;
}
.cid-tbe7v9VdQk .btn {
  margin: 0px !important;
}
.cid-tbe7v9VdQk .text-box {
  padding: 1rem;
}
.cid-tbe7v9VdQk .text-box p {
  margin: 0;
}
.cid-tbe7v9VdQk .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 0px;
}
.cid-tbe7v9VdQk .ico-box p {
  margin: 0;
}
.cid-tbe7v9VdQk .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tbe7v9VdQk .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tbe7v9VdQk .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-tbe7v9VdQk .carousel-item .wrap-img {
  text-align: center;
}
.cid-tbe7v9VdQk .carousel-item .wrap-img img {
  width: auto;
  max-width: 100%;
}
.cid-tbe7v9VdQk .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-tbe7v9VdQk .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 1rem;
  margin-right: 0;
  margin-left: 0;
  text-align: center;
}
.cid-tbe7v9VdQk .carousel-indicators li {
  display: inline-block;
}
.cid-tbe7v9VdQk .carousel-indicators li {
  max-width: 15%;
  max-height: 120px;
  width: 15%;
  height: 120px;
  border-radius: 0;
  opacity: 1;
  background-size: cover;
  border: none;
}
.cid-tbe7v9VdQk .carousel-indicators li.active {
  border: 0px;
}
.cid-tbe7v9VdQk .li1 {
  background-image: url("../../../assets/images/before-2-inredpro-1.gif");
}
.cid-tbe7v9VdQk .li2 {
  background-image: url("../../../assets/images/after-5-1-inredpro-1550x964.jpg");
}
.cid-tbe7v9VdQk .li3 {
  background-image: url("../../../assets/images/after-6-inredpro4-1550x964.jpg");
}
.cid-tbe7v9VdQk .li4 {
  background-image: url("../../../assets/images/after-7-inredpro-1550x964.jpg");
}
.cid-tbe7v9VdQk .li5 {
  background-image: url("../../../assets/images/inredpro-original6-1-1982x1280.jpg");
}
.cid-tbe7v9VdQk .li6 {
  background-image: url("../../../assets/images/after-10-inredpro-1550x964.jpg");
}
@media (max-width: 992px) {
  .cid-tbe7v9VdQk .carousel-indicators li {
    max-width: 30%;
    max-height: 120px;
    width: 30%;
    height: 120px;
  }
}
@media (max-width: 576px) {
  .cid-tbe7v9VdQk .carousel-indicators li {
    max-width: 30%;
    max-height: 80px;
    width: 30%;
    height: 80px;
  }
}
.cid-tbe7v9VdQk .card-title2 {
  color: #fc6004;
}
.cid-tbe7v9VdQk .sq {
  color: #656565;
}
.cid-tbe7v9VdQk .item {
  color: #656565;
}
.cid-tb6Xeivyjp {
  background-image: url("../../../assets/images/inred-imagen-original-3-2000x1288.jpg");
}
.cid-tb6Xeivyjp .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tb6Xeivyjp .col-text {
    min-height: 575px;
  }
}
@media (max-width: 991px) {
  .cid-tb6Xeivyjp .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tb6Xeivyjp .col-form {
    padding: 30px;
  }
}
.cid-tb6Xeivyjp .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-tb6Xeivyjp .text-wrapper {
    text-align: center !important;
  }
}
.cid-tb6Xeivyjp .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tb6Xeivyjp .label-text {
    text-align: center !important;
  }
}
.cid-tb6Xeivyjp .mbr-section-title {
  color: #222222;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tb6Xeivyjp .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tb6Xeivyjp .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-tb6Xeivyjp .mbr-section-btn .btn {
  width: max-content;
}
.cid-tb6Xeivyjp .mbr-section-btn .btn-black {
  color: #fc6004 !important;
}
@media (max-width: 767px) {
  .cid-tb6Xeivyjp .mbr-section-btn {
    text-align: center !important;
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tb6Xeivyjp .mbr-section-btn .btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tb6Xeivyjp .form-container {
    text-align: center !important;
  }
}
.cid-tb6Xeivyjp .form-wrap {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-tb6Xeivyjp .form-wrap {
    flex-wrap: wrap;
  }
}
.cid-tb6Xeivyjp .form-group {
  margin-bottom: 32px !important;
}
.cid-tb6Xeivyjp .form-control {
  font-size: 1rem;
  border-radius: 0 !important;
}
.cid-tb6Xeivyjp textarea {
  min-height: 114px;
}
.cid-tb6Xeivyjp .mbr-section-title,
.cid-tb6Xeivyjp .mbr-section-btn {
  color: #fc6004;
}
.cid-tb6Xeivyjp .mbr-section-title,
.cid-tb6Xeivyjp .mbr-section-btn DIV {
  text-align: left;
}
.cid-tb9hdgI8Js {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-tb9hdgI8Js .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #ffe161;
  margin-bottom: 1rem;
}
.cid-tb9hdgI8Js .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tb9hdgI8Js .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tb9hdgI8Js .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-tb9hdgI8Js .card-wrapper:hover {
  background: transparent;
}
.cid-tb9hdgI8Js .card-title,
.cid-tb9hdgI8Js .card-box {
  color: #ffffff;
}
.cid-tb9hdgI8Js .main-title,
.cid-tb9hdgI8Js .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-tb9hdgI8Js .mbr-fallback-image.disabled {
  display: none;
}
.cid-tb9hdgI8Js .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-taynTZRdAA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fc6004;
  overflow: hidden;
}
.cid-udxcAZdSxh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-udxcAZdSxh nav.navbar {
  position: fixed;
}
.cid-udxcAZdSxh .container,
.cid-udxcAZdSxh .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-udxcAZdSxh .container,
  .cid-udxcAZdSxh .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-udxcAZdSxh .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-udxcAZdSxh .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #fc6004 !important;
}
.cid-udxcAZdSxh .dropdown-item:hover,
.cid-udxcAZdSxh .dropdown-item:focus {
  color: #fc6004 !important;
}
.cid-udxcAZdSxh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-udxcAZdSxh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-udxcAZdSxh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udxcAZdSxh .nav-link {
  position: relative;
}
.cid-udxcAZdSxh .nav-link:hover {
  color: #ffffff !important;
}
.cid-udxcAZdSxh .nav-link:hover:before {
  opacity: 1;
}
.cid-udxcAZdSxh .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-udxcAZdSxh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udxcAZdSxh .container {
  display: flex;
  margin: auto;
}
.cid-udxcAZdSxh .iconfont-wrapper {
  color: #040402 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-udxcAZdSxh .nav-item:focus,
.cid-udxcAZdSxh .nav-link:focus {
  outline: none;
}
.cid-udxcAZdSxh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-udxcAZdSxh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udxcAZdSxh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-udxcAZdSxh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udxcAZdSxh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udxcAZdSxh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udxcAZdSxh .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #fc6004;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fc6004;
}
.cid-udxcAZdSxh .navbar.opened {
  transition: all 0.3s;
}
.cid-udxcAZdSxh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-udxcAZdSxh .navbar .navbar-logo img {
  width: auto;
}
.cid-udxcAZdSxh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-udxcAZdSxh .navbar.collapsed {
  justify-content: center;
}
.cid-udxcAZdSxh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udxcAZdSxh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udxcAZdSxh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-udxcAZdSxh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udxcAZdSxh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udxcAZdSxh .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-udxcAZdSxh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udxcAZdSxh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udxcAZdSxh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udxcAZdSxh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udxcAZdSxh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udxcAZdSxh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udxcAZdSxh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udxcAZdSxh .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-udxcAZdSxh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-udxcAZdSxh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udxcAZdSxh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udxcAZdSxh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-udxcAZdSxh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-udxcAZdSxh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-udxcAZdSxh .navbar.navbar-short {
  min-height: 60px;
}
.cid-udxcAZdSxh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-udxcAZdSxh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-udxcAZdSxh .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-udxcAZdSxh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udxcAZdSxh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udxcAZdSxh .dropdown-item.active,
.cid-udxcAZdSxh .dropdown-item:active {
  background-color: transparent;
}
.cid-udxcAZdSxh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udxcAZdSxh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udxcAZdSxh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udxcAZdSxh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fc6004;
}
.cid-udxcAZdSxh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udxcAZdSxh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udxcAZdSxh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-udxcAZdSxh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-udxcAZdSxh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-udxcAZdSxh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-udxcAZdSxh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udxcAZdSxh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udxcAZdSxh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udxcAZdSxh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udxcAZdSxh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udxcAZdSxh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udxcAZdSxh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udxcAZdSxh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udxcAZdSxh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-udxcAZdSxh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-udxcAZdSxh .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-udxcAZdSxh .navbar {
    height: 70px;
  }
  .cid-udxcAZdSxh .navbar.opened {
    height: auto;
  }
  .cid-udxcAZdSxh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-udxcAZdSxh .icons-menu {
    padding-right: 0;
  }
  .cid-udxcAZdSxh .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-ueXRC7YD7J .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-ueXRC7YD7J .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-ueXRC7YD7J .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-ueXRC7YD7J .label-text {
    text-align: center !important;
  }
}
.cid-ueXRC7YD7J .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ueXRC7YD7J .mbr-section-title {
    text-align: center !important;
  }
}
.cid-ueXRC7YD7J .mbr-section-title,
.cid-ueXRC7YD7J .mbr-section-btn {
  text-align: center;
}
.cid-udxcAZx3W7 {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-udxcAZx3W7 .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #ffe161;
  margin-bottom: 1rem;
}
.cid-udxcAZx3W7 .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-udxcAZx3W7 .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-udxcAZx3W7 .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-udxcAZx3W7 .card-wrapper:hover {
  background: transparent;
}
.cid-udxcAZx3W7 .card-title,
.cid-udxcAZx3W7 .card-box {
  color: #ffffff;
}
.cid-udxcAZx3W7 .main-title,
.cid-udxcAZx3W7 .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-udxcAZx3W7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-udxcAZx3W7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udxgGGE6LW {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #212428;
  overflow: hidden;
}
.cid-udxgGGE6LW .mbr-fallback-image.disabled {
  display: none;
}
.cid-udxgGGE6LW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udxgGGE6LW .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-udxgGGE6LW .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-udxgGGE6LW .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-udxgGGE6LW .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1599px) {
  .cid-udxgGGE6LW .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-udxgGGE6LW .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-udxgGGE6LW .mbr-section-head {
  width: 100%;
}
.cid-udxgGGE6LW .mbr-section-title {
  color: #e6c63b;
}
@media (max-width: 767px) {
  .cid-udxgGGE6LW .mbr-section-title {
    text-align: center;
  }
}
.cid-udxgGGE6LW .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-udxgGGE6LW .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-udxgGGE6LW .card-row {
  align-items: stretch;
}
.cid-udxgGGE6LW .item {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-udxgGGE6LW .item {
    margin-top: 30px;
  }
}
.cid-udxgGGE6LW .item-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
@media (max-width: 575px) {
  .cid-udxgGGE6LW .item-wrapper {
    padding: 20px;
  }
}
.cid-udxgGGE6LW .item-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-udxgGGE6LW .item-wrapper:hover .item-img img {
  transform: scale(1.1);
}
.cid-udxgGGE6LW .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 19px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .4s all;
}
.cid-udxgGGE6LW .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-udxgGGE6LW .item-img img {
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-udxgGGE6LW .card-box {
  position: relative;
  z-index: 5;
  padding-top: 18px;
}
.cid-udxgGGE6LW .card-title {
  position: relative;
  z-index: 5;
  color: #e6c63b;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-udxgGGE6LW .card-title {
    margin-bottom: 10px;
  }
}
.cid-udxgGGE6LW .card-text {
  position: relative;
  z-index: 5;
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-udxgGGE6LW .card-text a {
  transition: .4s all;
}
.cid-udxgGGE6LW .card-text a:hover {
  color: #fc6004 !important;
}
.cid-udxcAZQuq5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-udxcAZQuq5 .row {
  border-top: 1px solid #FFFFFF;
  min-height: 600px;
  margin-top: -1px;
}
.cid-udxcAZQuq5 .mbr-text {
  color: #FFFFFF;
  max-width: 330px;
  text-align: left;
}
.cid-udxcAZQuq5 .color-text {
  color: #d11535;
}
.cid-udxcAZQuq5 .custom-block {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  padding-right: 0;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.cid-udxcAZQuq5 .card-wrapper {
  position: relative;
  padding: 3rem 24px;
}
.cid-udxcAZQuq5 .buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -12px;
}
.cid-udxcAZQuq5 .buttons-container .item-button {
  margin: 0;
}
.cid-udxcAZQuq5 .buttons-container .btn {
  margin: 0 0 16px 12px;
}
.cid-udxcAZQuq5 .buttons-container .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-udxcAZQuq5 .buttons-container .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
@media (min-width: 768px) {
  .cid-udxcAZQuq5 .wrapper {
    margin-right: -32px;
    margin-left: -32px;
    padding-right: 12px;
    padding-left: 12px;
  }
  .cid-udxcAZQuq5 .custom-block_left {
    border-right: 1px solid #ffffff;
  }
}
.cid-udxcAZQuq5 .custom-block_left {
  padding: 0;
}
.cid-udxcAZQuq5 .custom-block_left .section-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 3rem;
  right: 16px;
  margin: 0;
  box-shadow: 0 0 130px 1px #fc6004;
  transform: rotate(45deg);
  border-radius: 50%;
  width: 120px;
  height: 120px;
}
.cid-udxcAZQuq5 .custom-block_left .section-btn .btn-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  background: #fc6004;
  border-radius: 50%;
  transition: 0.2s;
}
.cid-udxcAZQuq5 .custom-block_left .section-btn .btn-custom:hover {
  background: #a73f02;
}
.cid-udxcAZQuq5 .custom-block_left .section-btn .btn-custom span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.cid-udxcAZQuq5 .card-box {
  max-width: 565px;
}
.cid-udxcAZQuq5 .image-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  padding: 0;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .cid-udxcAZQuq5 .image-wrapper {
    order: -1;
    border-bottom: none;
  }
}
.cid-udxcAZQuq5 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-udxcAZQuq5 .wrapper {
    padding-right: 16px;
    padding-left: 16px;
  }
  .cid-udxcAZQuq5 .card-wrapper {
    position: relative;
    padding: 60px;
  }
  .cid-udxcAZQuq5 .custom-block_left .section-btn {
    bottom: 35px;
    right: 35px;
  }
}
@media (max-width: 575px) {
  .cid-udxcAZQuq5 .custom-block_left {
    padding: 0;
  }
  .cid-udxcAZQuq5 .custom-block_left .section-btn {
    position: sticky;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
  }
  .cid-udxcAZQuq5 .custom-block_left .section-btn .btn-custom {
    width: 80px;
    height: 80px;
  }
  .cid-udxcAZQuq5 .card-title-box {
    margin-bottom: 16px;
  }
  .cid-udxcAZQuq5 .mbr-text {
    max-width: 100%;
    margin-bottom: 16px !important;
  }
}
.cid-udxcAZQuq5 .card-title {
  color: #ffe161;
  text-align: left;
}
.cid-udxcB05r2W {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #222222;
}
.cid-udxcB05r2W .mbr-text {
  color: #999999;
  text-align: left;
}
.cid-udxcB05r2W .mbr-section-subtitle {
  color: #e2090d;
  text-align: left;
}
.cid-udxcB0jzoI {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #28282c;
}
@media (max-width: 767px) {
  .cid-udxcB0jzoI .card-wrapper {
    margin: 0;
    padding: 0;
  }
}
.cid-udxcB0jzoI .mbr-section-title,
.cid-udxcB0jzoI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-udxcB0jzoI .card-title,
.cid-udxcB0jzoI .card-box {
  color: #e2090d;
}
.cid-udxcB0jzoI .mbr-text {
  color: #9b9ba5;
}
@media (max-width: 600px) {
  .cid-udxcB0jzoI .mbr-section-title {
    letter-spacing: -1px;
  }
}
@media (min-width: 768px) {
  .cid-udxcB0jzoI .border-right {
    border-right: 2px solid rgba(255, 255, 255, 0.25);
  }
  .cid-udxcB0jzoI .top {
    border-top: 2px solid rgba(255, 255, 255, 0.25);
  }
  .cid-udxcB0jzoI .margin-left {
    margin-left: 5rem;
    padding: 3rem 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .cid-udxcB0jzoI .border-right {
    padding: 3rem 3rem 3rem 0;
  }
}
.cid-udxcB0CjtZ {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #28282c;
}
@media (max-width: 767px) {
  .cid-udxcB0CjtZ .card-wrapper {
    margin: 0;
    padding: 0;
  }
}
.cid-udxcB0CjtZ .mbr-section-title,
.cid-udxcB0CjtZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-udxcB0CjtZ .card-title,
.cid-udxcB0CjtZ .card-box {
  color: #e2090d;
}
.cid-udxcB0CjtZ .mbr-text {
  color: #9b9ba5;
}
@media (max-width: 600px) {
  .cid-udxcB0CjtZ .mbr-section-title {
    letter-spacing: -1px;
  }
}
@media (min-width: 768px) {
  .cid-udxcB0CjtZ .border-right {
    border-right: 2px solid rgba(255, 255, 255, 0.25);
  }
  .cid-udxcB0CjtZ .top {
    border-top: 2px solid rgba(255, 255, 255, 0.25);
  }
  .cid-udxcB0CjtZ .margin-left {
    margin-left: 5rem;
    padding: 3rem 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .cid-udxcB0CjtZ .border-right {
    padding: 3rem 3rem 3rem 0;
  }
}
.cid-udxcB0WImY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/inred.......-1920x1080.jpg");
}
.cid-udxcB0WImY .mbr-media {
  position: relative;
}
.cid-udxcB0WImY .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-udxcB0WImY .box {
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .cid-udxcB0WImY .box {
    min-height: 300px;
  }
}
.cid-udxcB0WImY .icon-wrap {
  position: relative;
  margin: auto;
  width: 100px;
  height: 100px;
  background: #d11535;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-udxcB0WImY .icon-wrap a {
  height: 20px;
}
.cid-udxcB0WImY .icon-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #d11535;
  opacity: 0.8;
  border-radius: 50%;
  animation-duration: 1s;
  animation-name: icons;
  animation-iteration-count: infinite;
  z-index: 1;
}
@keyframes icons {
  from {
    width: 100px;
    height: 100px;
    opacity: 0.8;
  }
  to {
    width: 160px;
    height: 160px;
    opacity: 0;
  }
}
.cid-udxcB0WImY .mbr-media span {
  font-size: 1.5rem;
  transition: all 0.2s;
  z-index: 2;
  padding-left: 4px;
  position: relative;
  color: #ffffff;
}
.cid-udxcB0WImY .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-udxcB0WImY .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-udxcB0WImY .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-udxcB0WImY .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-udxcB0WImY .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-udxcB0WImY .mbr-section-title {
  color: #ffffff;
}
.cid-udxcB1mAJQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tb8OrTHO0P {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tb8OrTHO0P nav.navbar {
  position: fixed;
}
.cid-tb8OrTHO0P .container,
.cid-tb8OrTHO0P .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tb8OrTHO0P .container,
  .cid-tb8OrTHO0P .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tb8OrTHO0P .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-tb8OrTHO0P .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #fc6004 !important;
}
.cid-tb8OrTHO0P .dropdown-item:hover,
.cid-tb8OrTHO0P .dropdown-item:focus {
  color: #fc6004 !important;
}
.cid-tb8OrTHO0P .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tb8OrTHO0P .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tb8OrTHO0P .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tb8OrTHO0P .nav-link {
  position: relative;
}
.cid-tb8OrTHO0P .nav-link:hover {
  color: #ffffff !important;
}
.cid-tb8OrTHO0P .nav-link:hover:before {
  opacity: 1;
}
.cid-tb8OrTHO0P .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-tb8OrTHO0P .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tb8OrTHO0P .container {
  display: flex;
  margin: auto;
}
.cid-tb8OrTHO0P .iconfont-wrapper {
  color: #040402 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tb8OrTHO0P .nav-item:focus,
.cid-tb8OrTHO0P .nav-link:focus {
  outline: none;
}
.cid-tb8OrTHO0P .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tb8OrTHO0P .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tb8OrTHO0P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tb8OrTHO0P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tb8OrTHO0P .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tb8OrTHO0P .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tb8OrTHO0P .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #fc6004;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fc6004;
}
.cid-tb8OrTHO0P .navbar.opened {
  transition: all 0.3s;
}
.cid-tb8OrTHO0P .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tb8OrTHO0P .navbar .navbar-logo img {
  width: auto;
}
.cid-tb8OrTHO0P .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tb8OrTHO0P .navbar.collapsed {
  justify-content: center;
}
.cid-tb8OrTHO0P .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tb8OrTHO0P .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tb8OrTHO0P .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tb8OrTHO0P .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tb8OrTHO0P .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tb8OrTHO0P .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-tb8OrTHO0P .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tb8OrTHO0P .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tb8OrTHO0P .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tb8OrTHO0P .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tb8OrTHO0P .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tb8OrTHO0P .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tb8OrTHO0P .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tb8OrTHO0P .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-tb8OrTHO0P .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tb8OrTHO0P .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tb8OrTHO0P .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tb8OrTHO0P .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tb8OrTHO0P .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tb8OrTHO0P .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tb8OrTHO0P .navbar.navbar-short {
  min-height: 60px;
}
.cid-tb8OrTHO0P .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tb8OrTHO0P .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tb8OrTHO0P .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-tb8OrTHO0P .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tb8OrTHO0P .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tb8OrTHO0P .dropdown-item.active,
.cid-tb8OrTHO0P .dropdown-item:active {
  background-color: transparent;
}
.cid-tb8OrTHO0P .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tb8OrTHO0P .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tb8OrTHO0P .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tb8OrTHO0P .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fc6004;
}
.cid-tb8OrTHO0P .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tb8OrTHO0P .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tb8OrTHO0P ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tb8OrTHO0P .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tb8OrTHO0P button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-tb8OrTHO0P button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tb8OrTHO0P button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tb8OrTHO0P button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tb8OrTHO0P button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tb8OrTHO0P button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tb8OrTHO0P nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tb8OrTHO0P nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tb8OrTHO0P nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tb8OrTHO0P nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tb8OrTHO0P .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tb8OrTHO0P a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tb8OrTHO0P .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-tb8OrTHO0P .navbar {
    height: 70px;
  }
  .cid-tb8OrTHO0P .navbar.opened {
    height: auto;
  }
  .cid-tb8OrTHO0P .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-tb8OrTHO0P .icons-menu {
    padding-right: 0;
  }
  .cid-tb8OrTHO0P .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tb90R789KY {
  background-image: url("../../../assets/images/inred-imagen-original-3-2000x1288.jpg");
}
.cid-tb90R789KY .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tb90R789KY .col-text {
    min-height: 575px;
  }
}
@media (max-width: 991px) {
  .cid-tb90R789KY .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tb90R789KY .col-form {
    padding: 30px;
  }
}
.cid-tb90R789KY .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-tb90R789KY .text-wrapper {
    text-align: center !important;
  }
}
.cid-tb90R789KY .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tb90R789KY .label-text {
    text-align: center !important;
  }
}
.cid-tb90R789KY .mbr-section-title {
  color: #222222;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tb90R789KY .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tb90R789KY .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-tb90R789KY .mbr-section-btn .btn {
  width: max-content;
}
.cid-tb90R789KY .mbr-section-btn .btn-black {
  color: #fc6004 !important;
}
@media (max-width: 767px) {
  .cid-tb90R789KY .mbr-section-btn {
    text-align: center !important;
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tb90R789KY .mbr-section-btn .btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tb90R789KY .form-container {
    text-align: center !important;
  }
}
.cid-tb90R789KY .form-wrap {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-tb90R789KY .form-wrap {
    flex-wrap: wrap;
  }
}
.cid-tb90R789KY .form-group {
  margin-bottom: 32px !important;
}
.cid-tb90R789KY .form-control {
  font-size: 1rem;
  border-radius: 0 !important;
}
.cid-tb90R789KY textarea {
  min-height: 114px;
}
.cid-tb90R789KY .mbr-section-title,
.cid-tb90R789KY .mbr-section-btn {
  color: #d11535;
}
.cid-tb90R789KY .mbr-section-title,
.cid-tb90R789KY .mbr-section-btn DIV {
  text-align: left;
}
.cid-tb8PBArhw3 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top: 3px solid #d11535;
  border-bottom: 3px solid #d11535;
  margin-top: -3px;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-tb8PBArhw3 .mbr-overlay {
  background-color: #040402;
  opacity: 0.8;
}
.cid-tb8PBArhw3 .content {
  border: 3px solid #d11535;
  padding: 3rem 1rem;
}
@media (min-width: 992px) {
  .cid-tb8PBArhw3 .content {
    padding: 125px 234px 92px;
  }
}
.cid-tb8PBArhw3 label {
  font-weight: 700;
}
.cid-tb8PBArhw3 .title {
  position: absolute;
  border-radius: 20px;
  background-color: #d11535;
  color: #fff;
  padding: 5px 30px 2.5px;
  font-family: "Josefin Sans";
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .cid-tb8PBArhw3 .title {
    min-width: 200px;
  }
}
.cid-tb8PBArhw3 form .form-control {
  color: #000 !important;
  box-shadow: none !important;
  padding: 6px 12px;
  min-height: 34px;
  border: 1px solid #000000 !important;
  border-radius: 10px !important;
  background-color: #fff;
}
.cid-tb8PBArhw3 form .form-control:focus {
  border: 1px solid #6698DD !important;
}
.cid-tb8PBArhw3 form .form-control::placeholder {
  color: #adadad;
}
.cid-tb8PBArhw3 form .mbr-section-btn {
  text-align: center;
  width: auto;
  margin: 0 auto;
}
.cid-tb8PBArhw3 form .mbr-section-btn .btn {
  border: 2px solid #000 !important;
  padding: 10px 20px !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tb8PBArhw3 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tb8PBArhw3 form textarea {
  height: 80px;
}
.cid-tb8PBArhw3 form .form-check-input[type=checkbox] {
  border-radius: 0 !important;
  border: 1px solid #000;
}
.cid-tb8PBArhw3 form .checkbox {
  margin-left: 20px;
}
.cid-tb8PBArhw3 .btn-secondary {
  color: #000000 !important;
}
.cid-tb8PBArhw3 .btn-secondary:hover {
  color: #000000 !important;
  background: #fff !important;
}
.cid-tb8PBArhw3 label span {
  color: #a94442;
}
.cid-tb8PBArhw3 .checkbox,
.cid-tb8PBArhw3 .form-group {
  margin-bottom: 1rem;
}
.cid-tb8PBArhw3 LABEL {
  color: #e2090d;
}
.cid-tb8PlrpGo2 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tb8PlrpGo2 .row {
  flex-direction: row-reverse;
}
.cid-tb8PlrpGo2 .row {
  align-items: center;
}
.cid-tb8PlrpGo2 .image-wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .cid-tb8PlrpGo2 .image-wrapper {
    padding: 0 30px;
    padding-right: 2.5rem;
  }
}
.cid-tb8PlrpGo2 .image-wrapper img {
  width: auto;
  max-width: 100%;
  align-self: flex-end;
  object-fit: cover;
}
.cid-tb8PlrpGo2 .image-wrapper img:last-child {
  align-self: flex-start;
  margin-top: -25%;
}
@media (max-width: 991px) {
  .cid-tb8PlrpGo2 .image-wrapper img {
    width: 60%;
  }
}
@media (max-width: 991px) {
  .cid-tb8PlrpGo2 .col-text {
    padding-bottom: 4.8rem;
  }
}
@media (min-width: 992px) {
  .cid-tb8PlrpGo2 .col-text {
    padding: 0 30px;
    padding-left: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tb8PlrpGo2 .col-text {
    text-align: center;
  }
}
.cid-tb8PlrpGo2 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tb8PlrpGo2 .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #222222;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-tb8PlrpGo2 .label-text {
    text-align: center !important;
  }
}
.cid-tb8PlrpGo2 .mbr-section-title {
  width: 100%;
  margin-bottom: 24px;
  color: #222222;
}
.cid-tb8PlrpGo2 .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 1.5rem;
  text-align: center;
}
.cid-tb8PlrpGo2 .lists-container {
  display: flex;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tb8PlrpGo2 .lists-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tb8PlrpGo2 .lists-container {
    justify-content: center;
  }
}
.cid-tb8PlrpGo2 .list {
  display: flex;
  flex-direction: column;
  color: #555555;
  padding: 0 8px 0 0;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .cid-tb8PlrpGo2 .list {
    width: 100%;
    padding-right: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-tb8PlrpGo2 .list {
    align-items: center;
  }
}
.cid-tb8PlrpGo2 .list-item {
  display: flex;
  align-items: center;
}
.cid-tb8PlrpGo2 .icon-wrapper {
  margin-right: 5px;
}
.cid-tb8PlrpGo2 .icon-wrapper span {
  color: #c69453;
  font-size: 21px;
}
.cid-tb8PlrpGo2 .list-item-text {
  flex-grow: 1;
  color: #040402;
}
.cid-tb8PlrpGo2 .btn-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tb8PlrpGo2 .btn-container {
    margin-top: 16px;
  }
}
@media (max-width: 575px) {
  .cid-tb8PlrpGo2 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tb8PlrpGo2 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tb8PlrpGo2 .mbr-section-title,
.cid-tb8PlrpGo2 .mbr-section-btn {
  text-align: center;
  color: #d11535;
}
.cid-tb8OrXxJWO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-tba5nCFRzp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tba5nCFRzp nav.navbar {
  position: fixed;
}
.cid-tba5nCFRzp .container,
.cid-tba5nCFRzp .container-fluid {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tba5nCFRzp .container,
  .cid-tba5nCFRzp .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tba5nCFRzp .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-tba5nCFRzp .dropdown-menu {
  padding: 1rem 0;
  border-radius: 0px;
  background: #fc6004 !important;
}
.cid-tba5nCFRzp .dropdown-item:hover,
.cid-tba5nCFRzp .dropdown-item:focus {
  color: #fc6004 !important;
}
.cid-tba5nCFRzp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tba5nCFRzp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tba5nCFRzp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tba5nCFRzp .nav-link {
  position: relative;
}
.cid-tba5nCFRzp .nav-link:hover {
  color: #ffffff !important;
}
.cid-tba5nCFRzp .nav-link:hover:before {
  opacity: 1;
}
.cid-tba5nCFRzp .nav-link:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  transition: all 0.3s;
  opacity: 0;
}
.cid-tba5nCFRzp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tba5nCFRzp .container {
  display: flex;
  margin: auto;
}
.cid-tba5nCFRzp .iconfont-wrapper {
  color: #040402 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tba5nCFRzp .nav-item:focus,
.cid-tba5nCFRzp .nav-link:focus {
  outline: none;
}
.cid-tba5nCFRzp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tba5nCFRzp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tba5nCFRzp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tba5nCFRzp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tba5nCFRzp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tba5nCFRzp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tba5nCFRzp .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 2px solid #fc6004;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fc6004;
}
.cid-tba5nCFRzp .navbar.opened {
  transition: all 0.3s;
}
.cid-tba5nCFRzp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tba5nCFRzp .navbar .navbar-logo img {
  width: auto;
}
.cid-tba5nCFRzp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tba5nCFRzp .navbar.collapsed {
  justify-content: center;
}
.cid-tba5nCFRzp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tba5nCFRzp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tba5nCFRzp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tba5nCFRzp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tba5nCFRzp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tba5nCFRzp .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-tba5nCFRzp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tba5nCFRzp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tba5nCFRzp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tba5nCFRzp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tba5nCFRzp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tba5nCFRzp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tba5nCFRzp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tba5nCFRzp .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-tba5nCFRzp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tba5nCFRzp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tba5nCFRzp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tba5nCFRzp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tba5nCFRzp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tba5nCFRzp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tba5nCFRzp .navbar.navbar-short {
  min-height: 60px;
}
.cid-tba5nCFRzp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tba5nCFRzp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tba5nCFRzp .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-tba5nCFRzp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tba5nCFRzp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tba5nCFRzp .dropdown-item.active,
.cid-tba5nCFRzp .dropdown-item:active {
  background-color: transparent;
}
.cid-tba5nCFRzp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tba5nCFRzp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tba5nCFRzp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tba5nCFRzp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fc6004;
}
.cid-tba5nCFRzp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tba5nCFRzp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tba5nCFRzp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tba5nCFRzp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tba5nCFRzp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  z-index: 5;
  align-self: center;
}
.cid-tba5nCFRzp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tba5nCFRzp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tba5nCFRzp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tba5nCFRzp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tba5nCFRzp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tba5nCFRzp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tba5nCFRzp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tba5nCFRzp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tba5nCFRzp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tba5nCFRzp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tba5nCFRzp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tba5nCFRzp .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-tba5nCFRzp .navbar {
    height: 70px;
  }
  .cid-tba5nCFRzp .navbar.opened {
    height: auto;
  }
  .cid-tba5nCFRzp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 992px) {
  .cid-tba5nCFRzp .icons-menu {
    padding-right: 0;
  }
  .cid-tba5nCFRzp .iconfont-wrapper {
    padding: 0 0.25rem;
  }
}
.cid-tbePZZIb07 {
  background-image: url("../../../assets/images/illustration-3d-rendering-large-luxury-modern-bright-interiors-living-room-mockup-computer-digitally-generated-image-2000x1056.jpg");
}
.cid-tba5nF34vz {
  padding-top: 30px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tba5nF34vz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tba5nF34vz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tba5nF34vz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tba5nF34vz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tba5nF34vz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #040402;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tba5nF34vz .icon-focus {
  display: none;
}
.cid-tba5nF34vz .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tba5nF34vz ul {
  font-size: 0;
}
.cid-tba5nF34vz .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-tba5nF34vz .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-tba5nF34vz .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #fc6004, #fc6004);
}
.cid-tba5nF34vz .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-tba5nF34vz .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-tba5nF34vz .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tba5nF34vz .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tba5nF34vz .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #fc6004, #fc6004);
  display: inline-block;
}
.cid-tba5nF34vz .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-tba5nF34vz .btn:hover {
  background: transparent !important;
}
.cid-tba5nF34vz .btn:hover:before {
  background: transparent !important;
}
.cid-tba5nF34vz .btn:before {
  background-color: transparent !important;
}
.cid-tba5nF34vz .btn:focus {
  box-shadow: none;
}
.cid-tba5nDlW94 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tba5nDlW94 .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-tba5nDlW94 .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tba5nDlW94 .label-text {
    text-align: center !important;
  }
}
.cid-tba5nDlW94 .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tba5nDlW94 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tba5nDlW94 .mbr-section-title,
.cid-tba5nDlW94 .mbr-section-btn {
  text-align: center;
}
.cid-tba5nDShGA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bg-inred-1800x1135.png");
}
.cid-tba5nDShGA .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #ffe161;
  margin-bottom: 1rem;
}
.cid-tba5nDShGA .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-tba5nDShGA .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-tba5nDShGA .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 1rem;
  background: #282b2f;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.3);
}
.cid-tba5nDShGA .card-wrapper:hover {
  background: transparent;
}
.cid-tba5nDShGA .card-title,
.cid-tba5nDShGA .card-box {
  color: #ffffff;
}
.cid-tba5nDShGA .main-title,
.cid-tba5nDShGA .title-col {
  text-align: center;
  color: #ffffff;
}
.cid-tba5nDShGA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tba5nDShGA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tba5nGg7UR {
  background-image: url("../../../assets/images/inred-imagen-original-3-2000x1288.jpg");
}
.cid-tba5nGg7UR .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tba5nGg7UR .col-text {
    min-height: 575px;
  }
}
@media (max-width: 991px) {
  .cid-tba5nGg7UR .col-form {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-tba5nGg7UR .col-form {
    padding: 30px;
  }
}
.cid-tba5nGg7UR .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .cid-tba5nGg7UR .text-wrapper {
    text-align: center !important;
  }
}
.cid-tba5nGg7UR .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tba5nGg7UR .label-text {
    text-align: center !important;
  }
}
.cid-tba5nGg7UR .mbr-section-title {
  color: #222222;
  margin-bottom: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tba5nGg7UR .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tba5nGg7UR .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-tba5nGg7UR .mbr-section-btn .btn {
  width: max-content;
}
.cid-tba5nGg7UR .mbr-section-btn .btn-black {
  color: #fc6004 !important;
}
@media (max-width: 767px) {
  .cid-tba5nGg7UR .mbr-section-btn {
    text-align: center !important;
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tba5nGg7UR .mbr-section-btn .btn {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tba5nGg7UR .form-container {
    text-align: center !important;
  }
}
.cid-tba5nGg7UR .form-wrap {
  display: flex;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-tba5nGg7UR .form-wrap {
    flex-wrap: wrap;
  }
}
.cid-tba5nGg7UR .form-group {
  margin-bottom: 32px !important;
}
.cid-tba5nGg7UR .form-control {
  font-size: 1rem;
  border-radius: 0 !important;
}
.cid-tba5nGg7UR textarea {
  min-height: 114px;
}
.cid-tba5nGg7UR .mbr-section-title,
.cid-tba5nGg7UR .mbr-section-btn {
  color: #d11535;
}
.cid-tba5nGg7UR .mbr-section-title,
.cid-tba5nGg7UR .mbr-section-btn DIV {
  text-align: left;
}
.cid-tba5nHQINA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
