body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 4.4rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 7.04rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 2.4rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 3.84rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.52rem;
    font-size: calc( 2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.19rem + (4.4 - 2.19) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #c21c1c !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #46f11b !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #c21c1c !important;
  border-color: #c21c1c !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #7f1212 !important;
  border-color: #7f1212 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #7f1212 !important;
  border-color: #7f1212 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #141414 !important;
  border-color: #141414 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #46f11b !important;
  border-color: #46f11b !important;
  color: #030c01 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #030c01 !important;
  background-color: #2db40b !important;
  border-color: #2db40b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #030c01 !important;
  background-color: #2db40b !important;
  border-color: #2db40b !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #690f0f;
  color: #690f0f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #c21c1c;
  border-color: #c21c1c;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #c21c1c !important;
  border-color: #c21c1c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #141414;
  border-color: #141414;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #141414 !important;
  border-color: #141414 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #279c0a;
  color: #279c0a;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #030c01;
  background-color: #46f11b;
  border-color: #46f11b;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #030c01 !important;
  background-color: #46f11b !important;
  border-color: #46f11b !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #c21c1c !important;
}
.text-secondary {
  color: #141414 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #46f11b !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #690f0f !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #279c0a !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #46f11b;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #c21c1c;
  border-color: #c21c1c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #c21c1c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #eb7373;
}
.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: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #e2fddb;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #c21c1c;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #c21c1c;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #c21c1c;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #c21c1c;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #c21c1c;
  border-bottom-color: #c21c1c;
}
.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: #c21c1c !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: #141414 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  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='%23c21c1c' %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.3;
}
.cid-rpSNGL3Fj0 .modal-body .close {
  background: #1b1b1b;
}
.cid-rpSNGL3Fj0 .modal-body .close span {
  font-style: normal;
}
.cid-rpSNGL3Fj0 .carousel-inner > .active,
.cid-rpSNGL3Fj0 .carousel-inner > .next,
.cid-rpSNGL3Fj0 .carousel-inner > .prev {
  display: table;
}
.cid-rpSNGL3Fj0 .carousel-control .icon-next,
.cid-rpSNGL3Fj0 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rpSNGL3Fj0 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rpSNGL3Fj0 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rpSNGL3Fj0 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-rpSNGL3Fj0 .boxed-slider > div {
  position: relative;
}
.cid-rpSNGL3Fj0 .container img {
  width: 100%;
}
.cid-rpSNGL3Fj0 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-rpSNGL3Fj0 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rpSNGL3Fj0 .mbr-table-cell {
  padding: 0;
}
.cid-rpSNGL3Fj0 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-rpSNGL3Fj0 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-rpSNGL3Fj0 .mbr-overlay {
  z-index: 1;
}
.cid-rpSNGL3Fj0 .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rpSNGL3Fj0 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-rpSNGL3Fj0 .carousel-item .container {
    width: 100%;
  }
}
.cid-rpSNGL3Fj0 .carousel-item-next.carousel-item-left,
.cid-rpSNGL3Fj0 .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-rpSNGL3Fj0 .active.carousel-item-right,
.cid-rpSNGL3Fj0 .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-rpSNGL3Fj0 .active.carousel-item-left,
.cid-rpSNGL3Fj0 .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-rpSNGL3Fj0 .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-rpSNGL3Fj0 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rpSNGL3Fj0 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rpSNGL3Fj0 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-rpSNGL3Fj0 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-rpSNGL3Fj0 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-rpSNGL3Fj0 .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-rpSNGL3Fj0 .mbr-slider .carousel-indicators li.active,
.cid-rpSNGL3Fj0 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-rpSNGL3Fj0 .mbr-slider .carousel-indicators li::after,
.cid-rpSNGL3Fj0 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-rpSNGL3Fj0 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-rpSNGL3Fj0 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-rpSNGL3Fj0 .mbr-slider > .container img {
  width: 100%;
}
.cid-rpSNGL3Fj0 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rpSNGL3Fj0 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-rpSNGL3Fj0 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rpSNGL3Fj0 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-rpSNGL3Fj0 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-rpSNGL3Fj0 .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-rpSNGL3Fj0 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-rpSNGL3Fj0 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-rpSNGL3Fj0 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-rpSNGL3Fj0 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-rpSNGL3Fj0 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-rpSNGL3Fj0 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-rpSNGL3Fj0 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-rpSNGL3Fj0 H2 {
  text-align: center;
  color: #ffffff;
}
.cid-rpSNGL3Fj0 P {
  text-align: center;
}
.cid-qTkzRZLJNu .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c21c1c;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3.8rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-sLHwYmsmPL {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sLHwYmsmPL .row {
  flex-direction: row-reverse;
}
.cid-sLHwYmsmPL .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #c21c1c;
}
.cid-sLHwYmsmPL .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-sLHwYmsmPL .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-sLHwYmsmPL .mbr-section-title {
  color: #232323;
}
@media (min-width: 1400px) {
  .cid-sLHwYmsmPL .col-12 {
    padding: 0 2rem;
  }
  .cid-sLHwYmsmPL .row {
    margin: 0 -2rem;
  }
}
.cid-sLHwYmsmPL .mbr-text,
.cid-sLHwYmsmPL .mbr-section-btn {
  color: #232323;
}
.cid-tavWJA8JSr {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/production-1-1536x912.jpeg");
}
.cid-sLHgPT4dxa {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/tabelados-1-500x375.jpg");
}
.cid-sLHgPT4dxa .title_block {
  margin-bottom: 80px;
}
.cid-sLHgPT4dxa .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #232323;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-sLHgPT4dxa .mbr-section-title {
  color: #012a58;
}
.cid-sLHgPT4dxa .mbr-item-subtitle {
  margin-top: 15px;
  margin-bottom: 10px;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  color: #141414;
}
.cid-sLHgPT4dxa .item {
  padding-bottom: 2rem;
}
.cid-sLHgPT4dxa .image-wrapper {
  overflow: hidden;
  height: 200px;
}
.cid-sLHgPT4dxa .image-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sLHgPT4dxa .item-wrapper {
  position: relative;
}
.cid-sLHgPT4dxa .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-sLHgPT4dxa .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-sLHgPT4dxa .item-wrapper:hover .mbr-item-subtitle a {
  color: #c21c1c !important;
}
.cid-sLHgPT4dxa .item-wrapper:hover img {
  transform: scale(1.1);
}
.cid-sLHgPT4dxa .carousel-control,
.cid-sLHgPT4dxa .close {
  background: #1b1b1b;
}
.cid-sLHgPT4dxa .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sLHgPT4dxa .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sLHgPT4dxa .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sLHgPT4dxa .carousel-control-next span {
  margin-left: 5px;
}
.cid-sLHgPT4dxa .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sLHgPT4dxa .close::before {
  content: '\e91a';
}
.cid-sLHgPT4dxa .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sLHgPT4dxa .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sLHgPT4dxa .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sLHgPT4dxa .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sLHgPT4dxa .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sLHgPT4dxa .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sLHgPT4dxa .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sLHgPT4dxa .carousel-indicators li.active,
.cid-sLHgPT4dxa .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sLHgPT4dxa .carousel-indicators li::after,
.cid-sLHgPT4dxa .carousel-indicators li::before {
  content: none;
}
.cid-sLHgPT4dxa .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sLHgPT4dxa .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sLHgPT4dxa .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sLHgPT4dxa .carousel-indicators {
    display: none;
  }
}
.cid-sLHgPT4dxa .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sLHgPT4dxa .carousel-inner > .active {
  display: block;
}
.cid-sLHgPT4dxa .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sLHgPT4dxa .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sLHgPT4dxa .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sLHgPT4dxa .carousel-control,
  .cid-sLHgPT4dxa .carousel-indicators,
  .cid-sLHgPT4dxa .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sLHgPT4dxa .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sLHgPT4dxa .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sLHgPT4dxa .carousel-indicators .active,
.cid-sLHgPT4dxa .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sLHgPT4dxa .carousel-indicators .active {
  background: #fff;
}
.cid-sLHgPT4dxa .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sLHgPT4dxa .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sLHgPT4dxa .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sLHgPT4dxa .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sLHgPT4dxa .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sLHgPT4dxa .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sLHgPT4dxa .carousel {
  width: 100%;
}
.cid-sLHgPT4dxa .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sLHgPT4dxa .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sLHgPT4dxa .modal.fade .modal-dialog,
.cid-sLHgPT4dxa .modal.in .modal-dialog {
  transform: none;
}
.cid-sLHgPT4dxa .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sLHgPT4dxa H6 {
  color: #141414;
}
.cid-sLHUHxNcSL {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(0deg, #f9f9f9, #ffffff);
}
.cid-sLHUHxNcSL .mbr-section {
  text-align: center;
  color: #fff;
}
.cid-sLHUHxNcSL p {
  display: inline;
  font-size: 10px;
  color: #FFD100;
}
.cid-sLHUHxNcSL .marquee-rtl {
  -webkit-animation: Test 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  opacity: 0.5;
  padding-right: 1%;
  padding-left: 1%;
}
@-webkit-keyframes Test {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1.0;
  }
  100% {
    opacity: 0.5;
  }
}
.cid-sLHUHxNcSL .media-container-row .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-sLHVaHT6q7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #c21c1c, #ffffff);
}
.cid-sLHVaHT6q7 .mbr-section {
  text-align: center;
  color: #fff;
}
.cid-sLHVaHT6q7 p {
  display: inline;
  font-size: 10px;
  color: #FFD100;
}
.cid-sLHVaHT6q7 .marquee-rtl {
  padding-right: 1%;
  padding-left: 1%;
}
.cid-sLHVaHT6q7 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sLHIgRcdto {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/24.80-thumb-min-700x366.png");
}
.cid-sLHIgRcdto .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sLHIgRcdto .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sLHIgRcdto .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sLHIgRcdto .mbr-section-title {
  color: #f9f9f9;
}
.cid-sLHIgRcdto .mbr-text,
.cid-sLHIgRcdto .mbr-section-btn {
  color: #f9f9f9;
}
.cid-sLHGL15TB9 {
  padding-top: 0px;
  padding-bottom: 110px;
  background-image: url("../../../assets/images/mbr-1-1920x1006.jpeg");
}
.cid-sLHGL15TB9 svg {
  overflow: hidden;
  vertical-align: middle;
  position: absolute;
  bottom: 0;
}
.cid-sLHGL15TB9 .wave {
  fill: #ffffff;
}
.cid-sLHStcmp71 {
  padding-top: 15px;
  padding-bottom: 30px;
  background: linear-gradient(0deg, #f9f9f9, #ffffff);
}
.cid-sLHStcmp71 .mbr-section {
  text-align: center;
  color: #fff;
}
.cid-sLHStcmp71 p {
  display: inline;
  font-size: 10px;
  color: #FFD100;
}
.cid-sLHStcmp71 .marquee-rtl {
  padding-right: 1%;
  padding-left: 1%;
}
.cid-sLHStcmp71 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-sLHLjq8TVK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sLHLjq8TVK .mbr-section-subtitle {
  color: #767676;
}
.cid-sLHLjq8TVK .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-sLHLa37cfJ {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sLHLa37cfJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sLHLa37cfJ .row {
  flex-direction: row-reverse;
}
.cid-sLHLa37cfJ img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2rem;
}
.cid-uAHfiCTWYl {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAHfiCTWYl .mbr-section-title {
  width: 100%;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-uAHfiCTWYl .mbr-text {
  color: #8c8c95;
  margin-bottom: 20px;
  text-align: center;
}
.cid-uAHfiCTWYl .button-align {
  text-align: center;
}
.cid-uAHfiCTWYl .margin {
  margin-right: 14px;
}
.cid-uAHfiCTWYl .mbr-section-btn {
  display: inline-block;
}
.cid-uAHfiCTWYl .container {
  max-width: 493px;
}
.cid-uAHfiCTWYl .btn {
  margin-top: 20px;
}
.cid-uAHfiCTWYl a.btn > span {
  margin-left: 0.5rem;
}
.cid-sLHGNi9L8Z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sLHGNi9L8Z .mbr-section-title {
  color: #232323;
}
.cid-sLHGo5ViAS {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sLHGo5ViAS .col-sm-6 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .cid-sLHGo5ViAS .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-sLHGo5ViAS .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sLHGo5ViAS .card-wrapper {
    padding: 0 1.5rem;
  }
}
@media (min-width: 767px) {
  .cid-sLHGo5ViAS .row {
    margin: 0;
  }
}
.cid-sLHGo5ViAS .container {
  border-top: 1px solid #ebebeb;
  padding-top: 2rem;
}
.cid-sLHBbG3K8V {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLHBbG3K8V .card-icon {
  font-size: 56px;
  color: #efefef;
  transition: color 0.3s;
}
.cid-sLHBbG3K8V .icon2 {
  color: #ffffff;
}
.cid-sLHBbG3K8V .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-sLHBbG3K8V p {
  font-weight: 400;
}
.cid-sLHBbG3K8V .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ffffff;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-sLHBbG3K8V .line2 {
  background: #ffffff;
}
.cid-sLHBbG3K8V .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #c21c1c;
}
.cid-sLHBbG3K8V .card-wrapper:hover .link-ico {
  background-color: #efefef;
  border-color: #efefef;
  color: white;
}
.cid-sLHBbG3K8V .card2 {
  background: #c21c1c;
}
.cid-sLHBbG3K8V .card-title,
.cid-sLHBbG3K8V .card-ico,
.cid-sLHBbG3K8V .line-wrap {
  text-align: center;
}
.cid-sLHBbG3K8V .mbr-text,
.cid-sLHBbG3K8V .card-link {
  text-align: center;
}
.cid-uCz82f2mOc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uCz82f2mOc .mbr-iconfont {
  color: #ed6436 !important;
  font-size: 1.4rem !important;
  padding-right: 1rem;
  display: block;
}
.cid-uCz82f2mOc .card-col {
  max-width: 450px;
  padding: 5rem 2rem;
}
.cid-uCz82f2mOc .row {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (min-width: 1700px) {
  .cid-uCz82f2mOc .card-col {
    margin-right: 20rem;
  }
}
.cid-uCz82f2mOc img {
  width: 100%;
}
.cid-uCz82f2mOc .svg-col {
  overflow: hidden;
  padding: 0;
}
.cid-uCz82f2mOc .container-fluid {
  position: relative;
}
.cid-uCz82f2mOc .google-map {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  min-height: 15rem;
}
.cid-uCz82f2mOc .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uCz82f2mOc .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uCz82f2mOc .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uCz82f2mOc .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-uCz82f2mOc .item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 0.6rem;
}
.cid-uCz82f2mOc .item h4 {
  margin: 0;
}
.cid-uCz82f2mOc .card-wrapper {
  background: #ffffff;
  padding: 1.4rem 1.4rem;
}
.cid-uCz82f2mOc p {
  font-weight: 400;
}
.cid-uCz82f2mOc .card-title,
.cid-uCz82f2mOc .card-img {
  color: #ed6436;
}
@media (max-width: 767px) {
  .cid-uCz82f2mOc .google-map {
    position: relative;
    height: 20rem;
    padding-top: 1rem;
  }
  .cid-uCz82f2mOc .card-col {
    padding: 2rem 1rem;
  }
}
.cid-uCz82f2mOc H3 {
  text-align: center;
}
.cid-tabaGggqep {
  padding-top: 3rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #141414;
}
.cid-tabaGggqep .item-wrapper {
  position: relative;
}
.cid-tabaGggqep .slide-content {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-tabaGggqep .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 18%;
  max-width: 596px;
}
.cid-tabaGggqep .embla__button--next,
.cid-tabaGggqep .embla__button--prev {
  display: flex;
}
.cid-tabaGggqep .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 14px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: transparent;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-tabaGggqep .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tabaGggqep .embla__button.embla__button--prev {
  left: 0;
  margin-left: -4rem;
}
.cid-tabaGggqep .embla__button.embla__button--next {
  right: 0;
  margin-right: -4rem;
}
.cid-tabaGggqep .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tabaGggqep .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tabaGggqep .embla {
  position: relative;
  width: 90%;
  margin: auto;
}
.cid-tabaGggqep .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-tabaGggqep .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tabaGggqep .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tabaGggqep .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tabaGggqep .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  display: flex;
  justify-content: center;
}
.cid-tabaGggqep img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-tabaGggqep .container {
  max-width: 1100px;
}
.cid-tabaGggqep .embla__viewport.container {
  overflow: hidden;
}
@media (max-width: 576px) {
  .cid-tabaGggqep .embla {
    width: 70%;
  }
  .cid-tabaGggqep .embla__slide {
    min-width: 150%;
  }
}
.cid-tabb79gZnh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #141414;
}
.cid-uAONJVSVyR .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-uAONJVSVyR .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uAONJVSVyR a {
  font-style: normal;
}
.cid-uAONJVSVyR .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uAONJVSVyR .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-uAONJVSVyR .nav-item:focus,
.cid-uAONJVSVyR .nav-link:focus {
  outline: none;
}
.cid-uAONJVSVyR .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-uAONJVSVyR .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uAONJVSVyR .menu-logo {
  margin-right: auto;
}
.cid-uAONJVSVyR .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uAONJVSVyR .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uAONJVSVyR .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uAONJVSVyR .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uAONJVSVyR .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uAONJVSVyR .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uAONJVSVyR .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uAONJVSVyR .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uAONJVSVyR .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAONJVSVyR .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uAONJVSVyR .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uAONJVSVyR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uAONJVSVyR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAONJVSVyR .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uAONJVSVyR .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAONJVSVyR .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uAONJVSVyR .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uAONJVSVyR .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uAONJVSVyR .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uAONJVSVyR .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uAONJVSVyR .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uAONJVSVyR .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uAONJVSVyR button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uAONJVSVyR button.navbar-toggler:focus {
  outline: none;
}
.cid-uAONJVSVyR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c21c1c;
}
.cid-uAONJVSVyR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uAONJVSVyR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uAONJVSVyR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uAONJVSVyR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uAONJVSVyR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAONJVSVyR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uAONJVSVyR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uAONJVSVyR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAONJVSVyR .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-uAONJVSVyR .collapsed .btn {
  display: flex;
}
.cid-uAONJVSVyR .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uAONJVSVyR .collapsed .navbar-collapse.collapsing,
.cid-uAONJVSVyR .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uAONJVSVyR .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uAONJVSVyR .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uAONJVSVyR .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uAONJVSVyR .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uAONJVSVyR .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uAONJVSVyR .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uAONJVSVyR .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uAONJVSVyR .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uAONJVSVyR .collapsed button.navbar-toggler {
  display: block;
}
.cid-uAONJVSVyR .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uAONJVSVyR .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uAONJVSVyR .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uAONJVSVyR .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uAONJVSVyR .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uAONJVSVyR .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uAONJVSVyR .navbar-expand {
    flex-direction: column;
  }
  .cid-uAONJVSVyR img {
    height: 3.8rem !important;
  }
  .cid-uAONJVSVyR .btn {
    display: flex;
  }
  .cid-uAONJVSVyR button.navbar-toggler {
    display: block;
  }
  .cid-uAONJVSVyR .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uAONJVSVyR .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uAONJVSVyR .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uAONJVSVyR .navbar-collapse.collapsing,
  .cid-uAONJVSVyR .navbar-collapse.show {
    display: block !important;
  }
  .cid-uAONJVSVyR .navbar-collapse.collapsing .navbar-nav,
  .cid-uAONJVSVyR .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uAONJVSVyR .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uAONJVSVyR .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uAONJVSVyR .navbar-collapse.collapsing .navbar-buttons,
  .cid-uAONJVSVyR .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uAONJVSVyR .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uAONJVSVyR .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uAONJVSVyR .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uAONJVSVyR .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uAONJVSVyR .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uAONJVSVyR .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uAONJVSVyR .menu-logo {
    flex-shrink: 0;
  }
}
.cid-uAONJVSVyR .navbar-collapse {
  flex-basis: auto;
}
.cid-uAONJVSVyR .nav-link:hover,
.cid-uAONJVSVyR .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uAONJW2McN {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uAONJW2McN .row {
  flex-direction: row-reverse;
}
.cid-uAONJW2McN .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #c21c1c;
}
.cid-uAONJW2McN .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-uAONJW2McN .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uAONJW2McN .mbr-section-title {
  color: #232323;
}
@media (min-width: 1400px) {
  .cid-uAONJW2McN .col-12 {
    padding: 0 2rem;
  }
  .cid-uAONJW2McN .row {
    margin: 0 -2rem;
  }
}
.cid-uAONJW2McN .mbr-text,
.cid-uAONJW2McN .mbr-section-btn {
  color: #232323;
}
.cid-uAONJWdZrU {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/production-1-1536x912.jpeg");
}
.cid-uAONJXdINe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/24.80-thumb-min-700x366.png");
}
.cid-uAONJXdINe .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uAONJXdINe .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uAONJXdINe .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uAONJXdINe .mbr-section-title {
  color: #f9f9f9;
}
.cid-uAONJXdINe .mbr-text,
.cid-uAONJXdINe .mbr-section-btn {
  color: #f9f9f9;
}
.cid-uAONJXnVXW {
  padding-top: 0px;
  padding-bottom: 80px;
  background-image: url("../../../assets/images/mbr-1-1920x1006.jpeg");
}
.cid-uAONJXnVXW svg {
  overflow: hidden;
  vertical-align: middle;
  position: absolute;
  bottom: 0;
}
.cid-uAONJXnVXW .wave {
  fill: #ffffff;
}
.cid-uAONJYOxf4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uAONJYOxf4 .card-icon {
  font-size: 56px;
  color: #efefef;
  transition: color 0.3s;
}
.cid-uAONJYOxf4 .icon2 {
  color: #ffffff;
}
.cid-uAONJYOxf4 .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-uAONJYOxf4 p {
  font-weight: 400;
}
.cid-uAONJYOxf4 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ffffff;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-uAONJYOxf4 .line2 {
  background: #ffffff;
}
.cid-uAONJYOxf4 .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #c21c1c;
}
.cid-uAONJYOxf4 .card-wrapper:hover .link-ico {
  background-color: #efefef;
  border-color: #efefef;
  color: white;
}
.cid-uAONJYOxf4 .card2 {
  background: #c21c1c;
}
.cid-uAONJYOxf4 .card-title,
.cid-uAONJYOxf4 .card-ico,
.cid-uAONJYOxf4 .line-wrap {
  text-align: center;
}
.cid-uAONJYOxf4 .mbr-text,
.cid-uAONJYOxf4 .card-link {
  text-align: center;
}
.cid-uAONJZ4ENa {
  padding-top: 3rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #141414;
}
.cid-uAONJZ4ENa .item-wrapper {
  position: relative;
}
.cid-uAONJZ4ENa .slide-content {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-uAONJZ4ENa .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 18%;
  max-width: 596px;
}
.cid-uAONJZ4ENa .embla__button--next,
.cid-uAONJZ4ENa .embla__button--prev {
  display: flex;
}
.cid-uAONJZ4ENa .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 14px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: transparent;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-uAONJZ4ENa .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uAONJZ4ENa .embla__button.embla__button--prev {
  left: 0;
  margin-left: -4rem;
}
.cid-uAONJZ4ENa .embla__button.embla__button--next {
  right: 0;
  margin-right: -4rem;
}
.cid-uAONJZ4ENa .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uAONJZ4ENa .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uAONJZ4ENa .embla {
  position: relative;
  width: 90%;
  margin: auto;
}
.cid-uAONJZ4ENa .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-uAONJZ4ENa .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uAONJZ4ENa .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uAONJZ4ENa .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uAONJZ4ENa .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  display: flex;
  justify-content: center;
}
.cid-uAONJZ4ENa img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-uAONJZ4ENa .container {
  max-width: 1100px;
}
.cid-uAONJZ4ENa .embla__viewport.container {
  overflow: hidden;
}
@media (max-width: 576px) {
  .cid-uAONJZ4ENa .embla {
    width: 70%;
  }
  .cid-uAONJZ4ENa .embla__slide {
    min-width: 150%;
  }
}
.cid-uAONJZI3xd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #141414;
}
.cid-uAOQ3OdGLu .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-uAOQ3OdGLu .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uAOQ3OdGLu a {
  font-style: normal;
}
.cid-uAOQ3OdGLu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uAOQ3OdGLu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-uAOQ3OdGLu .nav-item:focus,
.cid-uAOQ3OdGLu .nav-link:focus {
  outline: none;
}
.cid-uAOQ3OdGLu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-uAOQ3OdGLu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uAOQ3OdGLu .menu-logo {
  margin-right: auto;
}
.cid-uAOQ3OdGLu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uAOQ3OdGLu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uAOQ3OdGLu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uAOQ3OdGLu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uAOQ3OdGLu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uAOQ3OdGLu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uAOQ3OdGLu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uAOQ3OdGLu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uAOQ3OdGLu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAOQ3OdGLu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uAOQ3OdGLu .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uAOQ3OdGLu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uAOQ3OdGLu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAOQ3OdGLu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uAOQ3OdGLu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAOQ3OdGLu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uAOQ3OdGLu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uAOQ3OdGLu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uAOQ3OdGLu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uAOQ3OdGLu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uAOQ3OdGLu .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uAOQ3OdGLu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uAOQ3OdGLu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uAOQ3OdGLu button.navbar-toggler:focus {
  outline: none;
}
.cid-uAOQ3OdGLu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c21c1c;
}
.cid-uAOQ3OdGLu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uAOQ3OdGLu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uAOQ3OdGLu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uAOQ3OdGLu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uAOQ3OdGLu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAOQ3OdGLu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uAOQ3OdGLu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uAOQ3OdGLu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAOQ3OdGLu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-uAOQ3OdGLu .collapsed .btn {
  display: flex;
}
.cid-uAOQ3OdGLu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uAOQ3OdGLu .collapsed .navbar-collapse.collapsing,
.cid-uAOQ3OdGLu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uAOQ3OdGLu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uAOQ3OdGLu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uAOQ3OdGLu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uAOQ3OdGLu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uAOQ3OdGLu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uAOQ3OdGLu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uAOQ3OdGLu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uAOQ3OdGLu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uAOQ3OdGLu .collapsed button.navbar-toggler {
  display: block;
}
.cid-uAOQ3OdGLu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uAOQ3OdGLu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uAOQ3OdGLu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uAOQ3OdGLu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uAOQ3OdGLu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uAOQ3OdGLu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uAOQ3OdGLu .navbar-expand {
    flex-direction: column;
  }
  .cid-uAOQ3OdGLu img {
    height: 3.8rem !important;
  }
  .cid-uAOQ3OdGLu .btn {
    display: flex;
  }
  .cid-uAOQ3OdGLu button.navbar-toggler {
    display: block;
  }
  .cid-uAOQ3OdGLu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uAOQ3OdGLu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uAOQ3OdGLu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uAOQ3OdGLu .navbar-collapse.collapsing,
  .cid-uAOQ3OdGLu .navbar-collapse.show {
    display: block !important;
  }
  .cid-uAOQ3OdGLu .navbar-collapse.collapsing .navbar-nav,
  .cid-uAOQ3OdGLu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uAOQ3OdGLu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uAOQ3OdGLu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uAOQ3OdGLu .navbar-collapse.collapsing .navbar-buttons,
  .cid-uAOQ3OdGLu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uAOQ3OdGLu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uAOQ3OdGLu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uAOQ3OdGLu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uAOQ3OdGLu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uAOQ3OdGLu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uAOQ3OdGLu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uAOQ3OdGLu .menu-logo {
    flex-shrink: 0;
  }
}
.cid-uAOQ3OdGLu .navbar-collapse {
  flex-basis: auto;
}
.cid-uAOQ3OdGLu .nav-link:hover,
.cid-uAOQ3OdGLu .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uAOQ3OmQ6G {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uAOQ3OmQ6G .row {
  flex-direction: row-reverse;
}
.cid-uAOQ3OmQ6G .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #c21c1c;
}
.cid-uAOQ3OmQ6G .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-uAOQ3OmQ6G .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uAOQ3OmQ6G .mbr-section-title {
  color: #232323;
}
@media (min-width: 1400px) {
  .cid-uAOQ3OmQ6G .col-12 {
    padding: 0 2rem;
  }
  .cid-uAOQ3OmQ6G .row {
    margin: 0 -2rem;
  }
}
.cid-uAOQ3OmQ6G .mbr-text,
.cid-uAOQ3OmQ6G .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-uAOQ3OwY29 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/production-1-1536x912.jpeg");
}
.cid-uAOQ3OEMdN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/24.80-thumb-min-700x366.png");
}
.cid-uAOQ3OEMdN .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uAOQ3OEMdN .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uAOQ3OEMdN .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uAOQ3OEMdN .mbr-section-title {
  color: #f9f9f9;
}
.cid-uAOQ3OEMdN .mbr-text,
.cid-uAOQ3OEMdN .mbr-section-btn {
  color: #f9f9f9;
}
.cid-uAOQ3OMeov {
  padding-top: 0px;
  padding-bottom: 80px;
  background-image: url("../../../assets/images/mbr-1-1920x1006.jpeg");
}
.cid-uAOQ3OMeov svg {
  overflow: hidden;
  vertical-align: middle;
  position: absolute;
  bottom: 0;
}
.cid-uAOQ3OMeov .wave {
  fill: #ffffff;
}
.cid-uAOQ3OTkqx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uAOQ3OTkqx .card-icon {
  font-size: 56px;
  color: #efefef;
  transition: color 0.3s;
}
.cid-uAOQ3OTkqx .icon2 {
  color: #ffffff;
}
.cid-uAOQ3OTkqx .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-uAOQ3OTkqx p {
  font-weight: 400;
}
.cid-uAOQ3OTkqx .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ffffff;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-uAOQ3OTkqx .line2 {
  background: #ffffff;
}
.cid-uAOQ3OTkqx .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #c21c1c;
}
.cid-uAOQ3OTkqx .card-wrapper:hover .link-ico {
  background-color: #efefef;
  border-color: #efefef;
  color: white;
}
.cid-uAOQ3OTkqx .card2 {
  background: #c21c1c;
}
.cid-uAOQ3OTkqx .card-title,
.cid-uAOQ3OTkqx .card-ico,
.cid-uAOQ3OTkqx .line-wrap {
  text-align: center;
}
.cid-uAOQ3OTkqx .mbr-text,
.cid-uAOQ3OTkqx .card-link {
  text-align: center;
}
.cid-uAOQ3P62EZ {
  padding-top: 3rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #141414;
}
.cid-uAOQ3P62EZ .item-wrapper {
  position: relative;
}
.cid-uAOQ3P62EZ .slide-content {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-uAOQ3P62EZ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 18%;
  max-width: 596px;
}
.cid-uAOQ3P62EZ .embla__button--next,
.cid-uAOQ3P62EZ .embla__button--prev {
  display: flex;
}
.cid-uAOQ3P62EZ .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 14px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: transparent;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-uAOQ3P62EZ .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uAOQ3P62EZ .embla__button.embla__button--prev {
  left: 0;
  margin-left: -4rem;
}
.cid-uAOQ3P62EZ .embla__button.embla__button--next {
  right: 0;
  margin-right: -4rem;
}
.cid-uAOQ3P62EZ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uAOQ3P62EZ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uAOQ3P62EZ .embla {
  position: relative;
  width: 90%;
  margin: auto;
}
.cid-uAOQ3P62EZ .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-uAOQ3P62EZ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uAOQ3P62EZ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uAOQ3P62EZ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uAOQ3P62EZ .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  display: flex;
  justify-content: center;
}
.cid-uAOQ3P62EZ img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-uAOQ3P62EZ .container {
  max-width: 1100px;
}
.cid-uAOQ3P62EZ .embla__viewport.container {
  overflow: hidden;
}
@media (max-width: 576px) {
  .cid-uAOQ3P62EZ .embla {
    width: 70%;
  }
  .cid-uAOQ3P62EZ .embla__slide {
    min-width: 150%;
  }
}
.cid-uAOQ3PnmJ0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #141414;
}
.cid-uAOQHoNVsH .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-uAOQHoNVsH .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uAOQHoNVsH a {
  font-style: normal;
}
.cid-uAOQHoNVsH .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uAOQHoNVsH .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-uAOQHoNVsH .nav-item:focus,
.cid-uAOQHoNVsH .nav-link:focus {
  outline: none;
}
.cid-uAOQHoNVsH .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-uAOQHoNVsH .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uAOQHoNVsH .menu-logo {
  margin-right: auto;
}
.cid-uAOQHoNVsH .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uAOQHoNVsH .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uAOQHoNVsH .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uAOQHoNVsH .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uAOQHoNVsH .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uAOQHoNVsH .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uAOQHoNVsH .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uAOQHoNVsH .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uAOQHoNVsH .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAOQHoNVsH .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uAOQHoNVsH .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uAOQHoNVsH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uAOQHoNVsH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAOQHoNVsH .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uAOQHoNVsH .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAOQHoNVsH .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uAOQHoNVsH .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uAOQHoNVsH .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uAOQHoNVsH .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uAOQHoNVsH .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uAOQHoNVsH .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uAOQHoNVsH .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uAOQHoNVsH button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uAOQHoNVsH button.navbar-toggler:focus {
  outline: none;
}
.cid-uAOQHoNVsH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c21c1c;
}
.cid-uAOQHoNVsH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uAOQHoNVsH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uAOQHoNVsH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uAOQHoNVsH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uAOQHoNVsH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAOQHoNVsH nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uAOQHoNVsH nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uAOQHoNVsH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAOQHoNVsH .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-uAOQHoNVsH .collapsed .btn {
  display: flex;
}
.cid-uAOQHoNVsH .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uAOQHoNVsH .collapsed .navbar-collapse.collapsing,
.cid-uAOQHoNVsH .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uAOQHoNVsH .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uAOQHoNVsH .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uAOQHoNVsH .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uAOQHoNVsH .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uAOQHoNVsH .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uAOQHoNVsH .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uAOQHoNVsH .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uAOQHoNVsH .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uAOQHoNVsH .collapsed button.navbar-toggler {
  display: block;
}
.cid-uAOQHoNVsH .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uAOQHoNVsH .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uAOQHoNVsH .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uAOQHoNVsH .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uAOQHoNVsH .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uAOQHoNVsH .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uAOQHoNVsH .navbar-expand {
    flex-direction: column;
  }
  .cid-uAOQHoNVsH img {
    height: 3.8rem !important;
  }
  .cid-uAOQHoNVsH .btn {
    display: flex;
  }
  .cid-uAOQHoNVsH button.navbar-toggler {
    display: block;
  }
  .cid-uAOQHoNVsH .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uAOQHoNVsH .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uAOQHoNVsH .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uAOQHoNVsH .navbar-collapse.collapsing,
  .cid-uAOQHoNVsH .navbar-collapse.show {
    display: block !important;
  }
  .cid-uAOQHoNVsH .navbar-collapse.collapsing .navbar-nav,
  .cid-uAOQHoNVsH .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uAOQHoNVsH .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uAOQHoNVsH .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uAOQHoNVsH .navbar-collapse.collapsing .navbar-buttons,
  .cid-uAOQHoNVsH .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uAOQHoNVsH .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uAOQHoNVsH .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uAOQHoNVsH .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uAOQHoNVsH .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uAOQHoNVsH .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uAOQHoNVsH .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uAOQHoNVsH .menu-logo {
    flex-shrink: 0;
  }
}
.cid-uAOQHoNVsH .navbar-collapse {
  flex-basis: auto;
}
.cid-uAOQHoNVsH .nav-link:hover,
.cid-uAOQHoNVsH .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uAOQHoWAc9 {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uAOQHoWAc9 .row {
  flex-direction: row-reverse;
}
.cid-uAOQHoWAc9 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #c21c1c;
}
.cid-uAOQHoWAc9 .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-uAOQHoWAc9 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uAOQHoWAc9 .mbr-section-title {
  color: #232323;
}
@media (min-width: 1400px) {
  .cid-uAOQHoWAc9 .col-12 {
    padding: 0 2rem;
  }
  .cid-uAOQHoWAc9 .row {
    margin: 0 -2rem;
  }
}
.cid-uAOQHoWAc9 .mbr-text,
.cid-uAOQHoWAc9 .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-uAOQHp4Yva {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/production-1-1536x912.jpeg");
}
.cid-uAOQHpc3LX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/24.80-thumb-min-700x366.png");
}
.cid-uAOQHpc3LX .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uAOQHpc3LX .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uAOQHpc3LX .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uAOQHpc3LX .mbr-section-title {
  color: #f9f9f9;
}
.cid-uAOQHpc3LX .mbr-text,
.cid-uAOQHpc3LX .mbr-section-btn {
  color: #f9f9f9;
}
.cid-uAOQHplGxL {
  padding-top: 0px;
  padding-bottom: 80px;
  background-image: url("../../../assets/images/mbr-1-1920x1006.jpeg");
}
.cid-uAOQHplGxL svg {
  overflow: hidden;
  vertical-align: middle;
  position: absolute;
  bottom: 0;
}
.cid-uAOQHplGxL .wave {
  fill: #ffffff;
}
.cid-uAOQHpsazx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uAOQHpsazx .card-icon {
  font-size: 56px;
  color: #efefef;
  transition: color 0.3s;
}
.cid-uAOQHpsazx .icon2 {
  color: #ffffff;
}
.cid-uAOQHpsazx .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-uAOQHpsazx p {
  font-weight: 400;
}
.cid-uAOQHpsazx .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ffffff;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-uAOQHpsazx .line2 {
  background: #ffffff;
}
.cid-uAOQHpsazx .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #c21c1c;
}
.cid-uAOQHpsazx .card-wrapper:hover .link-ico {
  background-color: #efefef;
  border-color: #efefef;
  color: white;
}
.cid-uAOQHpsazx .card2 {
  background: #c21c1c;
}
.cid-uAOQHpsazx .card-title,
.cid-uAOQHpsazx .card-ico,
.cid-uAOQHpsazx .line-wrap {
  text-align: center;
}
.cid-uAOQHpsazx .mbr-text,
.cid-uAOQHpsazx .card-link {
  text-align: center;
}
.cid-uAOQHpFHqx {
  padding-top: 3rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #141414;
}
.cid-uAOQHpFHqx .item-wrapper {
  position: relative;
}
.cid-uAOQHpFHqx .slide-content {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-uAOQHpFHqx .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 18%;
  max-width: 596px;
}
.cid-uAOQHpFHqx .embla__button--next,
.cid-uAOQHpFHqx .embla__button--prev {
  display: flex;
}
.cid-uAOQHpFHqx .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 14px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: transparent;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-uAOQHpFHqx .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uAOQHpFHqx .embla__button.embla__button--prev {
  left: 0;
  margin-left: -4rem;
}
.cid-uAOQHpFHqx .embla__button.embla__button--next {
  right: 0;
  margin-right: -4rem;
}
.cid-uAOQHpFHqx .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uAOQHpFHqx .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uAOQHpFHqx .embla {
  position: relative;
  width: 90%;
  margin: auto;
}
.cid-uAOQHpFHqx .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-uAOQHpFHqx .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uAOQHpFHqx .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uAOQHpFHqx .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uAOQHpFHqx .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  display: flex;
  justify-content: center;
}
.cid-uAOQHpFHqx img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-uAOQHpFHqx .container {
  max-width: 1100px;
}
.cid-uAOQHpFHqx .embla__viewport.container {
  overflow: hidden;
}
@media (max-width: 576px) {
  .cid-uAOQHpFHqx .embla {
    width: 70%;
  }
  .cid-uAOQHpFHqx .embla__slide {
    min-width: 150%;
  }
}
.cid-uAOQHpW8X7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #141414;
}
.cid-uAOR3y7wzI .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-uAOR3y7wzI .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uAOR3y7wzI a {
  font-style: normal;
}
.cid-uAOR3y7wzI .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uAOR3y7wzI .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-uAOR3y7wzI .nav-item:focus,
.cid-uAOR3y7wzI .nav-link:focus {
  outline: none;
}
.cid-uAOR3y7wzI .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-uAOR3y7wzI .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uAOR3y7wzI .menu-logo {
  margin-right: auto;
}
.cid-uAOR3y7wzI .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uAOR3y7wzI .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uAOR3y7wzI .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uAOR3y7wzI .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uAOR3y7wzI .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uAOR3y7wzI .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uAOR3y7wzI .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uAOR3y7wzI .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uAOR3y7wzI .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAOR3y7wzI .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uAOR3y7wzI .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uAOR3y7wzI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uAOR3y7wzI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAOR3y7wzI .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uAOR3y7wzI .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAOR3y7wzI .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uAOR3y7wzI .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uAOR3y7wzI .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uAOR3y7wzI .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uAOR3y7wzI .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uAOR3y7wzI .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uAOR3y7wzI .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uAOR3y7wzI button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uAOR3y7wzI button.navbar-toggler:focus {
  outline: none;
}
.cid-uAOR3y7wzI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c21c1c;
}
.cid-uAOR3y7wzI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uAOR3y7wzI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uAOR3y7wzI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uAOR3y7wzI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uAOR3y7wzI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAOR3y7wzI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uAOR3y7wzI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uAOR3y7wzI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAOR3y7wzI .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-uAOR3y7wzI .collapsed .btn {
  display: flex;
}
.cid-uAOR3y7wzI .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uAOR3y7wzI .collapsed .navbar-collapse.collapsing,
.cid-uAOR3y7wzI .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uAOR3y7wzI .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uAOR3y7wzI .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uAOR3y7wzI .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uAOR3y7wzI .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uAOR3y7wzI .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uAOR3y7wzI .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uAOR3y7wzI .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uAOR3y7wzI .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uAOR3y7wzI .collapsed button.navbar-toggler {
  display: block;
}
.cid-uAOR3y7wzI .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uAOR3y7wzI .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uAOR3y7wzI .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uAOR3y7wzI .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uAOR3y7wzI .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uAOR3y7wzI .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uAOR3y7wzI .navbar-expand {
    flex-direction: column;
  }
  .cid-uAOR3y7wzI img {
    height: 3.8rem !important;
  }
  .cid-uAOR3y7wzI .btn {
    display: flex;
  }
  .cid-uAOR3y7wzI button.navbar-toggler {
    display: block;
  }
  .cid-uAOR3y7wzI .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uAOR3y7wzI .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uAOR3y7wzI .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uAOR3y7wzI .navbar-collapse.collapsing,
  .cid-uAOR3y7wzI .navbar-collapse.show {
    display: block !important;
  }
  .cid-uAOR3y7wzI .navbar-collapse.collapsing .navbar-nav,
  .cid-uAOR3y7wzI .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uAOR3y7wzI .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uAOR3y7wzI .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uAOR3y7wzI .navbar-collapse.collapsing .navbar-buttons,
  .cid-uAOR3y7wzI .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uAOR3y7wzI .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uAOR3y7wzI .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uAOR3y7wzI .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uAOR3y7wzI .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uAOR3y7wzI .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uAOR3y7wzI .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uAOR3y7wzI .menu-logo {
    flex-shrink: 0;
  }
}
.cid-uAOR3y7wzI .navbar-collapse {
  flex-basis: auto;
}
.cid-uAOR3y7wzI .nav-link:hover,
.cid-uAOR3y7wzI .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uAOR3ygjg7 {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uAOR3ygjg7 .row {
  flex-direction: row-reverse;
}
.cid-uAOR3ygjg7 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #c21c1c;
}
.cid-uAOR3ygjg7 .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-uAOR3ygjg7 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uAOR3ygjg7 .mbr-section-title {
  color: #232323;
}
@media (min-width: 1400px) {
  .cid-uAOR3ygjg7 .col-12 {
    padding: 0 2rem;
  }
  .cid-uAOR3ygjg7 .row {
    margin: 0 -2rem;
  }
}
.cid-uAOR3ygjg7 .mbr-text,
.cid-uAOR3ygjg7 .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-uAOR3yoYBt {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/production-1-1536x912.jpeg");
}
.cid-uAOR3yvTWG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/24.80-thumb-min-700x366.png");
}
.cid-uAOR3yvTWG .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uAOR3yvTWG .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uAOR3yvTWG .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uAOR3yvTWG .mbr-section-title {
  color: #f9f9f9;
}
.cid-uAOR3yvTWG .mbr-text,
.cid-uAOR3yvTWG .mbr-section-btn {
  color: #f9f9f9;
}
.cid-uAOR3yC70X {
  padding-top: 0px;
  padding-bottom: 80px;
  background-image: url("../../../assets/images/mbr-1-1920x1006.jpeg");
}
.cid-uAOR3yC70X svg {
  overflow: hidden;
  vertical-align: middle;
  position: absolute;
  bottom: 0;
}
.cid-uAOR3yC70X .wave {
  fill: #ffffff;
}
.cid-uAOR3yJktj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uAOR3yJktj .card-icon {
  font-size: 56px;
  color: #efefef;
  transition: color 0.3s;
}
.cid-uAOR3yJktj .icon2 {
  color: #ffffff;
}
.cid-uAOR3yJktj .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-uAOR3yJktj p {
  font-weight: 400;
}
.cid-uAOR3yJktj .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ffffff;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-uAOR3yJktj .line2 {
  background: #ffffff;
}
.cid-uAOR3yJktj .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #c21c1c;
}
.cid-uAOR3yJktj .card-wrapper:hover .link-ico {
  background-color: #efefef;
  border-color: #efefef;
  color: white;
}
.cid-uAOR3yJktj .card2 {
  background: #c21c1c;
}
.cid-uAOR3yJktj .card-title,
.cid-uAOR3yJktj .card-ico,
.cid-uAOR3yJktj .line-wrap {
  text-align: center;
}
.cid-uAOR3yJktj .mbr-text,
.cid-uAOR3yJktj .card-link {
  text-align: center;
}
.cid-uAOR3yV3uX {
  padding-top: 3rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #141414;
}
.cid-uAOR3yV3uX .item-wrapper {
  position: relative;
}
.cid-uAOR3yV3uX .slide-content {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-uAOR3yV3uX .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 18%;
  max-width: 596px;
}
.cid-uAOR3yV3uX .embla__button--next,
.cid-uAOR3yV3uX .embla__button--prev {
  display: flex;
}
.cid-uAOR3yV3uX .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 14px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: transparent;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-uAOR3yV3uX .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uAOR3yV3uX .embla__button.embla__button--prev {
  left: 0;
  margin-left: -4rem;
}
.cid-uAOR3yV3uX .embla__button.embla__button--next {
  right: 0;
  margin-right: -4rem;
}
.cid-uAOR3yV3uX .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uAOR3yV3uX .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uAOR3yV3uX .embla {
  position: relative;
  width: 90%;
  margin: auto;
}
.cid-uAOR3yV3uX .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-uAOR3yV3uX .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uAOR3yV3uX .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uAOR3yV3uX .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uAOR3yV3uX .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  display: flex;
  justify-content: center;
}
.cid-uAOR3yV3uX img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-uAOR3yV3uX .container {
  max-width: 1100px;
}
.cid-uAOR3yV3uX .embla__viewport.container {
  overflow: hidden;
}
@media (max-width: 576px) {
  .cid-uAOR3yV3uX .embla {
    width: 70%;
  }
  .cid-uAOR3yV3uX .embla__slide {
    min-width: 150%;
  }
}
.cid-uAOR3zbBFn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #141414;
}
.cid-uAORtP3YQY .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-uAORtP3YQY .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uAORtP3YQY a {
  font-style: normal;
}
.cid-uAORtP3YQY .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uAORtP3YQY .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-uAORtP3YQY .nav-item:focus,
.cid-uAORtP3YQY .nav-link:focus {
  outline: none;
}
.cid-uAORtP3YQY .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-uAORtP3YQY .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uAORtP3YQY .menu-logo {
  margin-right: auto;
}
.cid-uAORtP3YQY .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uAORtP3YQY .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uAORtP3YQY .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uAORtP3YQY .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uAORtP3YQY .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uAORtP3YQY .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uAORtP3YQY .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uAORtP3YQY .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uAORtP3YQY .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAORtP3YQY .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uAORtP3YQY .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uAORtP3YQY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uAORtP3YQY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAORtP3YQY .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uAORtP3YQY .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAORtP3YQY .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uAORtP3YQY .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uAORtP3YQY .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uAORtP3YQY .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uAORtP3YQY .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uAORtP3YQY .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uAORtP3YQY .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uAORtP3YQY button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uAORtP3YQY button.navbar-toggler:focus {
  outline: none;
}
.cid-uAORtP3YQY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c21c1c;
}
.cid-uAORtP3YQY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uAORtP3YQY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uAORtP3YQY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uAORtP3YQY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uAORtP3YQY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAORtP3YQY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uAORtP3YQY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uAORtP3YQY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAORtP3YQY .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-uAORtP3YQY .collapsed .btn {
  display: flex;
}
.cid-uAORtP3YQY .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uAORtP3YQY .collapsed .navbar-collapse.collapsing,
.cid-uAORtP3YQY .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uAORtP3YQY .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uAORtP3YQY .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uAORtP3YQY .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uAORtP3YQY .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uAORtP3YQY .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uAORtP3YQY .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uAORtP3YQY .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uAORtP3YQY .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uAORtP3YQY .collapsed button.navbar-toggler {
  display: block;
}
.cid-uAORtP3YQY .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uAORtP3YQY .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uAORtP3YQY .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uAORtP3YQY .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uAORtP3YQY .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uAORtP3YQY .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uAORtP3YQY .navbar-expand {
    flex-direction: column;
  }
  .cid-uAORtP3YQY img {
    height: 3.8rem !important;
  }
  .cid-uAORtP3YQY .btn {
    display: flex;
  }
  .cid-uAORtP3YQY button.navbar-toggler {
    display: block;
  }
  .cid-uAORtP3YQY .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uAORtP3YQY .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uAORtP3YQY .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uAORtP3YQY .navbar-collapse.collapsing,
  .cid-uAORtP3YQY .navbar-collapse.show {
    display: block !important;
  }
  .cid-uAORtP3YQY .navbar-collapse.collapsing .navbar-nav,
  .cid-uAORtP3YQY .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uAORtP3YQY .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uAORtP3YQY .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uAORtP3YQY .navbar-collapse.collapsing .navbar-buttons,
  .cid-uAORtP3YQY .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uAORtP3YQY .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uAORtP3YQY .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uAORtP3YQY .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uAORtP3YQY .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uAORtP3YQY .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uAORtP3YQY .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uAORtP3YQY .menu-logo {
    flex-shrink: 0;
  }
}
.cid-uAORtP3YQY .navbar-collapse {
  flex-basis: auto;
}
.cid-uAORtP3YQY .nav-link:hover,
.cid-uAORtP3YQY .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uAORtPdprD {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uAORtPdprD .row {
  flex-direction: row-reverse;
}
.cid-uAORtPdprD .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #c21c1c;
}
.cid-uAORtPdprD .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-uAORtPdprD .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uAORtPdprD .mbr-section-title {
  color: #232323;
}
@media (min-width: 1400px) {
  .cid-uAORtPdprD .col-12 {
    padding: 0 2rem;
  }
  .cid-uAORtPdprD .row {
    margin: 0 -2rem;
  }
}
.cid-uAORtPdprD .mbr-text,
.cid-uAORtPdprD .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-uAORtPmfUw {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/production-1-1536x912.jpeg");
}
.cid-uAORtPte1i {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/24.80-thumb-min-700x366.png");
}
.cid-uAORtPte1i .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uAORtPte1i .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uAORtPte1i .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uAORtPte1i .mbr-section-title {
  color: #f9f9f9;
}
.cid-uAORtPte1i .mbr-text,
.cid-uAORtPte1i .mbr-section-btn {
  color: #f9f9f9;
}
.cid-uAORtPB49s {
  padding-top: 0px;
  padding-bottom: 80px;
  background-image: url("../../../assets/images/mbr-1-1920x1006.jpeg");
}
.cid-uAORtPB49s svg {
  overflow: hidden;
  vertical-align: middle;
  position: absolute;
  bottom: 0;
}
.cid-uAORtPB49s .wave {
  fill: #ffffff;
}
.cid-uAORtPIehX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uAORtPIehX .card-icon {
  font-size: 56px;
  color: #efefef;
  transition: color 0.3s;
}
.cid-uAORtPIehX .icon2 {
  color: #ffffff;
}
.cid-uAORtPIehX .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-uAORtPIehX p {
  font-weight: 400;
}
.cid-uAORtPIehX .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ffffff;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-uAORtPIehX .line2 {
  background: #ffffff;
}
.cid-uAORtPIehX .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #c21c1c;
}
.cid-uAORtPIehX .card-wrapper:hover .link-ico {
  background-color: #efefef;
  border-color: #efefef;
  color: white;
}
.cid-uAORtPIehX .card2 {
  background: #c21c1c;
}
.cid-uAORtPIehX .card-title,
.cid-uAORtPIehX .card-ico,
.cid-uAORtPIehX .line-wrap {
  text-align: center;
}
.cid-uAORtPIehX .mbr-text,
.cid-uAORtPIehX .card-link {
  text-align: center;
}
.cid-uAORtPW7r1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #141414;
}
.cid-uAORtPW7r1 .item-wrapper {
  position: relative;
}
.cid-uAORtPW7r1 .slide-content {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-uAORtPW7r1 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 18%;
  max-width: 596px;
}
.cid-uAORtPW7r1 .embla__button--next,
.cid-uAORtPW7r1 .embla__button--prev {
  display: flex;
}
.cid-uAORtPW7r1 .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 14px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: transparent;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-uAORtPW7r1 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uAORtPW7r1 .embla__button.embla__button--prev {
  left: 0;
  margin-left: -4rem;
}
.cid-uAORtPW7r1 .embla__button.embla__button--next {
  right: 0;
  margin-right: -4rem;
}
.cid-uAORtPW7r1 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uAORtPW7r1 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uAORtPW7r1 .embla {
  position: relative;
  width: 90%;
  margin: auto;
}
.cid-uAORtPW7r1 .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-uAORtPW7r1 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uAORtPW7r1 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uAORtPW7r1 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uAORtPW7r1 .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  display: flex;
  justify-content: center;
}
.cid-uAORtPW7r1 img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-uAORtPW7r1 .container {
  max-width: 1100px;
}
.cid-uAORtPW7r1 .embla__viewport.container {
  overflow: hidden;
}
@media (max-width: 576px) {
  .cid-uAORtPW7r1 .embla {
    width: 70%;
  }
  .cid-uAORtPW7r1 .embla__slide {
    min-width: 150%;
  }
}
.cid-uAORtQcpjY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #141414;
}
.cid-uAORVQo0Os .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-uAORVQo0Os .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uAORVQo0Os a {
  font-style: normal;
}
.cid-uAORVQo0Os .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uAORVQo0Os .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-uAORVQo0Os .nav-item:focus,
.cid-uAORVQo0Os .nav-link:focus {
  outline: none;
}
.cid-uAORVQo0Os .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-uAORVQo0Os .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uAORVQo0Os .menu-logo {
  margin-right: auto;
}
.cid-uAORVQo0Os .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uAORVQo0Os .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uAORVQo0Os .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uAORVQo0Os .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uAORVQo0Os .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uAORVQo0Os .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uAORVQo0Os .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uAORVQo0Os .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uAORVQo0Os .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAORVQo0Os .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uAORVQo0Os .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uAORVQo0Os .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uAORVQo0Os .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAORVQo0Os .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uAORVQo0Os .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAORVQo0Os .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uAORVQo0Os .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uAORVQo0Os .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uAORVQo0Os .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uAORVQo0Os .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uAORVQo0Os .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uAORVQo0Os .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uAORVQo0Os button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uAORVQo0Os button.navbar-toggler:focus {
  outline: none;
}
.cid-uAORVQo0Os button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c21c1c;
}
.cid-uAORVQo0Os button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uAORVQo0Os button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uAORVQo0Os button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uAORVQo0Os button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uAORVQo0Os nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAORVQo0Os nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uAORVQo0Os nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uAORVQo0Os nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAORVQo0Os .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-uAORVQo0Os .collapsed .btn {
  display: flex;
}
.cid-uAORVQo0Os .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uAORVQo0Os .collapsed .navbar-collapse.collapsing,
.cid-uAORVQo0Os .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uAORVQo0Os .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uAORVQo0Os .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uAORVQo0Os .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uAORVQo0Os .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uAORVQo0Os .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uAORVQo0Os .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uAORVQo0Os .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uAORVQo0Os .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uAORVQo0Os .collapsed button.navbar-toggler {
  display: block;
}
.cid-uAORVQo0Os .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uAORVQo0Os .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uAORVQo0Os .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uAORVQo0Os .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uAORVQo0Os .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uAORVQo0Os .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uAORVQo0Os .navbar-expand {
    flex-direction: column;
  }
  .cid-uAORVQo0Os img {
    height: 3.8rem !important;
  }
  .cid-uAORVQo0Os .btn {
    display: flex;
  }
  .cid-uAORVQo0Os button.navbar-toggler {
    display: block;
  }
  .cid-uAORVQo0Os .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uAORVQo0Os .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uAORVQo0Os .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uAORVQo0Os .navbar-collapse.collapsing,
  .cid-uAORVQo0Os .navbar-collapse.show {
    display: block !important;
  }
  .cid-uAORVQo0Os .navbar-collapse.collapsing .navbar-nav,
  .cid-uAORVQo0Os .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uAORVQo0Os .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uAORVQo0Os .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uAORVQo0Os .navbar-collapse.collapsing .navbar-buttons,
  .cid-uAORVQo0Os .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uAORVQo0Os .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uAORVQo0Os .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uAORVQo0Os .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uAORVQo0Os .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uAORVQo0Os .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uAORVQo0Os .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uAORVQo0Os .menu-logo {
    flex-shrink: 0;
  }
}
.cid-uAORVQo0Os .navbar-collapse {
  flex-basis: auto;
}
.cid-uAORVQo0Os .nav-link:hover,
.cid-uAORVQo0Os .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uAORVQxEcQ {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uAORVQxEcQ .row {
  flex-direction: row-reverse;
}
.cid-uAORVQxEcQ .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #c21c1c;
}
.cid-uAORVQxEcQ .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-uAORVQxEcQ .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uAORVQxEcQ .mbr-section-title {
  color: #232323;
}
@media (min-width: 1400px) {
  .cid-uAORVQxEcQ .col-12 {
    padding: 0 2rem;
  }
  .cid-uAORVQxEcQ .row {
    margin: 0 -2rem;
  }
}
.cid-uAORVQxEcQ .mbr-text,
.cid-uAORVQxEcQ .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-uAORVQGGce {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/production-1-1536x912.jpeg");
}
.cid-uAORVQPpEr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/24.80-thumb-min-700x366.png");
}
.cid-uAORVQPpEr .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uAORVQPpEr .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uAORVQPpEr .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uAORVQPpEr .mbr-section-title {
  color: #f9f9f9;
}
.cid-uAORVQPpEr .mbr-text,
.cid-uAORVQPpEr .mbr-section-btn {
  color: #f9f9f9;
}
.cid-uAORVQXz0J {
  padding-top: 0px;
  padding-bottom: 80px;
  background-image: url("../../../assets/images/mbr-1-1920x1006.jpeg");
}
.cid-uAORVQXz0J svg {
  overflow: hidden;
  vertical-align: middle;
  position: absolute;
  bottom: 0;
}
.cid-uAORVQXz0J .wave {
  fill: #ffffff;
}
.cid-uAORVR5l4B {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uAORVR5l4B .card-icon {
  font-size: 56px;
  color: #efefef;
  transition: color 0.3s;
}
.cid-uAORVR5l4B .icon2 {
  color: #ffffff;
}
.cid-uAORVR5l4B .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-uAORVR5l4B p {
  font-weight: 400;
}
.cid-uAORVR5l4B .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ffffff;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-uAORVR5l4B .line2 {
  background: #ffffff;
}
.cid-uAORVR5l4B .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #c21c1c;
}
.cid-uAORVR5l4B .card-wrapper:hover .link-ico {
  background-color: #efefef;
  border-color: #efefef;
  color: white;
}
.cid-uAORVR5l4B .card2 {
  background: #c21c1c;
}
.cid-uAORVR5l4B .card-title,
.cid-uAORVR5l4B .card-ico,
.cid-uAORVR5l4B .line-wrap {
  text-align: center;
}
.cid-uAORVR5l4B .mbr-text,
.cid-uAORVR5l4B .card-link {
  text-align: center;
}
.cid-uAORVRicQw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #141414;
}
.cid-uAORVRicQw .item-wrapper {
  position: relative;
}
.cid-uAORVRicQw .slide-content {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-uAORVRicQw .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 18%;
  max-width: 596px;
}
.cid-uAORVRicQw .embla__button--next,
.cid-uAORVRicQw .embla__button--prev {
  display: flex;
}
.cid-uAORVRicQw .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 14px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: transparent;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-uAORVRicQw .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uAORVRicQw .embla__button.embla__button--prev {
  left: 0;
  margin-left: -4rem;
}
.cid-uAORVRicQw .embla__button.embla__button--next {
  right: 0;
  margin-right: -4rem;
}
.cid-uAORVRicQw .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uAORVRicQw .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uAORVRicQw .embla {
  position: relative;
  width: 90%;
  margin: auto;
}
.cid-uAORVRicQw .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-uAORVRicQw .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uAORVRicQw .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uAORVRicQw .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uAORVRicQw .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  display: flex;
  justify-content: center;
}
.cid-uAORVRicQw img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-uAORVRicQw .container {
  max-width: 1100px;
}
.cid-uAORVRicQw .embla__viewport.container {
  overflow: hidden;
}
@media (max-width: 576px) {
  .cid-uAORVRicQw .embla {
    width: 70%;
  }
  .cid-uAORVRicQw .embla__slide {
    min-width: 150%;
  }
}
.cid-uAORVRyqTZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #141414;
}
.cid-uAOSjlB53A .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-uAOSjlB53A .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uAOSjlB53A a {
  font-style: normal;
}
.cid-uAOSjlB53A .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uAOSjlB53A .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-uAOSjlB53A .nav-item:focus,
.cid-uAOSjlB53A .nav-link:focus {
  outline: none;
}
.cid-uAOSjlB53A .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-uAOSjlB53A .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uAOSjlB53A .menu-logo {
  margin-right: auto;
}
.cid-uAOSjlB53A .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uAOSjlB53A .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uAOSjlB53A .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uAOSjlB53A .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uAOSjlB53A .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uAOSjlB53A .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uAOSjlB53A .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uAOSjlB53A .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uAOSjlB53A .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAOSjlB53A .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uAOSjlB53A .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uAOSjlB53A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uAOSjlB53A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAOSjlB53A .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uAOSjlB53A .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAOSjlB53A .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uAOSjlB53A .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uAOSjlB53A .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uAOSjlB53A .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uAOSjlB53A .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uAOSjlB53A .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uAOSjlB53A .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uAOSjlB53A button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uAOSjlB53A button.navbar-toggler:focus {
  outline: none;
}
.cid-uAOSjlB53A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c21c1c;
}
.cid-uAOSjlB53A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uAOSjlB53A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uAOSjlB53A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uAOSjlB53A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uAOSjlB53A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAOSjlB53A nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uAOSjlB53A nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uAOSjlB53A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAOSjlB53A .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-uAOSjlB53A .collapsed .btn {
  display: flex;
}
.cid-uAOSjlB53A .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uAOSjlB53A .collapsed .navbar-collapse.collapsing,
.cid-uAOSjlB53A .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uAOSjlB53A .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uAOSjlB53A .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uAOSjlB53A .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uAOSjlB53A .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uAOSjlB53A .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uAOSjlB53A .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uAOSjlB53A .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uAOSjlB53A .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uAOSjlB53A .collapsed button.navbar-toggler {
  display: block;
}
.cid-uAOSjlB53A .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uAOSjlB53A .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uAOSjlB53A .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uAOSjlB53A .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uAOSjlB53A .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uAOSjlB53A .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uAOSjlB53A .navbar-expand {
    flex-direction: column;
  }
  .cid-uAOSjlB53A img {
    height: 3.8rem !important;
  }
  .cid-uAOSjlB53A .btn {
    display: flex;
  }
  .cid-uAOSjlB53A button.navbar-toggler {
    display: block;
  }
  .cid-uAOSjlB53A .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uAOSjlB53A .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uAOSjlB53A .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uAOSjlB53A .navbar-collapse.collapsing,
  .cid-uAOSjlB53A .navbar-collapse.show {
    display: block !important;
  }
  .cid-uAOSjlB53A .navbar-collapse.collapsing .navbar-nav,
  .cid-uAOSjlB53A .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uAOSjlB53A .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uAOSjlB53A .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uAOSjlB53A .navbar-collapse.collapsing .navbar-buttons,
  .cid-uAOSjlB53A .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uAOSjlB53A .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uAOSjlB53A .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uAOSjlB53A .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uAOSjlB53A .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uAOSjlB53A .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uAOSjlB53A .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uAOSjlB53A .menu-logo {
    flex-shrink: 0;
  }
}
.cid-uAOSjlB53A .navbar-collapse {
  flex-basis: auto;
}
.cid-uAOSjlB53A .nav-link:hover,
.cid-uAOSjlB53A .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uAOSjlJHJk {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uAOSjlJHJk .row {
  flex-direction: row-reverse;
}
.cid-uAOSjlJHJk .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #c21c1c;
}
.cid-uAOSjlJHJk .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-uAOSjlJHJk .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uAOSjlJHJk .mbr-section-title {
  color: #232323;
}
@media (min-width: 1400px) {
  .cid-uAOSjlJHJk .col-12 {
    padding: 0 2rem;
  }
  .cid-uAOSjlJHJk .row {
    margin: 0 -2rem;
  }
}
.cid-uAOSjlJHJk .mbr-text,
.cid-uAOSjlJHJk .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-uAOSjlROs7 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/production-1-1536x912.jpeg");
}
.cid-uAOSjlY8Hp {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/24.80-thumb-min-700x366.png");
}
.cid-uAOSjlY8Hp .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uAOSjlY8Hp .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uAOSjlY8Hp .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uAOSjlY8Hp .mbr-section-title {
  color: #f9f9f9;
}
.cid-uAOSjlY8Hp .mbr-text,
.cid-uAOSjlY8Hp .mbr-section-btn {
  color: #f9f9f9;
}
.cid-uAOSjm6k7q {
  padding-top: 0px;
  padding-bottom: 80px;
  background-image: url("../../../assets/images/mbr-1-1920x1006.jpeg");
}
.cid-uAOSjm6k7q svg {
  overflow: hidden;
  vertical-align: middle;
  position: absolute;
  bottom: 0;
}
.cid-uAOSjm6k7q .wave {
  fill: #ffffff;
}
.cid-uAOSjmd6mh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uAOSjmd6mh .card-icon {
  font-size: 56px;
  color: #efefef;
  transition: color 0.3s;
}
.cid-uAOSjmd6mh .icon2 {
  color: #ffffff;
}
.cid-uAOSjmd6mh .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-uAOSjmd6mh p {
  font-weight: 400;
}
.cid-uAOSjmd6mh .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ffffff;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-uAOSjmd6mh .line2 {
  background: #ffffff;
}
.cid-uAOSjmd6mh .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #c21c1c;
}
.cid-uAOSjmd6mh .card-wrapper:hover .link-ico {
  background-color: #efefef;
  border-color: #efefef;
  color: white;
}
.cid-uAOSjmd6mh .card2 {
  background: #c21c1c;
}
.cid-uAOSjmd6mh .card-title,
.cid-uAOSjmd6mh .card-ico,
.cid-uAOSjmd6mh .line-wrap {
  text-align: center;
}
.cid-uAOSjmd6mh .mbr-text,
.cid-uAOSjmd6mh .card-link {
  text-align: center;
}
.cid-uAOSjmpjNO {
  padding-top: 3rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #141414;
}
.cid-uAOSjmpjNO .item-wrapper {
  position: relative;
}
.cid-uAOSjmpjNO .slide-content {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-uAOSjmpjNO .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 18%;
  max-width: 596px;
}
.cid-uAOSjmpjNO .embla__button--next,
.cid-uAOSjmpjNO .embla__button--prev {
  display: flex;
}
.cid-uAOSjmpjNO .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 14px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: transparent;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-uAOSjmpjNO .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uAOSjmpjNO .embla__button.embla__button--prev {
  left: 0;
  margin-left: -4rem;
}
.cid-uAOSjmpjNO .embla__button.embla__button--next {
  right: 0;
  margin-right: -4rem;
}
.cid-uAOSjmpjNO .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uAOSjmpjNO .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uAOSjmpjNO .embla {
  position: relative;
  width: 90%;
  margin: auto;
}
.cid-uAOSjmpjNO .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-uAOSjmpjNO .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uAOSjmpjNO .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uAOSjmpjNO .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uAOSjmpjNO .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  display: flex;
  justify-content: center;
}
.cid-uAOSjmpjNO img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-uAOSjmpjNO .container {
  max-width: 1100px;
}
.cid-uAOSjmpjNO .embla__viewport.container {
  overflow: hidden;
}
@media (max-width: 576px) {
  .cid-uAOSjmpjNO .embla {
    width: 70%;
  }
  .cid-uAOSjmpjNO .embla__slide {
    min-width: 150%;
  }
}
.cid-uAOSjmFUZW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #141414;
}
.cid-uAOSFEGaTO .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-uAOSFEGaTO .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uAOSFEGaTO a {
  font-style: normal;
}
.cid-uAOSFEGaTO .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uAOSFEGaTO .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-uAOSFEGaTO .nav-item:focus,
.cid-uAOSFEGaTO .nav-link:focus {
  outline: none;
}
.cid-uAOSFEGaTO .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-uAOSFEGaTO .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uAOSFEGaTO .menu-logo {
  margin-right: auto;
}
.cid-uAOSFEGaTO .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uAOSFEGaTO .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uAOSFEGaTO .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uAOSFEGaTO .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uAOSFEGaTO .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uAOSFEGaTO .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uAOSFEGaTO .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uAOSFEGaTO .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uAOSFEGaTO .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAOSFEGaTO .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uAOSFEGaTO .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uAOSFEGaTO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uAOSFEGaTO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAOSFEGaTO .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uAOSFEGaTO .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAOSFEGaTO .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uAOSFEGaTO .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uAOSFEGaTO .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uAOSFEGaTO .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uAOSFEGaTO .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uAOSFEGaTO .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uAOSFEGaTO .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uAOSFEGaTO button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uAOSFEGaTO button.navbar-toggler:focus {
  outline: none;
}
.cid-uAOSFEGaTO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c21c1c;
}
.cid-uAOSFEGaTO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uAOSFEGaTO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uAOSFEGaTO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uAOSFEGaTO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uAOSFEGaTO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAOSFEGaTO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uAOSFEGaTO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uAOSFEGaTO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAOSFEGaTO .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-uAOSFEGaTO .collapsed .btn {
  display: flex;
}
.cid-uAOSFEGaTO .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uAOSFEGaTO .collapsed .navbar-collapse.collapsing,
.cid-uAOSFEGaTO .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uAOSFEGaTO .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uAOSFEGaTO .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uAOSFEGaTO .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uAOSFEGaTO .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uAOSFEGaTO .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uAOSFEGaTO .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uAOSFEGaTO .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uAOSFEGaTO .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uAOSFEGaTO .collapsed button.navbar-toggler {
  display: block;
}
.cid-uAOSFEGaTO .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uAOSFEGaTO .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uAOSFEGaTO .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uAOSFEGaTO .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uAOSFEGaTO .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uAOSFEGaTO .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uAOSFEGaTO .navbar-expand {
    flex-direction: column;
  }
  .cid-uAOSFEGaTO img {
    height: 3.8rem !important;
  }
  .cid-uAOSFEGaTO .btn {
    display: flex;
  }
  .cid-uAOSFEGaTO button.navbar-toggler {
    display: block;
  }
  .cid-uAOSFEGaTO .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uAOSFEGaTO .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uAOSFEGaTO .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uAOSFEGaTO .navbar-collapse.collapsing,
  .cid-uAOSFEGaTO .navbar-collapse.show {
    display: block !important;
  }
  .cid-uAOSFEGaTO .navbar-collapse.collapsing .navbar-nav,
  .cid-uAOSFEGaTO .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uAOSFEGaTO .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uAOSFEGaTO .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uAOSFEGaTO .navbar-collapse.collapsing .navbar-buttons,
  .cid-uAOSFEGaTO .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uAOSFEGaTO .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uAOSFEGaTO .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uAOSFEGaTO .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uAOSFEGaTO .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uAOSFEGaTO .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uAOSFEGaTO .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uAOSFEGaTO .menu-logo {
    flex-shrink: 0;
  }
}
.cid-uAOSFEGaTO .navbar-collapse {
  flex-basis: auto;
}
.cid-uAOSFEGaTO .nav-link:hover,
.cid-uAOSFEGaTO .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uAOSFEQhwo {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uAOSFEQhwo .row {
  flex-direction: row-reverse;
}
.cid-uAOSFEQhwo .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #c21c1c;
}
.cid-uAOSFEQhwo .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-uAOSFEQhwo .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uAOSFEQhwo .mbr-section-title {
  color: #232323;
}
@media (min-width: 1400px) {
  .cid-uAOSFEQhwo .col-12 {
    padding: 0 2rem;
  }
  .cid-uAOSFEQhwo .row {
    margin: 0 -2rem;
  }
}
.cid-uAOSFEQhwo .mbr-text,
.cid-uAOSFEQhwo .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-uAOSFEZq0d {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/production-1-1536x912.jpeg");
}
.cid-uAOSFF7oRW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/24.80-thumb-min-700x366.png");
}
.cid-uAOSFF7oRW .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uAOSFF7oRW .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uAOSFF7oRW .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uAOSFF7oRW .mbr-section-title {
  color: #f9f9f9;
}
.cid-uAOSFF7oRW .mbr-text,
.cid-uAOSFF7oRW .mbr-section-btn {
  color: #f9f9f9;
}
.cid-uAOSFFf7Wj {
  padding-top: 0px;
  padding-bottom: 80px;
  background-image: url("../../../assets/images/mbr-1-1920x1006.jpeg");
}
.cid-uAOSFFf7Wj svg {
  overflow: hidden;
  vertical-align: middle;
  position: absolute;
  bottom: 0;
}
.cid-uAOSFFf7Wj .wave {
  fill: #ffffff;
}
.cid-uAOSFFmeAv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uAOSFFmeAv .card-icon {
  font-size: 56px;
  color: #efefef;
  transition: color 0.3s;
}
.cid-uAOSFFmeAv .icon2 {
  color: #ffffff;
}
.cid-uAOSFFmeAv .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-uAOSFFmeAv p {
  font-weight: 400;
}
.cid-uAOSFFmeAv .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ffffff;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-uAOSFFmeAv .line2 {
  background: #ffffff;
}
.cid-uAOSFFmeAv .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #c21c1c;
}
.cid-uAOSFFmeAv .card-wrapper:hover .link-ico {
  background-color: #efefef;
  border-color: #efefef;
  color: white;
}
.cid-uAOSFFmeAv .card2 {
  background: #c21c1c;
}
.cid-uAOSFFmeAv .card-title,
.cid-uAOSFFmeAv .card-ico,
.cid-uAOSFFmeAv .line-wrap {
  text-align: center;
}
.cid-uAOSFFmeAv .mbr-text,
.cid-uAOSFFmeAv .card-link {
  text-align: center;
}
.cid-uAOSFFygjj {
  padding-top: 3rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #141414;
}
.cid-uAOSFFygjj .item-wrapper {
  position: relative;
}
.cid-uAOSFFygjj .slide-content {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-uAOSFFygjj .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 18%;
  max-width: 596px;
}
.cid-uAOSFFygjj .embla__button--next,
.cid-uAOSFFygjj .embla__button--prev {
  display: flex;
}
.cid-uAOSFFygjj .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 14px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: transparent;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-uAOSFFygjj .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uAOSFFygjj .embla__button.embla__button--prev {
  left: 0;
  margin-left: -4rem;
}
.cid-uAOSFFygjj .embla__button.embla__button--next {
  right: 0;
  margin-right: -4rem;
}
.cid-uAOSFFygjj .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uAOSFFygjj .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uAOSFFygjj .embla {
  position: relative;
  width: 90%;
  margin: auto;
}
.cid-uAOSFFygjj .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-uAOSFFygjj .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uAOSFFygjj .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uAOSFFygjj .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uAOSFFygjj .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  display: flex;
  justify-content: center;
}
.cid-uAOSFFygjj img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-uAOSFFygjj .container {
  max-width: 1100px;
}
.cid-uAOSFFygjj .embla__viewport.container {
  overflow: hidden;
}
@media (max-width: 576px) {
  .cid-uAOSFFygjj .embla {
    width: 70%;
  }
  .cid-uAOSFFygjj .embla__slide {
    min-width: 150%;
  }
}
.cid-uAOSFFPiVe {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #141414;
}
.cid-uAOSVRqtp2 .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-uAOSVRqtp2 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uAOSVRqtp2 a {
  font-style: normal;
}
.cid-uAOSVRqtp2 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uAOSVRqtp2 .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-uAOSVRqtp2 .nav-item:focus,
.cid-uAOSVRqtp2 .nav-link:focus {
  outline: none;
}
.cid-uAOSVRqtp2 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-uAOSVRqtp2 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uAOSVRqtp2 .menu-logo {
  margin-right: auto;
}
.cid-uAOSVRqtp2 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-uAOSVRqtp2 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uAOSVRqtp2 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uAOSVRqtp2 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uAOSVRqtp2 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uAOSVRqtp2 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uAOSVRqtp2 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uAOSVRqtp2 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uAOSVRqtp2 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uAOSVRqtp2 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uAOSVRqtp2 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uAOSVRqtp2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uAOSVRqtp2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAOSVRqtp2 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uAOSVRqtp2 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAOSVRqtp2 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uAOSVRqtp2 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uAOSVRqtp2 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uAOSVRqtp2 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uAOSVRqtp2 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uAOSVRqtp2 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uAOSVRqtp2 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uAOSVRqtp2 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uAOSVRqtp2 button.navbar-toggler:focus {
  outline: none;
}
.cid-uAOSVRqtp2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c21c1c;
}
.cid-uAOSVRqtp2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uAOSVRqtp2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uAOSVRqtp2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uAOSVRqtp2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uAOSVRqtp2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAOSVRqtp2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uAOSVRqtp2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uAOSVRqtp2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uAOSVRqtp2 .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-uAOSVRqtp2 .collapsed .btn {
  display: flex;
}
.cid-uAOSVRqtp2 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uAOSVRqtp2 .collapsed .navbar-collapse.collapsing,
.cid-uAOSVRqtp2 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uAOSVRqtp2 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uAOSVRqtp2 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uAOSVRqtp2 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uAOSVRqtp2 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uAOSVRqtp2 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uAOSVRqtp2 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uAOSVRqtp2 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uAOSVRqtp2 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uAOSVRqtp2 .collapsed button.navbar-toggler {
  display: block;
}
.cid-uAOSVRqtp2 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uAOSVRqtp2 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uAOSVRqtp2 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uAOSVRqtp2 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uAOSVRqtp2 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uAOSVRqtp2 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-uAOSVRqtp2 .navbar-expand {
    flex-direction: column;
  }
  .cid-uAOSVRqtp2 img {
    height: 3.8rem !important;
  }
  .cid-uAOSVRqtp2 .btn {
    display: flex;
  }
  .cid-uAOSVRqtp2 button.navbar-toggler {
    display: block;
  }
  .cid-uAOSVRqtp2 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uAOSVRqtp2 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uAOSVRqtp2 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uAOSVRqtp2 .navbar-collapse.collapsing,
  .cid-uAOSVRqtp2 .navbar-collapse.show {
    display: block !important;
  }
  .cid-uAOSVRqtp2 .navbar-collapse.collapsing .navbar-nav,
  .cid-uAOSVRqtp2 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uAOSVRqtp2 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uAOSVRqtp2 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uAOSVRqtp2 .navbar-collapse.collapsing .navbar-buttons,
  .cid-uAOSVRqtp2 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uAOSVRqtp2 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uAOSVRqtp2 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uAOSVRqtp2 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uAOSVRqtp2 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uAOSVRqtp2 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uAOSVRqtp2 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uAOSVRqtp2 .menu-logo {
    flex-shrink: 0;
  }
}
.cid-uAOSVRqtp2 .navbar-collapse {
  flex-basis: auto;
}
.cid-uAOSVRqtp2 .nav-link:hover,
.cid-uAOSVRqtp2 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uAOSVRzq8t {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uAOSVRzq8t .row {
  flex-direction: row-reverse;
}
.cid-uAOSVRzq8t .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #c21c1c;
}
.cid-uAOSVRzq8t .svg-top .st0 {
  fill: #ffffff;
}
@media (max-width: 992px) {
  .cid-uAOSVRzq8t .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uAOSVRzq8t .mbr-section-title {
  color: #232323;
}
@media (min-width: 1400px) {
  .cid-uAOSVRzq8t .col-12 {
    padding: 0 2rem;
  }
  .cid-uAOSVRzq8t .row {
    margin: 0 -2rem;
  }
}
.cid-uAOSVRzq8t .mbr-text,
.cid-uAOSVRzq8t .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-uAOSVRIl9y {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/production-1-1536x912.jpeg");
}
.cid-uAOSVRPNUr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/24.80-thumb-min-700x366.png");
}
.cid-uAOSVRPNUr .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uAOSVRPNUr .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uAOSVRPNUr .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uAOSVRPNUr .mbr-section-title {
  color: #f9f9f9;
}
.cid-uAOSVRPNUr .mbr-text,
.cid-uAOSVRPNUr .mbr-section-btn {
  color: #f9f9f9;
}
.cid-uAOSVRXciY {
  padding-top: 0px;
  padding-bottom: 80px;
  background-image: url("../../../assets/images/mbr-1-1920x1006.jpeg");
}
.cid-uAOSVRXciY svg {
  overflow: hidden;
  vertical-align: middle;
  position: absolute;
  bottom: 0;
}
.cid-uAOSVRXciY .wave {
  fill: #ffffff;
}
.cid-uAOSVS4FdU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uAOSVS4FdU .card-icon {
  font-size: 56px;
  color: #efefef;
  transition: color 0.3s;
}
.cid-uAOSVS4FdU .icon2 {
  color: #ffffff;
}
.cid-uAOSVS4FdU .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-uAOSVS4FdU p {
  font-weight: 400;
}
.cid-uAOSVS4FdU .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ffffff;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-uAOSVS4FdU .line2 {
  background: #ffffff;
}
.cid-uAOSVS4FdU .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #c21c1c;
}
.cid-uAOSVS4FdU .card-wrapper:hover .link-ico {
  background-color: #efefef;
  border-color: #efefef;
  color: white;
}
.cid-uAOSVS4FdU .card2 {
  background: #c21c1c;
}
.cid-uAOSVS4FdU .card-title,
.cid-uAOSVS4FdU .card-ico,
.cid-uAOSVS4FdU .line-wrap {
  text-align: center;
}
.cid-uAOSVS4FdU .mbr-text,
.cid-uAOSVS4FdU .card-link {
  text-align: center;
}
.cid-uAOSVShUN3 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #141414;
}
.cid-uAOSVShUN3 .item-wrapper {
  position: relative;
}
.cid-uAOSVShUN3 .slide-content {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-uAOSVShUN3 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 18%;
  max-width: 596px;
}
.cid-uAOSVShUN3 .embla__button--next,
.cid-uAOSVShUN3 .embla__button--prev {
  display: flex;
}
.cid-uAOSVShUN3 .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 14px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: transparent;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-uAOSVShUN3 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uAOSVShUN3 .embla__button.embla__button--prev {
  left: 0;
  margin-left: -4rem;
}
.cid-uAOSVShUN3 .embla__button.embla__button--next {
  right: 0;
  margin-right: -4rem;
}
.cid-uAOSVShUN3 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uAOSVShUN3 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uAOSVShUN3 .embla {
  position: relative;
  width: 90%;
  margin: auto;
}
.cid-uAOSVShUN3 .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-uAOSVShUN3 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uAOSVShUN3 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uAOSVShUN3 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uAOSVShUN3 .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  display: flex;
  justify-content: center;
}
.cid-uAOSVShUN3 img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-uAOSVShUN3 .container {
  max-width: 1100px;
}
.cid-uAOSVShUN3 .embla__viewport.container {
  overflow: hidden;
}
@media (max-width: 576px) {
  .cid-uAOSVShUN3 .embla {
    width: 70%;
  }
  .cid-uAOSVShUN3 .embla__slide {
    min-width: 150%;
  }
}
.cid-uAOSVSxVD8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #141414;
}
