body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((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.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #f3662a !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #ff9966 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #4f921f !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f3662a !important;
  border-color: #f3662a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #bc3f0b !important;
  border-color: #bc3f0b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #bc3f0b !important;
  border-color: #bc3f0b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #4f921f !important;
  border-color: #4f921f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #284a10 !important;
  border-color: #284a10 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #284a10 !important;
  border-color: #284a10 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f3662a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #bc3f0b !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f3662a !important;
  border-color: #f3662a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #4f921f;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #284a10 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #4f921f !important;
  border-color: #4f921f !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #f3662a !important;
}
.text-secondary {
  color: #000000 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #ff9966 !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #4f921f !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #ad3b0a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #ff5500 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #213e0d !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #f3662a;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ff9966;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #4f921f;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f3662a;
  border-color: #f3662a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f3662a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fef1eb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #8ddb55;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #f3662a !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #f3662a;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f3662a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f3662a;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #f3662a;
  border-bottom-color: #f3662a;
}
.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: #f3662a !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: #000000 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23f3662a' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uA31BCIOXj {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uA31BCIOXj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uA31BCIOXj .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uA31BCIOXj .navbar-logo {
  align-items: center;
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uA31BCIOXj .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uA31BCIOXj .wrapper {
  width: 100%;
  display: flex;
  max-width: 1620px;
  margin: auto;
}
.cid-uA31BCIOXj .rr-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uA31BCIOXj .rr-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uA31BCIOXj .rr-brand .navbar-caption {
  line-height: 1.2 !important;
}
.cid-uA31BCIOXj .rr-brand .navbar-logo a {
  outline: none;
}
.cid-uA31BCIOXj .navbar-caption-wrap {
  align-items: center;
}
.cid-uA31BCIOXj .navbar-caption {
  line-height: 1.2 !important;
  padding-left: 1rem;
  padding-right: .5rem;
}
.cid-uA31BCIOXj .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uA31BCIOXj .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
  top: -2px;
}
.cid-uA31BCIOXj .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uA31BCIOXj .navbar-nav .nav-item .nav-link:hover {
  color: #f3662a !important;
}
.cid-uA31BCIOXj .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uA31BCIOXj .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uA31BCIOXj .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uA31BCIOXj .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uA31BCIOXj .navbar-nav {
    padding-left: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uA31BCIOXj .navbar-nav {
    align-items: center;
  }
}
.cid-uA31BCIOXj .nav-link {
  width: fit-content;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uA31BCIOXj .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uA31BCIOXj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uA31BCIOXj .container-fluid {
  display: flex;
  height: fit-content;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-uA31BCIOXj .container-fluid {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uA31BCIOXj .container-fluid {
    height: 72px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uA31BCIOXj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uA31BCIOXj .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 0px !important;
  border-radius: 1rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  border-radius: 4px !important;
}
.cid-uA31BCIOXj .nav-item:focus,
.cid-uA31BCIOXj .nav-link:focus {
  outline: none;
}
.cid-uA31BCIOXj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uA31BCIOXj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uA31BCIOXj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uA31BCIOXj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uA31BCIOXj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uA31BCIOXj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uA31BCIOXj .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  top: -2px;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uA31BCIOXj .navbar.opened {
  transition: all 0.3s;
}
.cid-uA31BCIOXj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uA31BCIOXj .navbar .navbar-logo img {
  width: auto;
}
.cid-uA31BCIOXj .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uA31BCIOXj .navbar.collapsed {
  justify-content: center;
}
.cid-uA31BCIOXj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uA31BCIOXj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uA31BCIOXj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uA31BCIOXj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uA31BCIOXj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uA31BCIOXj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uA31BCIOXj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uA31BCIOXj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uA31BCIOXj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uA31BCIOXj .navbar {
    min-height: 72px;
  }
  .cid-uA31BCIOXj .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uA31BCIOXj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uA31BCIOXj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uA31BCIOXj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uA31BCIOXj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uA31BCIOXj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uA31BCIOXj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uA31BCIOXj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uA31BCIOXj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uA31BCIOXj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uA31BCIOXj .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uA31BCIOXj .dropdown-item.active,
.cid-uA31BCIOXj .dropdown-item:active {
  background-color: transparent;
}
.cid-uA31BCIOXj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uA31BCIOXj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uA31BCIOXj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uA31BCIOXj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  margin-right: 10px;
}
.cid-uA31BCIOXj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  transform: none;
  top: -12px;
}
.cid-uA31BCIOXj .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uA31BCIOXj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uA31BCIOXj .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uA31BCIOXj .navbar-buttons {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .cid-uA31BCIOXj .navbar-buttons {
    text-align: center;
  }
}
.cid-uA31BCIOXj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uA31BCIOXj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f3662a;
}
.cid-uA31BCIOXj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uA31BCIOXj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uA31BCIOXj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uA31BCIOXj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uA31BCIOXj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uA31BCIOXj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uA31BCIOXj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uA31BCIOXj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uA31BCIOXj .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uA31BCIOXj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uA31BCIOXj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uA31BCIOXj .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uA31BCIOXj .navbar {
    height: 70px;
  }
  .cid-uA31BCIOXj .navbar.opened {
    height: auto;
  }
  .cid-uA31BCIOXj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uA31BCIOXj .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uA31BCIOXj .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uA31BCIOXj .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uA31BCIOXj .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uA31BCIOXj .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uA31BCIOXj .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uA31BCIOXj .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uA31BCIOXj .navbar-brand {
    margin-right: auto;
  }
  .cid-uA31BCIOXj .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-uA31BCIOXj .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uA31BCIOXj .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uA31BCIOXj .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uA31BCIOXj .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uA31BCIOXj .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uA31BCIOXj .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uA31BCIOXj .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uA31BCIOXj .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uA31BCIOXj .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uA31BCIOXj .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uA2LXkZ1Pq {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/el12-1-1920x1137.jpg");
}
.cid-uA2LXkZ1Pq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA2LXkZ1Pq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA2LXkZ1Pq .container-fluid {
  padding: 0 24px;
}
@media (max-width: 768px) {
  .cid-uA2LXkZ1Pq .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uA2LXkZ1Pq .container {
    padding: 0 16px;
  }
}
.cid-uA2LXkZ1Pq .content-wrapper {
  position: relative;
  min-height: 700px;
  padding: 50px;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 992px) {
  .cid-uA2LXkZ1Pq .content-wrapper {
    min-height: 550px;
    padding: 32px;
  }
}
.cid-uA2LXkZ1Pq .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uA2LXkZ1Pq .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
}
.cid-uA2LXkZ1Pq .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uA2LXkZ1Pq .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .cid-uA2LXkZ1Pq .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uA2LXkZ1Pq .mbr-section-title {
  color: #ffffff;
}
.cid-uA2LXkZ1Pq .mbr-text {
  color: #ffffff;
}
.cid-uA2N4MfZPO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uA2N4MfZPO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA2N4MfZPO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uA2N4MfZPO .container {
    padding: 0 30px;
  }
}
.cid-uA2N4MfZPO .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uA2N4MfZPO .desc-wrapper .mbr-desc {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uA2N4MfZPO .desc-wrapper .mbr-desc {
    margin-bottom: 30px;
  }
}
.cid-uA2N4MfZPO .text-wrapper .mbr-text {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uA2N4MfZPO .text-wrapper .mbr-text {
    margin-bottom: 30px;
  }
}
.cid-uA2N4MfZPO .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 992px) {
  .cid-uA2N4MfZPO .items-wrapper {
    display: block;
  }
}
.cid-uA2N4MfZPO .items-wrapper .item {
  margin: 60px 0;
  padding: 0 40px;
  border-right: 1px solid #dbf5d1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0 !important;
}
.cid-uA2N4MfZPO .items-wrapper .item:nth-child(3n) {
  border-right: none;
}
@media (max-width: 992px) {
  .cid-uA2N4MfZPO .items-wrapper .item {
    margin: 30px 0 0 0;
    padding: 0 0 30px 0;
    border-right: none;
    border-bottom: 1px solid #dbf5d1;
  }
}
.cid-uA2N4MfZPO .items-wrapper .item .item-wrapper {
  border-radius: 0 !important;
}
.cid-uA2N4MfZPO .items-wrapper .item .item-wrapper .item-img {
  margin-bottom: 30px;
}
.cid-uA2N4MfZPO .items-wrapper .item .item-wrapper .item-img img {
  height: 260px;
  object-fit: cover;
}
.cid-uA2N4MfZPO .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 20px;
}
.cid-uA2N4MfZPO .items-wrapper .item .item-wrapper .item-content .item-date {
  margin-bottom: 30px;
}
.cid-uA2N4MfZPO .items-wrapper .item .item-wrapper .item-content .mbr-text {
  margin-bottom: 0;
}
.cid-uA2N4MfZPO .items-wrapper .item .mbr-section-btn {
  margin-top: 30px;
}
.cid-uA2N4MfZPO .item-date {
  color: #f3662a;
}
.cid-uA2N4MfZPO .item-title {
  color: #22654E;
}
.cid-uA2N4MfZPO .item-text {
  color: #144031;
}
.cid-uA2N4MfZPO .item-title,
.cid-uA2N4MfZPO .mbr-section-btn {
  color: #000000;
}
.cid-uA2NbCuc9w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("../../../assets/images/haulotte-products-range-scissor-lifts-img1-1920x1048.jpg");
}
.cid-uA2NbCuc9w::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 25%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uA2NbCuc9w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA2NbCuc9w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uA2NbCuc9w .container {
    padding: 0 22px;
  }
}
.cid-uA2NbCuc9w .row {
  justify-content: center;
}
.cid-uA2NbCuc9w .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .cid-uA2NbCuc9w .content-wrapper {
    padding: 0;
  }
}
.cid-uA2NbCuc9w .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uA2NbCuc9w .content-wrapper .mbr-desc {
  margin-bottom: 10px;
}
.cid-uA2NbCuc9w .mbr-section-title {
  color: #ffffff;
}
.cid-uA2NbCuc9w .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-uA2NbCuc9w .mbr-section-title,
.cid-uA2NbCuc9w .mbr-section-btn {
  text-align: center;
}
.cid-uA2Ndoq2QX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uA2Ndoq2QX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA2Ndoq2QX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA2Ndoq2QX .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uA2Ndoq2QX .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uA2Ndoq2QX .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uA2Ndoq2QX .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uA2Ndoq2QX .container {
    padding: 0 24px;
  }
}
.cid-uA2Ndoq2QX .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 1440px) {
  .cid-uA2Ndoq2QX .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uA2Ndoq2QX .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uA2Ndoq2QX .item .item-wrapper {
  min-height: 630px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 2rem !important;
  background-color: #18212d;
  padding: 48px;
}
@media (max-width: 1200px) {
  .cid-uA2Ndoq2QX .item .item-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uA2Ndoq2QX .item .item-wrapper {
    padding: 24px;
    min-height: auto;
  }
}
.cid-uA2Ndoq2QX .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uA2Ndoq2QX .item .item-wrapper .card-box .item-text {
  opacity: .5;
  margin-bottom: 22px;
}
.cid-uA2Ndoq2QX .item .item-wrapper .mbr-section-btn {
  width: 100%;
}
.cid-uA2Ndoq2QX .item .item-wrapper .mbr-section-btn .btn {
  width: 100%;
}
.cid-uA2Ndoq2QX .item-title {
  color: #ffffff;
}
.cid-uA2Ndoq2QX .item-text {
  color: #ffffff;
}
.cid-uA2Ndoq2QX .item-text,
.cid-uA2Ndoq2QX .mbr-section-btn {
  color: #ffffff;
}
.cid-uA2W4CtBsH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-uA2W4CtBsH .image-wrapper {
  margin-bottom: 170px;
}
.cid-uA2W4CtBsH .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uA2W4CtBsH .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-uA2W4CtBsH .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uA2W4CtBsH .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-uA2W4CtBsH .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-uA2W4CtBsH .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-uA2W4CtBsH .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uA2W4CtBsH .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-uA2W4CtBsH .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-uA2W4CtBsH .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-uA2W4CtBsH .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-uA2W4CtBsH .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-uA2W4CtBsH .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-uA2W4CtBsH .card-wrap {
  position: relative;
}
.cid-uA2W4CtBsH .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #ff4712;
}
@media (max-width: 992px) {
  .cid-uA2W4CtBsH .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-uA2W4CtBsH .card-wrapper .item-card {
  padding: 0;
}
.cid-uA2W4CtBsH .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-uA2W4CtBsH .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-uA2W4CtBsH .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-uA2W4CtBsH .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-uA2W4CtBsH .mbr-section-subtitle {
  color: #FF4712;
}
.cid-uA2W4CtBsH .mbr-section-title {
  color: #20232a;
}
.cid-uA2W4CtBsH .mbr-link {
  color: #20232a;
}
.cid-uA2W4CtBsH .mbr-card-title {
  color: #fafafa;
}
.cid-uA2W4CtBsH .mbr-number {
  color: #fafafa;
}
.cid-uA2W4CtBsH .mbr-desc {
  color: #fafafa;
}
.cid-uA2WjoTg9K {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/haulotte-products-range-scissor-lifts-img1-1920x1048.jpg");
}
.cid-uA2WjoTg9K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA2WjoTg9K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA2WjoTg9K .content-container {
  display: flex;
  width: 100%;
}
.cid-uA2WjoTg9K .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
.cid-uA2WjoTg9K .text-wrap {
  width: 100%;
  padding: 0;
}
.cid-uA2WjoTg9K .mbr-section-title {
  color: #f3662a;
  margin-bottom: 20px !important;
  width: 100%;
}
.cid-uA2WjoTg9K .mbr-text {
  color: #112B6D;
  padding-bottom: 0.9rem !important;
  width: 100%;
  margin-bottom: 0 !important;
}
.cid-uA2WjoTg9K .mbr-section-btn {
  margin-top: 20px;
}
@media (min-width: 576px) {
  .cid-uA2WjoTg9K .mbr-section-btn {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 991px) {
  .cid-uA2WjoTg9K .mbr-section-btn {
    flex-direction: row;
    justify-content: space-around;
  }
}
.cid-uA2WnqAV5d {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-uA2WnqAV5d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA2WnqAV5d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA2WnqAV5d .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uA2WnqAV5d .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uA2WnqAV5d .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uA2WnqAV5d .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uA2WnqAV5d .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uA2WnqAV5d .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uA2WnqAV5d .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uA2WnqAV5d .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uA2WnqAV5d .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uA2WnqAV5d .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #f3662a;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uA2WnqAV5d .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uA2WnqAV5d .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uA2WnqAV5d .items-wrapper .card {
  padding: 0 32px;
}
.cid-uA2WnqAV5d .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uA2WnqAV5d .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uA2WnqAV5d .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uA2WnqAV5d .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uA2WnqAV5d .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uA2WnqAV5d .list-wrapper .list .item-wrap:hover,
.cid-uA2WnqAV5d .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uA2WnqAV5d .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uA2WnqAV5d .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uA2WnqAV5d .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uA2WnqAV5d .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uA2WnqAV5d .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uA2WnqAV5d .mbr-copy {
  margin-bottom: 0;
  color: #fafafa;
}
.cid-uA2WnqAV5d .mbr-desc {
  color: #ffffff;
}
.cid-uA2WnqAV5d .mbr-text,
.cid-uA2WnqAV5d .text-wrapper {
  color: #9aa0a6;
}
.cid-uA2WnqAV5d .list {
  color: #9aa0a6;
}
.cid-uA2WnqAV5d .mbr-text,
.cid-uA2WnqAV5d .mbr-section-btn {
  color: #fafafa;
}
.cid-uA3enSdRl0 {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uA3enSdRl0 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uA3enSdRl0 .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uA3enSdRl0 .navbar-logo {
  align-items: center;
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uA3enSdRl0 .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uA3enSdRl0 .wrapper {
  width: 100%;
  display: flex;
  max-width: 1620px;
  margin: auto;
}
.cid-uA3enSdRl0 .rr-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uA3enSdRl0 .rr-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uA3enSdRl0 .rr-brand .navbar-caption {
  line-height: 1.2 !important;
}
.cid-uA3enSdRl0 .rr-brand .navbar-logo a {
  outline: none;
}
.cid-uA3enSdRl0 .navbar-caption-wrap {
  align-items: center;
}
.cid-uA3enSdRl0 .navbar-caption {
  line-height: 1.2 !important;
  padding-left: 1rem;
  padding-right: .5rem;
}
.cid-uA3enSdRl0 .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uA3enSdRl0 .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
  top: -2px;
}
.cid-uA3enSdRl0 .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uA3enSdRl0 .navbar-nav .nav-item .nav-link:hover {
  color: #f3662a !important;
}
.cid-uA3enSdRl0 .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uA3enSdRl0 .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uA3enSdRl0 .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uA3enSdRl0 .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uA3enSdRl0 .navbar-nav {
    padding-left: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uA3enSdRl0 .navbar-nav {
    align-items: center;
  }
}
.cid-uA3enSdRl0 .nav-link {
  width: fit-content;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uA3enSdRl0 .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uA3enSdRl0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uA3enSdRl0 .container-fluid {
  display: flex;
  height: fit-content;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-uA3enSdRl0 .container-fluid {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uA3enSdRl0 .container-fluid {
    height: 72px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uA3enSdRl0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uA3enSdRl0 .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 0px !important;
  border-radius: 1rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  border-radius: 4px !important;
}
.cid-uA3enSdRl0 .nav-item:focus,
.cid-uA3enSdRl0 .nav-link:focus {
  outline: none;
}
.cid-uA3enSdRl0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uA3enSdRl0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uA3enSdRl0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uA3enSdRl0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uA3enSdRl0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uA3enSdRl0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uA3enSdRl0 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  top: -2px;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uA3enSdRl0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uA3enSdRl0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uA3enSdRl0 .navbar .navbar-logo img {
  width: auto;
}
.cid-uA3enSdRl0 .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uA3enSdRl0 .navbar.collapsed {
  justify-content: center;
}
.cid-uA3enSdRl0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uA3enSdRl0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uA3enSdRl0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uA3enSdRl0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uA3enSdRl0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uA3enSdRl0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uA3enSdRl0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uA3enSdRl0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uA3enSdRl0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uA3enSdRl0 .navbar {
    min-height: 72px;
  }
  .cid-uA3enSdRl0 .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uA3enSdRl0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uA3enSdRl0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uA3enSdRl0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uA3enSdRl0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uA3enSdRl0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uA3enSdRl0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uA3enSdRl0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uA3enSdRl0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uA3enSdRl0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uA3enSdRl0 .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uA3enSdRl0 .dropdown-item.active,
.cid-uA3enSdRl0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uA3enSdRl0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uA3enSdRl0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uA3enSdRl0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uA3enSdRl0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  margin-right: 10px;
}
.cid-uA3enSdRl0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  transform: none;
  top: -12px;
}
.cid-uA3enSdRl0 .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uA3enSdRl0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uA3enSdRl0 .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uA3enSdRl0 .navbar-buttons {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .cid-uA3enSdRl0 .navbar-buttons {
    text-align: center;
  }
}
.cid-uA3enSdRl0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uA3enSdRl0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f3662a;
}
.cid-uA3enSdRl0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uA3enSdRl0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uA3enSdRl0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uA3enSdRl0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uA3enSdRl0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uA3enSdRl0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uA3enSdRl0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uA3enSdRl0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uA3enSdRl0 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uA3enSdRl0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uA3enSdRl0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uA3enSdRl0 .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uA3enSdRl0 .navbar {
    height: 70px;
  }
  .cid-uA3enSdRl0 .navbar.opened {
    height: auto;
  }
  .cid-uA3enSdRl0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uA3enSdRl0 .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uA3enSdRl0 .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uA3enSdRl0 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uA3enSdRl0 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uA3enSdRl0 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uA3enSdRl0 .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uA3enSdRl0 .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uA3enSdRl0 .navbar-brand {
    margin-right: auto;
  }
  .cid-uA3enSdRl0 .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-uA3enSdRl0 .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uA3enSdRl0 .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uA3enSdRl0 .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uA3enSdRl0 .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uA3enSdRl0 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uA3enSdRl0 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uA3enSdRl0 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uA3enSdRl0 .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uA3enSdRl0 .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uA3enSdRl0 .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uA3eJRw0xe {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/compact12-33-900x600.jpg");
}
.cid-uA3eJRw0xe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3eJRw0xe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uA3eJRw0xe .container {
    padding: 0 15px;
  }
}
.cid-uA3eJRw0xe .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uA3eJRw0xe .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uA3eJRw0xe .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-uA3eJRw0xe .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-uA3eJRw0xe .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-uA3eJRw0xe .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-uA3eJRw0xe .mbr-section-title {
  color: #131c28;
}
.cid-uA3eJRw0xe .mbr-desc {
  color: #fafafa;
}
.cid-uA3eJRw0xe .mbr-section-title,
.cid-uA3eJRw0xe .mbr-section-btn {
  color: #f3662a;
}
.cid-uA3fswPZdu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ededed;
}
.cid-uA3fswPZdu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3fswPZdu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uA3fswPZdu .container {
    padding: 0 16px;
  }
}
.cid-uA3fswPZdu .row {
  position: relative;
  justify-content: space-between;
}
.cid-uA3fswPZdu .content-wrapper {
  position: sticky;
  top: 100px;
}
@media (max-width: 992px) {
  .cid-uA3fswPZdu .content-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uA3fswPZdu .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uA3fswPZdu .content-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uA3fswPZdu .content-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uA3fswPZdu .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uA3fswPZdu .image-wrapper img {
  height: 560px;
  object-fit: cover;
  margin-bottom: 24px;
}
.cid-uA3fswPZdu .image-wrapper img:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uA3fswPZdu .image-wrapper img {
    height: 350px;
  }
}
.cid-uA3fswPZdu .mbr-section-title {
  color: #000000;
}
.cid-uA3fswPZdu .mbr-text {
  color: #000000;
}
.cid-uA3jsXTzyJ {
  padding-top: 2rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background-color: #202020;
}
.cid-uA3jsXTzyJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3jsXTzyJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA3jsXTzyJ .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uA3jsXTzyJ .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uA3jsXTzyJ .container {
    padding: 0 24px;
  }
}
.cid-uA3jsXTzyJ .content-wrapper .icon-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uA3jsXTzyJ .content-wrapper .icon-wrapper {
    margin-bottom: 28px;
  }
}
.cid-uA3jsXTzyJ .content-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  display: inline-flex;
  color: #f3662a;
}
@media (max-width: 992px) {
  .cid-uA3jsXTzyJ .content-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-uA3jsXTzyJ .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uA3jsXTzyJ .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin: 80px 0 0 0;
}
@media (max-width: 1200px) {
  .cid-uA3jsXTzyJ .content-wrapper .text-wrap .mbr-text {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .cid-uA3jsXTzyJ .content-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin: 28px 0 0 0;
  }
}
.cid-uA3jsXTzyJ .mbr-section-title {
  color: #ffffff;
}
.cid-uA3jsXTzyJ .mbr-text,
.cid-uA3jsXTzyJ .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uA3jsXTzyJ .mbr-section-title,
.cid-uA3jsXTzyJ .icon-wrapper {
  text-align: center;
}
.cid-uA3enXIQwO {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/haulotte-products-range-scissor-lifts-img1-1920x1048.jpg");
}
.cid-uA3enXIQwO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3enXIQwO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA3enXIQwO .content-container {
  display: flex;
  width: 100%;
}
.cid-uA3enXIQwO .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
.cid-uA3enXIQwO .text-wrap {
  width: 100%;
  padding: 0;
}
.cid-uA3enXIQwO .mbr-section-title {
  color: #f3662a;
  margin-bottom: 20px !important;
  width: 100%;
}
.cid-uA3enXIQwO .mbr-text {
  color: #112B6D;
  padding-bottom: 0.9rem !important;
  width: 100%;
  margin-bottom: 0 !important;
}
.cid-uA3enXIQwO .mbr-section-btn {
  margin-top: 20px;
}
@media (min-width: 576px) {
  .cid-uA3enXIQwO .mbr-section-btn {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 991px) {
  .cid-uA3enXIQwO .mbr-section-btn {
    flex-direction: row;
    justify-content: space-around;
  }
}
.cid-uA3enYtdB1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-uA3enYtdB1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3enYtdB1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA3enYtdB1 .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uA3enYtdB1 .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uA3enYtdB1 .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uA3enYtdB1 .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uA3enYtdB1 .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uA3enYtdB1 .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uA3enYtdB1 .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uA3enYtdB1 .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uA3enYtdB1 .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uA3enYtdB1 .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #f3662a;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uA3enYtdB1 .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uA3enYtdB1 .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uA3enYtdB1 .items-wrapper .card {
  padding: 0 32px;
}
.cid-uA3enYtdB1 .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uA3enYtdB1 .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uA3enYtdB1 .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uA3enYtdB1 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uA3enYtdB1 .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uA3enYtdB1 .list-wrapper .list .item-wrap:hover,
.cid-uA3enYtdB1 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uA3enYtdB1 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uA3enYtdB1 .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uA3enYtdB1 .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uA3enYtdB1 .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uA3enYtdB1 .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uA3enYtdB1 .mbr-copy {
  margin-bottom: 0;
  color: #fafafa;
}
.cid-uA3enYtdB1 .mbr-desc {
  color: #ffffff;
}
.cid-uA3enYtdB1 .mbr-text,
.cid-uA3enYtdB1 .text-wrapper {
  color: #9aa0a6;
}
.cid-uA3enYtdB1 .list {
  color: #9aa0a6;
}
.cid-uA3enYtdB1 .mbr-text,
.cid-uA3enYtdB1 .mbr-section-btn {
  color: #fafafa;
}
.cid-uA3k3Yx8eM {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uA3k3Yx8eM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uA3k3Yx8eM .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uA3k3Yx8eM .navbar-logo {
  align-items: center;
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uA3k3Yx8eM .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uA3k3Yx8eM .wrapper {
  width: 100%;
  display: flex;
  max-width: 1620px;
  margin: auto;
}
.cid-uA3k3Yx8eM .rr-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uA3k3Yx8eM .rr-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uA3k3Yx8eM .rr-brand .navbar-caption {
  line-height: 1.2 !important;
}
.cid-uA3k3Yx8eM .rr-brand .navbar-logo a {
  outline: none;
}
.cid-uA3k3Yx8eM .navbar-caption-wrap {
  align-items: center;
}
.cid-uA3k3Yx8eM .navbar-caption {
  line-height: 1.2 !important;
  padding-left: 1rem;
  padding-right: .5rem;
}
.cid-uA3k3Yx8eM .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uA3k3Yx8eM .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
  top: -2px;
}
.cid-uA3k3Yx8eM .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uA3k3Yx8eM .navbar-nav .nav-item .nav-link:hover {
  color: #f3662a !important;
}
.cid-uA3k3Yx8eM .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uA3k3Yx8eM .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uA3k3Yx8eM .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uA3k3Yx8eM .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uA3k3Yx8eM .navbar-nav {
    padding-left: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uA3k3Yx8eM .navbar-nav {
    align-items: center;
  }
}
.cid-uA3k3Yx8eM .nav-link {
  width: fit-content;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uA3k3Yx8eM .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uA3k3Yx8eM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uA3k3Yx8eM .container-fluid {
  display: flex;
  height: fit-content;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-uA3k3Yx8eM .container-fluid {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uA3k3Yx8eM .container-fluid {
    height: 72px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uA3k3Yx8eM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uA3k3Yx8eM .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 0px !important;
  border-radius: 1rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  border-radius: 4px !important;
}
.cid-uA3k3Yx8eM .nav-item:focus,
.cid-uA3k3Yx8eM .nav-link:focus {
  outline: none;
}
.cid-uA3k3Yx8eM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uA3k3Yx8eM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uA3k3Yx8eM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uA3k3Yx8eM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uA3k3Yx8eM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uA3k3Yx8eM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uA3k3Yx8eM .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  top: -2px;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uA3k3Yx8eM .navbar.opened {
  transition: all 0.3s;
}
.cid-uA3k3Yx8eM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uA3k3Yx8eM .navbar .navbar-logo img {
  width: auto;
}
.cid-uA3k3Yx8eM .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uA3k3Yx8eM .navbar.collapsed {
  justify-content: center;
}
.cid-uA3k3Yx8eM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uA3k3Yx8eM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uA3k3Yx8eM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uA3k3Yx8eM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uA3k3Yx8eM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uA3k3Yx8eM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uA3k3Yx8eM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uA3k3Yx8eM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uA3k3Yx8eM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uA3k3Yx8eM .navbar {
    min-height: 72px;
  }
  .cid-uA3k3Yx8eM .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uA3k3Yx8eM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uA3k3Yx8eM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uA3k3Yx8eM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uA3k3Yx8eM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uA3k3Yx8eM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uA3k3Yx8eM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uA3k3Yx8eM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uA3k3Yx8eM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uA3k3Yx8eM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uA3k3Yx8eM .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uA3k3Yx8eM .dropdown-item.active,
.cid-uA3k3Yx8eM .dropdown-item:active {
  background-color: transparent;
}
.cid-uA3k3Yx8eM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uA3k3Yx8eM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uA3k3Yx8eM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uA3k3Yx8eM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  margin-right: 10px;
}
.cid-uA3k3Yx8eM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  transform: none;
  top: -12px;
}
.cid-uA3k3Yx8eM .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uA3k3Yx8eM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uA3k3Yx8eM .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uA3k3Yx8eM .navbar-buttons {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .cid-uA3k3Yx8eM .navbar-buttons {
    text-align: center;
  }
}
.cid-uA3k3Yx8eM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uA3k3Yx8eM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f3662a;
}
.cid-uA3k3Yx8eM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uA3k3Yx8eM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uA3k3Yx8eM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uA3k3Yx8eM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uA3k3Yx8eM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uA3k3Yx8eM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uA3k3Yx8eM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uA3k3Yx8eM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uA3k3Yx8eM .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uA3k3Yx8eM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uA3k3Yx8eM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uA3k3Yx8eM .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uA3k3Yx8eM .navbar {
    height: 70px;
  }
  .cid-uA3k3Yx8eM .navbar.opened {
    height: auto;
  }
  .cid-uA3k3Yx8eM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uA3k3Yx8eM .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uA3k3Yx8eM .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uA3k3Yx8eM .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uA3k3Yx8eM .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uA3k3Yx8eM .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uA3k3Yx8eM .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uA3k3Yx8eM .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uA3k3Yx8eM .navbar-brand {
    margin-right: auto;
  }
  .cid-uA3k3Yx8eM .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-uA3k3Yx8eM .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uA3k3Yx8eM .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uA3k3Yx8eM .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uA3k3Yx8eM .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uA3k3Yx8eM .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uA3k3Yx8eM .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uA3k3Yx8eM .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uA3k3Yx8eM .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uA3k3Yx8eM .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uA3k3Yx8eM .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uA3k3ZF5Im {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/manlift-kiralk-1256x838.jpeg");
}
.cid-uA3k3ZF5Im .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3k3ZF5Im .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uA3k3ZF5Im .container {
    padding: 0 15px;
  }
}
.cid-uA3k3ZF5Im .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uA3k3ZF5Im .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uA3k3ZF5Im .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-uA3k3ZF5Im .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-uA3k3ZF5Im .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-uA3k3ZF5Im .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-uA3k3ZF5Im .mbr-section-title {
  color: #131c28;
}
.cid-uA3k3ZF5Im .mbr-desc {
  color: #fafafa;
}
.cid-uA3k3ZF5Im .mbr-section-title,
.cid-uA3k3ZF5Im .mbr-section-btn {
  color: #f3662a;
}
.cid-uA3k40saqo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ededed;
}
.cid-uA3k40saqo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3k40saqo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uA3k40saqo .container {
    padding: 0 16px;
  }
}
.cid-uA3k40saqo .row {
  position: relative;
  justify-content: space-between;
}
.cid-uA3k40saqo .content-wrapper {
  position: sticky;
  top: 100px;
}
@media (max-width: 992px) {
  .cid-uA3k40saqo .content-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uA3k40saqo .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uA3k40saqo .content-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uA3k40saqo .content-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uA3k40saqo .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uA3k40saqo .image-wrapper img {
  height: 560px;
  object-fit: cover;
  margin-bottom: 24px;
}
.cid-uA3k40saqo .image-wrapper img:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uA3k40saqo .image-wrapper img {
    height: 350px;
  }
}
.cid-uA3k40saqo .mbr-section-title {
  color: #000000;
}
.cid-uA3k40saqo .mbr-text {
  color: #000000;
}
.cid-uA3k41i9qQ {
  padding-top: 2rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background-color: #202020;
}
.cid-uA3k41i9qQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3k41i9qQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA3k41i9qQ .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uA3k41i9qQ .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uA3k41i9qQ .container {
    padding: 0 24px;
  }
}
.cid-uA3k41i9qQ .content-wrapper .icon-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uA3k41i9qQ .content-wrapper .icon-wrapper {
    margin-bottom: 28px;
  }
}
.cid-uA3k41i9qQ .content-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  display: inline-flex;
  color: #f3662a;
}
@media (max-width: 992px) {
  .cid-uA3k41i9qQ .content-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-uA3k41i9qQ .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uA3k41i9qQ .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin: 80px 0 0 0;
}
@media (max-width: 1200px) {
  .cid-uA3k41i9qQ .content-wrapper .text-wrap .mbr-text {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .cid-uA3k41i9qQ .content-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin: 28px 0 0 0;
  }
}
.cid-uA3k41i9qQ .mbr-section-title {
  color: #ffffff;
}
.cid-uA3k41i9qQ .mbr-text,
.cid-uA3k41i9qQ .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uA3k41i9qQ .mbr-section-title,
.cid-uA3k41i9qQ .icon-wrapper {
  text-align: center;
}
.cid-uA3k4218ke {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/haulotte-products-range-scissor-lifts-img1-1920x1048.jpg");
}
.cid-uA3k4218ke .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3k4218ke .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA3k4218ke .content-container {
  display: flex;
  width: 100%;
}
.cid-uA3k4218ke .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
.cid-uA3k4218ke .text-wrap {
  width: 100%;
  padding: 0;
}
.cid-uA3k4218ke .mbr-section-title {
  color: #f3662a;
  margin-bottom: 20px !important;
  width: 100%;
}
.cid-uA3k4218ke .mbr-text {
  color: #112B6D;
  padding-bottom: 0.9rem !important;
  width: 100%;
  margin-bottom: 0 !important;
}
.cid-uA3k4218ke .mbr-section-btn {
  margin-top: 20px;
}
@media (min-width: 576px) {
  .cid-uA3k4218ke .mbr-section-btn {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 991px) {
  .cid-uA3k4218ke .mbr-section-btn {
    flex-direction: row;
    justify-content: space-around;
  }
}
.cid-uA3k42MqrN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-uA3k42MqrN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3k42MqrN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA3k42MqrN .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uA3k42MqrN .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uA3k42MqrN .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uA3k42MqrN .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uA3k42MqrN .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uA3k42MqrN .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uA3k42MqrN .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uA3k42MqrN .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uA3k42MqrN .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uA3k42MqrN .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #f3662a;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uA3k42MqrN .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uA3k42MqrN .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uA3k42MqrN .items-wrapper .card {
  padding: 0 32px;
}
.cid-uA3k42MqrN .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uA3k42MqrN .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uA3k42MqrN .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uA3k42MqrN .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uA3k42MqrN .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uA3k42MqrN .list-wrapper .list .item-wrap:hover,
.cid-uA3k42MqrN .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uA3k42MqrN .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uA3k42MqrN .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uA3k42MqrN .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uA3k42MqrN .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uA3k42MqrN .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uA3k42MqrN .mbr-copy {
  margin-bottom: 0;
  color: #fafafa;
}
.cid-uA3k42MqrN .mbr-desc {
  color: #ffffff;
}
.cid-uA3k42MqrN .mbr-text,
.cid-uA3k42MqrN .text-wrapper {
  color: #9aa0a6;
}
.cid-uA3k42MqrN .list {
  color: #9aa0a6;
}
.cid-uA3k42MqrN .mbr-text,
.cid-uA3k42MqrN .mbr-section-btn {
  color: #fafafa;
}
.cid-uA3kNVdrGC {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uA3kNVdrGC .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uA3kNVdrGC .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uA3kNVdrGC .navbar-logo {
  align-items: center;
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uA3kNVdrGC .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uA3kNVdrGC .wrapper {
  width: 100%;
  display: flex;
  max-width: 1620px;
  margin: auto;
}
.cid-uA3kNVdrGC .rr-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uA3kNVdrGC .rr-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uA3kNVdrGC .rr-brand .navbar-caption {
  line-height: 1.2 !important;
}
.cid-uA3kNVdrGC .rr-brand .navbar-logo a {
  outline: none;
}
.cid-uA3kNVdrGC .navbar-caption-wrap {
  align-items: center;
}
.cid-uA3kNVdrGC .navbar-caption {
  line-height: 1.2 !important;
  padding-left: 1rem;
  padding-right: .5rem;
}
.cid-uA3kNVdrGC .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uA3kNVdrGC .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
  top: -2px;
}
.cid-uA3kNVdrGC .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uA3kNVdrGC .navbar-nav .nav-item .nav-link:hover {
  color: #f3662a !important;
}
.cid-uA3kNVdrGC .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uA3kNVdrGC .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uA3kNVdrGC .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uA3kNVdrGC .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uA3kNVdrGC .navbar-nav {
    padding-left: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uA3kNVdrGC .navbar-nav {
    align-items: center;
  }
}
.cid-uA3kNVdrGC .nav-link {
  width: fit-content;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uA3kNVdrGC .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uA3kNVdrGC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uA3kNVdrGC .container-fluid {
  display: flex;
  height: fit-content;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-uA3kNVdrGC .container-fluid {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uA3kNVdrGC .container-fluid {
    height: 72px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uA3kNVdrGC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uA3kNVdrGC .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 0px !important;
  border-radius: 1rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  border-radius: 4px !important;
}
.cid-uA3kNVdrGC .nav-item:focus,
.cid-uA3kNVdrGC .nav-link:focus {
  outline: none;
}
.cid-uA3kNVdrGC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uA3kNVdrGC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uA3kNVdrGC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uA3kNVdrGC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uA3kNVdrGC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uA3kNVdrGC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uA3kNVdrGC .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  top: -2px;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uA3kNVdrGC .navbar.opened {
  transition: all 0.3s;
}
.cid-uA3kNVdrGC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uA3kNVdrGC .navbar .navbar-logo img {
  width: auto;
}
.cid-uA3kNVdrGC .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uA3kNVdrGC .navbar.collapsed {
  justify-content: center;
}
.cid-uA3kNVdrGC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uA3kNVdrGC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uA3kNVdrGC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uA3kNVdrGC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uA3kNVdrGC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uA3kNVdrGC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uA3kNVdrGC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uA3kNVdrGC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uA3kNVdrGC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uA3kNVdrGC .navbar {
    min-height: 72px;
  }
  .cid-uA3kNVdrGC .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uA3kNVdrGC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uA3kNVdrGC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uA3kNVdrGC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uA3kNVdrGC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uA3kNVdrGC .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uA3kNVdrGC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uA3kNVdrGC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uA3kNVdrGC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uA3kNVdrGC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uA3kNVdrGC .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uA3kNVdrGC .dropdown-item.active,
.cid-uA3kNVdrGC .dropdown-item:active {
  background-color: transparent;
}
.cid-uA3kNVdrGC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uA3kNVdrGC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uA3kNVdrGC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uA3kNVdrGC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  margin-right: 10px;
}
.cid-uA3kNVdrGC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  transform: none;
  top: -12px;
}
.cid-uA3kNVdrGC .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uA3kNVdrGC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uA3kNVdrGC .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uA3kNVdrGC .navbar-buttons {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .cid-uA3kNVdrGC .navbar-buttons {
    text-align: center;
  }
}
.cid-uA3kNVdrGC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uA3kNVdrGC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f3662a;
}
.cid-uA3kNVdrGC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uA3kNVdrGC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uA3kNVdrGC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uA3kNVdrGC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uA3kNVdrGC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uA3kNVdrGC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uA3kNVdrGC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uA3kNVdrGC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uA3kNVdrGC .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uA3kNVdrGC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uA3kNVdrGC .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uA3kNVdrGC .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uA3kNVdrGC .navbar {
    height: 70px;
  }
  .cid-uA3kNVdrGC .navbar.opened {
    height: auto;
  }
  .cid-uA3kNVdrGC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uA3kNVdrGC .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uA3kNVdrGC .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uA3kNVdrGC .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uA3kNVdrGC .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uA3kNVdrGC .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uA3kNVdrGC .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uA3kNVdrGC .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uA3kNVdrGC .navbar-brand {
    margin-right: auto;
  }
  .cid-uA3kNVdrGC .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-uA3kNVdrGC .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uA3kNVdrGC .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uA3kNVdrGC .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uA3kNVdrGC .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uA3kNVdrGC .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uA3kNVdrGC .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uA3kNVdrGC .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uA3kNVdrGC .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uA3kNVdrGC .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uA3kNVdrGC .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uA3kNWSKKn {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/compact12-105-1111x1663.jpeg");
}
.cid-uA3kNWSKKn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3kNWSKKn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uA3kNWSKKn .container {
    padding: 0 15px;
  }
}
.cid-uA3kNWSKKn .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uA3kNWSKKn .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uA3kNWSKKn .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-uA3kNWSKKn .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-uA3kNWSKKn .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-uA3kNWSKKn .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-uA3kNWSKKn .mbr-section-title {
  color: #131c28;
}
.cid-uA3kNWSKKn .mbr-desc {
  color: #fafafa;
}
.cid-uA3kNWSKKn .mbr-section-title,
.cid-uA3kNWSKKn .mbr-section-btn {
  color: #f3662a;
}
.cid-uA3kNYgpCF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ededed;
}
.cid-uA3kNYgpCF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3kNYgpCF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uA3kNYgpCF .container {
    padding: 0 16px;
  }
}
.cid-uA3kNYgpCF .row {
  position: relative;
  justify-content: space-between;
}
.cid-uA3kNYgpCF .content-wrapper {
  position: sticky;
  top: 100px;
}
@media (max-width: 992px) {
  .cid-uA3kNYgpCF .content-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uA3kNYgpCF .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uA3kNYgpCF .content-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uA3kNYgpCF .content-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uA3kNYgpCF .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uA3kNYgpCF .image-wrapper img {
  height: 560px;
  object-fit: cover;
  margin-bottom: 24px;
}
.cid-uA3kNYgpCF .image-wrapper img:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uA3kNYgpCF .image-wrapper img {
    height: 350px;
  }
}
.cid-uA3kNYgpCF .mbr-section-title {
  color: #000000;
}
.cid-uA3kNYgpCF .mbr-text {
  color: #000000;
}
.cid-uA3kNZG1Xq {
  padding-top: 2rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background-color: #202020;
}
.cid-uA3kNZG1Xq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3kNZG1Xq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA3kNZG1Xq .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uA3kNZG1Xq .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uA3kNZG1Xq .container {
    padding: 0 24px;
  }
}
.cid-uA3kNZG1Xq .content-wrapper .icon-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uA3kNZG1Xq .content-wrapper .icon-wrapper {
    margin-bottom: 28px;
  }
}
.cid-uA3kNZG1Xq .content-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  display: inline-flex;
  color: #f3662a;
}
@media (max-width: 992px) {
  .cid-uA3kNZG1Xq .content-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-uA3kNZG1Xq .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uA3kNZG1Xq .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin: 80px 0 0 0;
}
@media (max-width: 1200px) {
  .cid-uA3kNZG1Xq .content-wrapper .text-wrap .mbr-text {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .cid-uA3kNZG1Xq .content-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin: 28px 0 0 0;
  }
}
.cid-uA3kNZG1Xq .mbr-section-title {
  color: #ffffff;
}
.cid-uA3kNZG1Xq .mbr-text,
.cid-uA3kNZG1Xq .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uA3kNZG1Xq .mbr-section-title,
.cid-uA3kNZG1Xq .icon-wrapper {
  text-align: center;
}
.cid-uA3kO0rhe0 {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/haulotte-products-range-scissor-lifts-img1-1920x1048.jpg");
}
.cid-uA3kO0rhe0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3kO0rhe0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA3kO0rhe0 .content-container {
  display: flex;
  width: 100%;
}
.cid-uA3kO0rhe0 .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
.cid-uA3kO0rhe0 .text-wrap {
  width: 100%;
  padding: 0;
}
.cid-uA3kO0rhe0 .mbr-section-title {
  color: #f3662a;
  margin-bottom: 20px !important;
  width: 100%;
}
.cid-uA3kO0rhe0 .mbr-text {
  color: #112B6D;
  padding-bottom: 0.9rem !important;
  width: 100%;
  margin-bottom: 0 !important;
}
.cid-uA3kO0rhe0 .mbr-section-btn {
  margin-top: 20px;
}
@media (min-width: 576px) {
  .cid-uA3kO0rhe0 .mbr-section-btn {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 991px) {
  .cid-uA3kO0rhe0 .mbr-section-btn {
    flex-direction: row;
    justify-content: space-around;
  }
}
.cid-uA3kO1c4Ib {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-uA3kO1c4Ib .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3kO1c4Ib .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA3kO1c4Ib .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uA3kO1c4Ib .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uA3kO1c4Ib .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uA3kO1c4Ib .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uA3kO1c4Ib .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uA3kO1c4Ib .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uA3kO1c4Ib .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uA3kO1c4Ib .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uA3kO1c4Ib .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uA3kO1c4Ib .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #f3662a;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uA3kO1c4Ib .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uA3kO1c4Ib .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uA3kO1c4Ib .items-wrapper .card {
  padding: 0 32px;
}
.cid-uA3kO1c4Ib .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uA3kO1c4Ib .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uA3kO1c4Ib .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uA3kO1c4Ib .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uA3kO1c4Ib .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uA3kO1c4Ib .list-wrapper .list .item-wrap:hover,
.cid-uA3kO1c4Ib .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uA3kO1c4Ib .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uA3kO1c4Ib .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uA3kO1c4Ib .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uA3kO1c4Ib .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uA3kO1c4Ib .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uA3kO1c4Ib .mbr-copy {
  margin-bottom: 0;
  color: #fafafa;
}
.cid-uA3kO1c4Ib .mbr-desc {
  color: #ffffff;
}
.cid-uA3kO1c4Ib .mbr-text,
.cid-uA3kO1c4Ib .text-wrapper {
  color: #9aa0a6;
}
.cid-uA3kO1c4Ib .list {
  color: #9aa0a6;
}
.cid-uA3kO1c4Ib .mbr-text,
.cid-uA3kO1c4Ib .mbr-section-btn {
  color: #fafafa;
}
.cid-uA3lP1DTFg {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uA3lP1DTFg .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uA3lP1DTFg .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uA3lP1DTFg .navbar-logo {
  align-items: center;
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uA3lP1DTFg .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uA3lP1DTFg .wrapper {
  width: 100%;
  display: flex;
  max-width: 1620px;
  margin: auto;
}
.cid-uA3lP1DTFg .rr-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uA3lP1DTFg .rr-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uA3lP1DTFg .rr-brand .navbar-caption {
  line-height: 1.2 !important;
}
.cid-uA3lP1DTFg .rr-brand .navbar-logo a {
  outline: none;
}
.cid-uA3lP1DTFg .navbar-caption-wrap {
  align-items: center;
}
.cid-uA3lP1DTFg .navbar-caption {
  line-height: 1.2 !important;
  padding-left: 1rem;
  padding-right: .5rem;
}
.cid-uA3lP1DTFg .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uA3lP1DTFg .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
  top: -2px;
}
.cid-uA3lP1DTFg .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uA3lP1DTFg .navbar-nav .nav-item .nav-link:hover {
  color: #f3662a !important;
}
.cid-uA3lP1DTFg .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uA3lP1DTFg .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uA3lP1DTFg .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uA3lP1DTFg .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uA3lP1DTFg .navbar-nav {
    padding-left: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uA3lP1DTFg .navbar-nav {
    align-items: center;
  }
}
.cid-uA3lP1DTFg .nav-link {
  width: fit-content;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uA3lP1DTFg .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uA3lP1DTFg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uA3lP1DTFg .container-fluid {
  display: flex;
  height: fit-content;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-uA3lP1DTFg .container-fluid {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uA3lP1DTFg .container-fluid {
    height: 72px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uA3lP1DTFg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uA3lP1DTFg .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 0px !important;
  border-radius: 1rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  border-radius: 4px !important;
}
.cid-uA3lP1DTFg .nav-item:focus,
.cid-uA3lP1DTFg .nav-link:focus {
  outline: none;
}
.cid-uA3lP1DTFg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uA3lP1DTFg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uA3lP1DTFg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uA3lP1DTFg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uA3lP1DTFg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uA3lP1DTFg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uA3lP1DTFg .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  top: -2px;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uA3lP1DTFg .navbar.opened {
  transition: all 0.3s;
}
.cid-uA3lP1DTFg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uA3lP1DTFg .navbar .navbar-logo img {
  width: auto;
}
.cid-uA3lP1DTFg .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uA3lP1DTFg .navbar.collapsed {
  justify-content: center;
}
.cid-uA3lP1DTFg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uA3lP1DTFg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uA3lP1DTFg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uA3lP1DTFg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uA3lP1DTFg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uA3lP1DTFg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uA3lP1DTFg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uA3lP1DTFg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uA3lP1DTFg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uA3lP1DTFg .navbar {
    min-height: 72px;
  }
  .cid-uA3lP1DTFg .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uA3lP1DTFg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uA3lP1DTFg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uA3lP1DTFg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uA3lP1DTFg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uA3lP1DTFg .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uA3lP1DTFg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uA3lP1DTFg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uA3lP1DTFg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uA3lP1DTFg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uA3lP1DTFg .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uA3lP1DTFg .dropdown-item.active,
.cid-uA3lP1DTFg .dropdown-item:active {
  background-color: transparent;
}
.cid-uA3lP1DTFg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uA3lP1DTFg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uA3lP1DTFg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uA3lP1DTFg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  margin-right: 10px;
}
.cid-uA3lP1DTFg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  transform: none;
  top: -12px;
}
.cid-uA3lP1DTFg .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uA3lP1DTFg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uA3lP1DTFg .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uA3lP1DTFg .navbar-buttons {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .cid-uA3lP1DTFg .navbar-buttons {
    text-align: center;
  }
}
.cid-uA3lP1DTFg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uA3lP1DTFg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f3662a;
}
.cid-uA3lP1DTFg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uA3lP1DTFg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uA3lP1DTFg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uA3lP1DTFg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uA3lP1DTFg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uA3lP1DTFg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uA3lP1DTFg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uA3lP1DTFg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uA3lP1DTFg .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uA3lP1DTFg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uA3lP1DTFg .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uA3lP1DTFg .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uA3lP1DTFg .navbar {
    height: 70px;
  }
  .cid-uA3lP1DTFg .navbar.opened {
    height: auto;
  }
  .cid-uA3lP1DTFg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uA3lP1DTFg .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uA3lP1DTFg .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uA3lP1DTFg .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uA3lP1DTFg .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uA3lP1DTFg .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uA3lP1DTFg .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uA3lP1DTFg .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uA3lP1DTFg .navbar-brand {
    margin-right: auto;
  }
  .cid-uA3lP1DTFg .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-uA3lP1DTFg .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uA3lP1DTFg .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uA3lP1DTFg .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uA3lP1DTFg .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uA3lP1DTFg .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uA3lP1DTFg .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uA3lP1DTFg .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uA3lP1DTFg .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uA3lP1DTFg .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uA3lP1DTFg .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uA3lP3y5Mv {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/compact12-82-900x600.jpg");
}
.cid-uA3lP3y5Mv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3lP3y5Mv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uA3lP3y5Mv .container {
    padding: 0 15px;
  }
}
.cid-uA3lP3y5Mv .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uA3lP3y5Mv .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uA3lP3y5Mv .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-uA3lP3y5Mv .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-uA3lP3y5Mv .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-uA3lP3y5Mv .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-uA3lP3y5Mv .mbr-section-title {
  color: #131c28;
}
.cid-uA3lP3y5Mv .mbr-desc {
  color: #fafafa;
}
.cid-uA3lP3y5Mv .mbr-section-title,
.cid-uA3lP3y5Mv .mbr-section-btn {
  color: #f3662a;
}
.cid-uA3lP5kKxq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ededed;
}
.cid-uA3lP5kKxq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3lP5kKxq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uA3lP5kKxq .container {
    padding: 0 16px;
  }
}
.cid-uA3lP5kKxq .row {
  position: relative;
  justify-content: space-between;
}
.cid-uA3lP5kKxq .content-wrapper {
  position: sticky;
  top: 100px;
}
@media (max-width: 992px) {
  .cid-uA3lP5kKxq .content-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uA3lP5kKxq .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uA3lP5kKxq .content-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uA3lP5kKxq .content-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uA3lP5kKxq .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uA3lP5kKxq .image-wrapper img {
  height: 560px;
  object-fit: cover;
  margin-bottom: 24px;
}
.cid-uA3lP5kKxq .image-wrapper img:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uA3lP5kKxq .image-wrapper img {
    height: 350px;
  }
}
.cid-uA3lP5kKxq .mbr-section-title {
  color: #000000;
}
.cid-uA3lP5kKxq .mbr-text {
  color: #000000;
}
.cid-uA3lP63GB9 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background-color: #202020;
}
.cid-uA3lP63GB9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3lP63GB9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA3lP63GB9 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uA3lP63GB9 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uA3lP63GB9 .container {
    padding: 0 24px;
  }
}
.cid-uA3lP63GB9 .content-wrapper .icon-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uA3lP63GB9 .content-wrapper .icon-wrapper {
    margin-bottom: 28px;
  }
}
.cid-uA3lP63GB9 .content-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  display: inline-flex;
  color: #f3662a;
}
@media (max-width: 992px) {
  .cid-uA3lP63GB9 .content-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-uA3lP63GB9 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uA3lP63GB9 .content-wrapper .text-wrap .mbr-text {
  display: inline-flex;
  width: 40%;
  margin: 80px 0 0 0;
}
@media (max-width: 1200px) {
  .cid-uA3lP63GB9 .content-wrapper .text-wrap .mbr-text {
    width: 70%;
  }
}
@media (max-width: 992px) {
  .cid-uA3lP63GB9 .content-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin: 28px 0 0 0;
  }
}
.cid-uA3lP63GB9 .mbr-section-title {
  color: #ffffff;
}
.cid-uA3lP63GB9 .mbr-text,
.cid-uA3lP63GB9 .text-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uA3lP63GB9 .mbr-section-title,
.cid-uA3lP63GB9 .icon-wrapper {
  text-align: center;
}
.cid-uA3lP6P3CO {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/haulotte-products-range-scissor-lifts-img1-1920x1048.jpg");
}
.cid-uA3lP6P3CO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3lP6P3CO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA3lP6P3CO .content-container {
  display: flex;
  width: 100%;
}
.cid-uA3lP6P3CO .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
.cid-uA3lP6P3CO .text-wrap {
  width: 100%;
  padding: 0;
}
.cid-uA3lP6P3CO .mbr-section-title {
  color: #f3662a;
  margin-bottom: 20px !important;
  width: 100%;
}
.cid-uA3lP6P3CO .mbr-text {
  color: #112B6D;
  padding-bottom: 0.9rem !important;
  width: 100%;
  margin-bottom: 0 !important;
}
.cid-uA3lP6P3CO .mbr-section-btn {
  margin-top: 20px;
}
@media (min-width: 576px) {
  .cid-uA3lP6P3CO .mbr-section-btn {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 991px) {
  .cid-uA3lP6P3CO .mbr-section-btn {
    flex-direction: row;
    justify-content: space-around;
  }
}
.cid-uA3lP7vbPD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-uA3lP7vbPD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3lP7vbPD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA3lP7vbPD .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uA3lP7vbPD .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uA3lP7vbPD .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uA3lP7vbPD .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uA3lP7vbPD .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uA3lP7vbPD .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uA3lP7vbPD .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uA3lP7vbPD .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uA3lP7vbPD .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uA3lP7vbPD .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #f3662a;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uA3lP7vbPD .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uA3lP7vbPD .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uA3lP7vbPD .items-wrapper .card {
  padding: 0 32px;
}
.cid-uA3lP7vbPD .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uA3lP7vbPD .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uA3lP7vbPD .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uA3lP7vbPD .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uA3lP7vbPD .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uA3lP7vbPD .list-wrapper .list .item-wrap:hover,
.cid-uA3lP7vbPD .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uA3lP7vbPD .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uA3lP7vbPD .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uA3lP7vbPD .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uA3lP7vbPD .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uA3lP7vbPD .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uA3lP7vbPD .mbr-copy {
  margin-bottom: 0;
  color: #fafafa;
}
.cid-uA3lP7vbPD .mbr-desc {
  color: #ffffff;
}
.cid-uA3lP7vbPD .mbr-text,
.cid-uA3lP7vbPD .text-wrapper {
  color: #9aa0a6;
}
.cid-uA3lP7vbPD .list {
  color: #9aa0a6;
}
.cid-uA3lP7vbPD .mbr-text,
.cid-uA3lP7vbPD .mbr-section-btn {
  color: #fafafa;
}
.cid-uA3ntGVWTm {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uA3ntGVWTm .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uA3ntGVWTm .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uA3ntGVWTm .navbar-logo {
  align-items: center;
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uA3ntGVWTm .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uA3ntGVWTm .wrapper {
  width: 100%;
  display: flex;
  max-width: 1620px;
  margin: auto;
}
.cid-uA3ntGVWTm .rr-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uA3ntGVWTm .rr-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uA3ntGVWTm .rr-brand .navbar-caption {
  line-height: 1.2 !important;
}
.cid-uA3ntGVWTm .rr-brand .navbar-logo a {
  outline: none;
}
.cid-uA3ntGVWTm .navbar-caption-wrap {
  align-items: center;
}
.cid-uA3ntGVWTm .navbar-caption {
  line-height: 1.2 !important;
  padding-left: 1rem;
  padding-right: .5rem;
}
.cid-uA3ntGVWTm .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uA3ntGVWTm .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
  top: -2px;
}
.cid-uA3ntGVWTm .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uA3ntGVWTm .navbar-nav .nav-item .nav-link:hover {
  color: #f3662a !important;
}
.cid-uA3ntGVWTm .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uA3ntGVWTm .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uA3ntGVWTm .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uA3ntGVWTm .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uA3ntGVWTm .navbar-nav {
    padding-left: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uA3ntGVWTm .navbar-nav {
    align-items: center;
  }
}
.cid-uA3ntGVWTm .nav-link {
  width: fit-content;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uA3ntGVWTm .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uA3ntGVWTm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uA3ntGVWTm .container-fluid {
  display: flex;
  height: fit-content;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-uA3ntGVWTm .container-fluid {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uA3ntGVWTm .container-fluid {
    height: 72px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uA3ntGVWTm .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uA3ntGVWTm .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 0px !important;
  border-radius: 1rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  border-radius: 4px !important;
}
.cid-uA3ntGVWTm .nav-item:focus,
.cid-uA3ntGVWTm .nav-link:focus {
  outline: none;
}
.cid-uA3ntGVWTm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uA3ntGVWTm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uA3ntGVWTm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uA3ntGVWTm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uA3ntGVWTm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uA3ntGVWTm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uA3ntGVWTm .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  top: -2px;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uA3ntGVWTm .navbar.opened {
  transition: all 0.3s;
}
.cid-uA3ntGVWTm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uA3ntGVWTm .navbar .navbar-logo img {
  width: auto;
}
.cid-uA3ntGVWTm .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uA3ntGVWTm .navbar.collapsed {
  justify-content: center;
}
.cid-uA3ntGVWTm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uA3ntGVWTm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uA3ntGVWTm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uA3ntGVWTm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uA3ntGVWTm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uA3ntGVWTm .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uA3ntGVWTm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uA3ntGVWTm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uA3ntGVWTm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uA3ntGVWTm .navbar {
    min-height: 72px;
  }
  .cid-uA3ntGVWTm .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uA3ntGVWTm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uA3ntGVWTm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uA3ntGVWTm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uA3ntGVWTm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uA3ntGVWTm .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uA3ntGVWTm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uA3ntGVWTm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uA3ntGVWTm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uA3ntGVWTm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uA3ntGVWTm .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uA3ntGVWTm .dropdown-item.active,
.cid-uA3ntGVWTm .dropdown-item:active {
  background-color: transparent;
}
.cid-uA3ntGVWTm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uA3ntGVWTm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uA3ntGVWTm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uA3ntGVWTm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  margin-right: 10px;
}
.cid-uA3ntGVWTm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  transform: none;
  top: -12px;
}
.cid-uA3ntGVWTm .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uA3ntGVWTm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uA3ntGVWTm .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uA3ntGVWTm .navbar-buttons {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .cid-uA3ntGVWTm .navbar-buttons {
    text-align: center;
  }
}
.cid-uA3ntGVWTm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uA3ntGVWTm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f3662a;
}
.cid-uA3ntGVWTm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uA3ntGVWTm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uA3ntGVWTm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uA3ntGVWTm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uA3ntGVWTm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uA3ntGVWTm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uA3ntGVWTm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uA3ntGVWTm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uA3ntGVWTm .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uA3ntGVWTm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uA3ntGVWTm .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uA3ntGVWTm .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uA3ntGVWTm .navbar {
    height: 70px;
  }
  .cid-uA3ntGVWTm .navbar.opened {
    height: auto;
  }
  .cid-uA3ntGVWTm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uA3ntGVWTm .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uA3ntGVWTm .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uA3ntGVWTm .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uA3ntGVWTm .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uA3ntGVWTm .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uA3ntGVWTm .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uA3ntGVWTm .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uA3ntGVWTm .navbar-brand {
    margin-right: auto;
  }
  .cid-uA3ntGVWTm .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-uA3ntGVWTm .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uA3ntGVWTm .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uA3ntGVWTm .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uA3ntGVWTm .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uA3ntGVWTm .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uA3ntGVWTm .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uA3ntGVWTm .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uA3ntGVWTm .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uA3ntGVWTm .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uA3ntGVWTm .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uA3ntIZE1F {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/compact12-82-900x600.jpg");
}
.cid-uA3ntIZE1F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3ntIZE1F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uA3ntIZE1F .container {
    padding: 0 15px;
  }
}
.cid-uA3ntIZE1F .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uA3ntIZE1F .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uA3ntIZE1F .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-uA3ntIZE1F .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-uA3ntIZE1F .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-uA3ntIZE1F .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-uA3ntIZE1F .mbr-section-title {
  color: #131c28;
}
.cid-uA3ntIZE1F .mbr-desc {
  color: #fafafa;
}
.cid-uA3ntIZE1F .mbr-section-title,
.cid-uA3ntIZE1F .mbr-section-btn {
  color: #f3662a;
}
.cid-uA3nFvskri {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uA3nFvskri .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3nFvskri .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uA3nFvskri .container {
    padding: 0 30px;
  }
}
.cid-uA3nFvskri .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uA3nFvskri .desc-wrapper .mbr-desc {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uA3nFvskri .desc-wrapper .mbr-desc {
    margin-bottom: 30px;
  }
}
.cid-uA3nFvskri .text-wrapper .mbr-text {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uA3nFvskri .text-wrapper .mbr-text {
    margin-bottom: 30px;
  }
}
.cid-uA3nFvskri .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 992px) {
  .cid-uA3nFvskri .items-wrapper {
    display: block;
  }
}
.cid-uA3nFvskri .items-wrapper .item {
  margin: 60px 0;
  padding: 0 40px;
  border-right: 1px solid #dbf5d1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0 !important;
}
.cid-uA3nFvskri .items-wrapper .item:nth-child(3n) {
  border-right: none;
}
@media (max-width: 992px) {
  .cid-uA3nFvskri .items-wrapper .item {
    margin: 30px 0 0 0;
    padding: 0 0 30px 0;
    border-right: none;
    border-bottom: 1px solid #dbf5d1;
  }
}
.cid-uA3nFvskri .items-wrapper .item .item-wrapper {
  border-radius: 0 !important;
}
.cid-uA3nFvskri .items-wrapper .item .item-wrapper .item-img {
  margin-bottom: 30px;
}
.cid-uA3nFvskri .items-wrapper .item .item-wrapper .item-img img {
  height: 260px;
  object-fit: cover;
}
.cid-uA3nFvskri .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 20px;
}
.cid-uA3nFvskri .items-wrapper .item .item-wrapper .item-content .item-date {
  margin-bottom: 30px;
}
.cid-uA3nFvskri .items-wrapper .item .item-wrapper .item-content .mbr-text {
  margin-bottom: 0;
}
.cid-uA3nFvskri .items-wrapper .item .mbr-section-btn {
  margin-top: 30px;
}
.cid-uA3nFvskri .item-date {
  color: #f3662a;
}
.cid-uA3nFvskri .item-title {
  color: #22654E;
}
.cid-uA3nFvskri .item-text {
  color: #144031;
}
.cid-uA3nFvskri .item-title,
.cid-uA3nFvskri .mbr-section-btn {
  color: #000000;
}
.cid-uA3ntMOdta {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/haulotte-products-range-scissor-lifts-img1-1920x1048.jpg");
}
.cid-uA3ntMOdta .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3ntMOdta .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA3ntMOdta .content-container {
  display: flex;
  width: 100%;
}
.cid-uA3ntMOdta .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
.cid-uA3ntMOdta .text-wrap {
  width: 100%;
  padding: 0;
}
.cid-uA3ntMOdta .mbr-section-title {
  color: #f3662a;
  margin-bottom: 20px !important;
  width: 100%;
}
.cid-uA3ntMOdta .mbr-text {
  color: #112B6D;
  padding-bottom: 0.9rem !important;
  width: 100%;
  margin-bottom: 0 !important;
}
.cid-uA3ntMOdta .mbr-section-btn {
  margin-top: 20px;
}
@media (min-width: 576px) {
  .cid-uA3ntMOdta .mbr-section-btn {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 991px) {
  .cid-uA3ntMOdta .mbr-section-btn {
    flex-direction: row;
    justify-content: space-around;
  }
}
.cid-uA3ntNIJMl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-uA3ntNIJMl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3ntNIJMl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA3ntNIJMl .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uA3ntNIJMl .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uA3ntNIJMl .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uA3ntNIJMl .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uA3ntNIJMl .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uA3ntNIJMl .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uA3ntNIJMl .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uA3ntNIJMl .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uA3ntNIJMl .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uA3ntNIJMl .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #f3662a;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uA3ntNIJMl .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uA3ntNIJMl .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uA3ntNIJMl .items-wrapper .card {
  padding: 0 32px;
}
.cid-uA3ntNIJMl .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uA3ntNIJMl .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uA3ntNIJMl .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uA3ntNIJMl .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uA3ntNIJMl .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uA3ntNIJMl .list-wrapper .list .item-wrap:hover,
.cid-uA3ntNIJMl .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uA3ntNIJMl .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uA3ntNIJMl .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uA3ntNIJMl .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uA3ntNIJMl .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uA3ntNIJMl .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uA3ntNIJMl .mbr-copy {
  margin-bottom: 0;
  color: #fafafa;
}
.cid-uA3ntNIJMl .mbr-desc {
  color: #ffffff;
}
.cid-uA3ntNIJMl .mbr-text,
.cid-uA3ntNIJMl .text-wrapper {
  color: #9aa0a6;
}
.cid-uA3ntNIJMl .list {
  color: #9aa0a6;
}
.cid-uA3ntNIJMl .mbr-text,
.cid-uA3ntNIJMl .mbr-section-btn {
  color: #fafafa;
}
.cid-uA3nSg2wLG {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uA3nSg2wLG .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uA3nSg2wLG .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uA3nSg2wLG .navbar-logo {
  align-items: center;
  padding-left: 2rem;
  margin: 0 !important;
 
}
@media (max-width: 767px) {
  .cid-uA3nSg2wLG .navbar-logo {
    padding-left: 1rem;
  
  }
}
.cid-uA3nSg2wLG .wrapper {
  width: 100%;
  display: flex;
  max-width: 1620px;
  margin: auto;
}
.cid-uA3nSg2wLG .rr-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uA3nSg2wLG .rr-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uA3nSg2wLG .rr-brand .navbar-caption {
  line-height: 1.2 !important;
}
.cid-uA3nSg2wLG .rr-brand .navbar-logo a {
  outline: none;
}
.cid-uA3nSg2wLG .navbar-caption-wrap {
  align-items: center;
}
.cid-uA3nSg2wLG .navbar-caption {
  line-height: 1.2 !important;
  padding-left: 1rem;
  padding-right: .5rem;
}
.cid-uA3nSg2wLG .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uA3nSg2wLG .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
  top: -2px;
}
.cid-uA3nSg2wLG .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uA3nSg2wLG .navbar-nav .nav-item .nav-link:hover {
  color: #f3662a !important;
}
.cid-uA3nSg2wLG .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uA3nSg2wLG .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uA3nSg2wLG .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uA3nSg2wLG .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uA3nSg2wLG .navbar-nav {
    padding-left: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uA3nSg2wLG .navbar-nav {
    align-items: center;
  }
}
.cid-uA3nSg2wLG .nav-link {
  width: fit-content;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uA3nSg2wLG .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uA3nSg2wLG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uA3nSg2wLG .container-fluid {
  display: flex;
  height: fit-content;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-uA3nSg2wLG .container-fluid {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uA3nSg2wLG .container-fluid {
    height: 72px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uA3nSg2wLG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uA3nSg2wLG .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 0px !important;
  border-radius: 1rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  border-radius: 4px !important;
}
.cid-uA3nSg2wLG .nav-item:focus,
.cid-uA3nSg2wLG .nav-link:focus {
  outline: none;
}
.cid-uA3nSg2wLG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uA3nSg2wLG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uA3nSg2wLG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uA3nSg2wLG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uA3nSg2wLG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uA3nSg2wLG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uA3nSg2wLG .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  top: -2px;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uA3nSg2wLG .navbar.opened {
  transition: all 0.3s;
}
.cid-uA3nSg2wLG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uA3nSg2wLG .navbar .navbar-logo img {
  width: auto;
  
}
.cid-uA3nSg2wLG .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uA3nSg2wLG .navbar.collapsed {
  justify-content: center;
}
.cid-uA3nSg2wLG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uA3nSg2wLG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uA3nSg2wLG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uA3nSg2wLG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uA3nSg2wLG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uA3nSg2wLG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uA3nSg2wLG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uA3nSg2wLG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uA3nSg2wLG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uA3nSg2wLG .navbar {
    min-height: 72px;
  }
  .cid-uA3nSg2wLG .navbar .navbar-logo img {
    height: 5rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uA3nSg2wLG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uA3nSg2wLG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uA3nSg2wLG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uA3nSg2wLG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uA3nSg2wLG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uA3nSg2wLG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uA3nSg2wLG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uA3nSg2wLG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uA3nSg2wLG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uA3nSg2wLG .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uA3nSg2wLG .dropdown-item.active,
.cid-uA3nSg2wLG .dropdown-item:active {
  background-color: transparent;
}
.cid-uA3nSg2wLG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uA3nSg2wLG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uA3nSg2wLG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uA3nSg2wLG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  margin-right: 10px;
}
.cid-uA3nSg2wLG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  transform: none;
  top: -12px;
}
.cid-uA3nSg2wLG .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uA3nSg2wLG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uA3nSg2wLG .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uA3nSg2wLG .navbar-buttons {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .cid-uA3nSg2wLG .navbar-buttons {
    text-align: center;
  }
}
.cid-uA3nSg2wLG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uA3nSg2wLG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f3662a;
}
.cid-uA3nSg2wLG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uA3nSg2wLG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uA3nSg2wLG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uA3nSg2wLG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uA3nSg2wLG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uA3nSg2wLG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uA3nSg2wLG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uA3nSg2wLG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uA3nSg2wLG .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uA3nSg2wLG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uA3nSg2wLG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uA3nSg2wLG .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uA3nSg2wLG .navbar {
    height: 70px;
  }
  .cid-uA3nSg2wLG .navbar.opened {
    height: auto;
  }
  .cid-uA3nSg2wLG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uA3nSg2wLG .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uA3nSg2wLG .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uA3nSg2wLG .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uA3nSg2wLG .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uA3nSg2wLG .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uA3nSg2wLG .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uA3nSg2wLG .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uA3nSg2wLG .navbar-brand {
    margin-right: auto;
  }
  .cid-uA3nSg2wLG .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-uA3nSg2wLG .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uA3nSg2wLG .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uA3nSg2wLG .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uA3nSg2wLG .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uA3nSg2wLG .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uA3nSg2wLG .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uA3nSg2wLG .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uA3nSg2wLG .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uA3nSg2wLG .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uA3nSg2wLG .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uA3nShIEnN {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/compact12-33-900x600.jpg");
}
.cid-uA3nShIEnN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3nShIEnN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uA3nShIEnN .container {
    padding: 0 15px;
  }
}
.cid-uA3nShIEnN .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uA3nShIEnN .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uA3nShIEnN .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-uA3nShIEnN .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-uA3nShIEnN .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-uA3nShIEnN .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-uA3nShIEnN .mbr-section-title {
  color: #131c28;
}
.cid-uA3nShIEnN .mbr-desc {
  color: #fafafa;
}
.cid-uA3nShIEnN .mbr-section-title,
.cid-uA3nShIEnN .mbr-section-btn {
  color: #f3662a;
}
.cid-uA3ocZ56o8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uA3ocZ56o8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3ocZ56o8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA3ocZ56o8 .item {
  padding-bottom: 2rem;
}
.cid-uA3ocZ56o8 .item-wrapper {
  position: relative;
}
.cid-uA3ocZ56o8 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uA3ocZ56o8 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uA3ocZ56o8 .carousel-control,
.cid-uA3ocZ56o8 .close {
  background: #1b1b1b;
}
.cid-uA3ocZ56o8 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uA3ocZ56o8 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uA3ocZ56o8 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uA3ocZ56o8 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uA3ocZ56o8 .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-uA3ocZ56o8 .close::before {
  content: '\e91a';
}
.cid-uA3ocZ56o8 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uA3ocZ56o8 .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-uA3ocZ56o8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uA3ocZ56o8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uA3ocZ56o8 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uA3ocZ56o8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uA3ocZ56o8 .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-uA3ocZ56o8 .carousel-indicators li.active,
.cid-uA3ocZ56o8 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uA3ocZ56o8 .carousel-indicators li::after,
.cid-uA3ocZ56o8 .carousel-indicators li::before {
  content: none;
}
.cid-uA3ocZ56o8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uA3ocZ56o8 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uA3ocZ56o8 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uA3ocZ56o8 .carousel-indicators {
    display: none;
  }
}
.cid-uA3ocZ56o8 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uA3ocZ56o8 .carousel-inner > .active {
  display: block;
}
.cid-uA3ocZ56o8 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uA3ocZ56o8 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uA3ocZ56o8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uA3ocZ56o8 .carousel-control,
  .cid-uA3ocZ56o8 .carousel-indicators,
  .cid-uA3ocZ56o8 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uA3ocZ56o8 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uA3ocZ56o8 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uA3ocZ56o8 .carousel-indicators .active,
.cid-uA3ocZ56o8 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uA3ocZ56o8 .carousel-indicators .active {
  background: #fff;
}
.cid-uA3ocZ56o8 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uA3ocZ56o8 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uA3ocZ56o8 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uA3ocZ56o8 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uA3ocZ56o8 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uA3ocZ56o8 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uA3ocZ56o8 .carousel {
  width: 100%;
}
.cid-uA3ocZ56o8 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uA3ocZ56o8 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uA3ocZ56o8 .modal.fade .modal-dialog,
.cid-uA3ocZ56o8 .modal.in .modal-dialog {
  transform: none;
}
.cid-uA3ocZ56o8 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uA3ocZ56o8 H6 {
  text-align: center;
}
.cid-uA3nSkpydk {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/haulotte-products-range-scissor-lifts-img1-1920x1048.jpg");
}
.cid-uA3nSkpydk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3nSkpydk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA3nSkpydk .content-container {
  display: flex;
  width: 100%;
}
.cid-uA3nSkpydk .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
.cid-uA3nSkpydk .text-wrap {
  width: 100%;
  padding: 0;
}
.cid-uA3nSkpydk .mbr-section-title {
  color: #f3662a;
  margin-bottom: 20px !important;
  width: 100%;
}
.cid-uA3nSkpydk .mbr-text {
  color: #112B6D;
  padding-bottom: 0.9rem !important;
  width: 100%;
  margin-bottom: 0 !important;
}
.cid-uA3nSkpydk .mbr-section-btn {
  margin-top: 20px;
}
@media (min-width: 576px) {
  .cid-uA3nSkpydk .mbr-section-btn {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 991px) {
  .cid-uA3nSkpydk .mbr-section-btn {
    flex-direction: row;
    justify-content: space-around;
  }
}
.cid-uA3nSl7PFJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-uA3nSl7PFJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3nSl7PFJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA3nSl7PFJ .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uA3nSl7PFJ .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uA3nSl7PFJ .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uA3nSl7PFJ .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uA3nSl7PFJ .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uA3nSl7PFJ .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uA3nSl7PFJ .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uA3nSl7PFJ .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uA3nSl7PFJ .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uA3nSl7PFJ .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #f3662a;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uA3nSl7PFJ .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uA3nSl7PFJ .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uA3nSl7PFJ .items-wrapper .card {
  padding: 0 32px;
}
.cid-uA3nSl7PFJ .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uA3nSl7PFJ .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uA3nSl7PFJ .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uA3nSl7PFJ .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uA3nSl7PFJ .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uA3nSl7PFJ .list-wrapper .list .item-wrap:hover,
.cid-uA3nSl7PFJ .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uA3nSl7PFJ .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uA3nSl7PFJ .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uA3nSl7PFJ .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uA3nSl7PFJ .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uA3nSl7PFJ .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uA3nSl7PFJ .mbr-copy {
  margin-bottom: 0;
  color: #fafafa;
}
.cid-uA3nSl7PFJ .mbr-desc {
  color: #ffffff;
}
.cid-uA3nSl7PFJ .mbr-text,
.cid-uA3nSl7PFJ .text-wrapper {
  color: #9aa0a6;
}
.cid-uA3nSl7PFJ .list {
  color: #9aa0a6;
}
.cid-uA3nSl7PFJ .mbr-text,
.cid-uA3nSl7PFJ .mbr-section-btn {
  color: #fafafa;
}
.cid-uA3oGs6xic {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uA3oGs6xic .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uA3oGs6xic .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uA3oGs6xic .navbar-logo {
  align-items: center;
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uA3oGs6xic .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uA3oGs6xic .wrapper {
  width: 100%;
  display: flex;
  max-width: 1620px;
  margin: auto;
}
.cid-uA3oGs6xic .rr-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uA3oGs6xic .rr-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uA3oGs6xic .rr-brand .navbar-caption {
  line-height: 1.2 !important;
}
.cid-uA3oGs6xic .rr-brand .navbar-logo a {
  outline: none;
}
.cid-uA3oGs6xic .navbar-caption-wrap {
  align-items: center;
}
.cid-uA3oGs6xic .navbar-caption {
  line-height: 1.2 !important;
  padding-left: 1rem;
  padding-right: .5rem;
}
.cid-uA3oGs6xic .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uA3oGs6xic .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
  top: -2px;
}
.cid-uA3oGs6xic .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uA3oGs6xic .navbar-nav .nav-item .nav-link:hover {
  color: #f3662a !important;
}
.cid-uA3oGs6xic .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uA3oGs6xic .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uA3oGs6xic .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uA3oGs6xic .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uA3oGs6xic .navbar-nav {
    padding-left: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uA3oGs6xic .navbar-nav {
    align-items: center;
  }
}
.cid-uA3oGs6xic .nav-link {
  width: fit-content;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uA3oGs6xic .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uA3oGs6xic .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uA3oGs6xic .container-fluid {
  display: flex;
  height: fit-content;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000000;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-uA3oGs6xic .container-fluid {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uA3oGs6xic .container-fluid {
    height: 72px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uA3oGs6xic .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uA3oGs6xic .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 0px !important;
  border-radius: 1rem;
  transition: .3s all !important;
  min-width: auto;
  background: #000000;
  border-radius: 4px !important;
}
.cid-uA3oGs6xic .nav-item:focus,
.cid-uA3oGs6xic .nav-link:focus {
  outline: none;
}
.cid-uA3oGs6xic .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uA3oGs6xic .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uA3oGs6xic .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uA3oGs6xic .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uA3oGs6xic .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uA3oGs6xic .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uA3oGs6xic .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  top: -2px;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uA3oGs6xic .navbar.opened {
  transition: all 0.3s;
}
.cid-uA3oGs6xic .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uA3oGs6xic .navbar .navbar-logo img {
  width: auto;
}
.cid-uA3oGs6xic .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uA3oGs6xic .navbar.collapsed {
  justify-content: center;
}
.cid-uA3oGs6xic .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uA3oGs6xic .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uA3oGs6xic .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uA3oGs6xic .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uA3oGs6xic .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uA3oGs6xic .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uA3oGs6xic .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uA3oGs6xic .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uA3oGs6xic .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uA3oGs6xic .navbar {
    min-height: 72px;
  }
  .cid-uA3oGs6xic .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uA3oGs6xic .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uA3oGs6xic .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uA3oGs6xic .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uA3oGs6xic .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uA3oGs6xic .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uA3oGs6xic .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uA3oGs6xic .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uA3oGs6xic .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uA3oGs6xic .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uA3oGs6xic .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uA3oGs6xic .dropdown-item.active,
.cid-uA3oGs6xic .dropdown-item:active {
  background-color: transparent;
}
.cid-uA3oGs6xic .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uA3oGs6xic .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uA3oGs6xic .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uA3oGs6xic .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  margin-right: 10px;
}
.cid-uA3oGs6xic .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  transform: none;
  top: -12px;
}
.cid-uA3oGs6xic .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uA3oGs6xic ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uA3oGs6xic .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uA3oGs6xic .navbar-buttons {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .cid-uA3oGs6xic .navbar-buttons {
    text-align: center;
  }
}
.cid-uA3oGs6xic button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uA3oGs6xic button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f3662a;
}
.cid-uA3oGs6xic button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uA3oGs6xic button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uA3oGs6xic button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uA3oGs6xic button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uA3oGs6xic nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uA3oGs6xic nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uA3oGs6xic nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uA3oGs6xic nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uA3oGs6xic .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uA3oGs6xic a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uA3oGs6xic .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uA3oGs6xic .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uA3oGs6xic .navbar {
    height: 70px;
  }
  .cid-uA3oGs6xic .navbar.opened {
    height: auto;
  }
  .cid-uA3oGs6xic .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uA3oGs6xic .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uA3oGs6xic .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uA3oGs6xic .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uA3oGs6xic .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uA3oGs6xic .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uA3oGs6xic .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uA3oGs6xic .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uA3oGs6xic .navbar-brand {
    margin-right: auto;
  }
  .cid-uA3oGs6xic .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-uA3oGs6xic .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uA3oGs6xic .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uA3oGs6xic .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uA3oGs6xic .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uA3oGs6xic .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uA3oGs6xic .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uA3oGs6xic .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uA3oGs6xic .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uA3oGs6xic .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uA3oGs6xic .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uA3oGtT42I {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/compact12-105-1111x1663.jpeg");
}
.cid-uA3oGtT42I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3oGtT42I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uA3oGtT42I .container {
    padding: 0 15px;
  }
}
.cid-uA3oGtT42I .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uA3oGtT42I .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uA3oGtT42I .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-uA3oGtT42I .content-wrapper .border-wrap {
  margin-top: 100px;
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #68707c;
}
.cid-uA3oGtT42I .content-wrapper .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #68707c;
  transform: rotate(20deg);
}
@media (max-width: 992px) {
  .cid-uA3oGtT42I .content-wrapper .border-wrap {
    margin-top: 40px;
  }
}
.cid-uA3oGtT42I .mbr-section-title {
  color: #131c28;
}
.cid-uA3oGtT42I .mbr-desc {
  color: #fafafa;
}
.cid-uA3oGtT42I .mbr-section-title,
.cid-uA3oGtT42I .mbr-section-btn {
  color: #f3662a;
}
.cid-uA3p11Rnza {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f9f9fc;
}
.cid-uA3p11Rnza .text-content {
  padding-right: 10%;
}
@media (max-width: 992px) {
  .cid-uA3p11Rnza .text-content {
    padding: 0 12px;
  }
}
.cid-uA3p11Rnza .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
}
.cid-uA3p11Rnza .mbr-section-title {
  margin-bottom: 0;
  color: #20232a;
}
.cid-uA3p11Rnza .mbr-text {
  margin: 13.5px 0 0 0;
  color: #000000;
}
.cid-uA3p11Rnza .address-wrapper {
  margin-top: 96px;
}
@media (max-width: 768px) {
  .cid-uA3p11Rnza .address-wrapper {
    margin: 20px 0 0 0;
  }
}
.cid-uA3p11Rnza .address-wrapper .mbr-address {
  margin: 0;
}
.cid-uA3p11Rnza .address-wrapper .mbr-address span {
  width: 58px;
  height: 58px;
  font-size: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  margin-right: 14px;
  transition: all .4s ease;
}
@media (max-width: 992px) {
  .cid-uA3p11Rnza .address-wrapper .mbr-address span {
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .cid-uA3p11Rnza .address-wrapper .mbr-address span {
    margin-bottom: 0;
  }
}
.cid-uA3p11Rnza .address-wrapper .mbr-text {
  margin: 14px 0 0 72px;
}
@media (max-width: 992px) {
  .cid-uA3p11Rnza .address-wrapper .mbr-text {
    margin: 14px 0 0 0;
  }
}
@media (max-width: 768px) {
  .cid-uA3p11Rnza .address-wrapper .mbr-text {
    margin: 6px 0 0 72px;
  }
}
.cid-uA3p11Rnza .address-wrapper:hover span {
  color: #f3662a;
}
.cid-uA3p11Rnza .contact-wrapper {
  margin-top: 96px;
}
@media (max-width: 768px) {
  .cid-uA3p11Rnza .contact-wrapper {
    margin: 20px 0 0 0;
  }
}
.cid-uA3p11Rnza .contact-wrapper .mbr-contact {
  margin: 0;
}
.cid-uA3p11Rnza .contact-wrapper .mbr-contact span {
  width: 58px;
  height: 58px;
  font-size: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  margin-right: 14px;
  transition: all .4s ease;
}
@media (max-width: 992px) {
  .cid-uA3p11Rnza .contact-wrapper .mbr-contact span {
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .cid-uA3p11Rnza .contact-wrapper .mbr-contact span {
    margin-bottom: 0;
  }
}
.cid-uA3p11Rnza .contact-wrapper .item-link {
  margin-top: 14px;
  margin-left: 72px;
  display: block;
}
@media (max-width: 992px) {
  .cid-uA3p11Rnza .contact-wrapper .item-link {
    margin: 14px 0 0 0;
  }
}
@media (max-width: 768px) {
  .cid-uA3p11Rnza .contact-wrapper .item-link {
    margin: 6px 0 0 72px;
  }
}
.cid-uA3p11Rnza .contact-wrapper .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-uA3p11Rnza .contact-wrapper .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 5px;
  background-color: #6a6a6a;
  transition: all .4s ease;
}
.cid-uA3p11Rnza .contact-wrapper .mbr-phone {
  margin: 22px 0 0 72px;
}
@media (max-width: 992px) {
  .cid-uA3p11Rnza .contact-wrapper .mbr-phone {
    margin: 22px 0 0 0;
  }
}
@media (max-width: 768px) {
  .cid-uA3p11Rnza .contact-wrapper .mbr-phone {
    margin: 6px 0 0 72px;
  }
}
.cid-uA3p11Rnza .contact-wrapper:hover span {
  color: #f3662a;
}
.cid-uA3p11Rnza .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-uA3p11Rnza .mbr-address,
.cid-uA3p11Rnza .mbr-iconfont,
.cid-uA3p11Rnza .mbr-contact {
  color: #20232a;
}
.cid-uA3p11Rnza .mbr-link {
  color: #84858a;
}
.cid-uA3p11Rnza .mbr-phone {
  color: #20232a;
}
.cid-uA3p11Rnza .mbr-link,
.cid-uA3p11Rnza .item-link {
  color: #000000;
}
.cid-uA3oGwLZ0y {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/haulotte-products-range-scissor-lifts-img1-1920x1048.jpg");
}
.cid-uA3oGwLZ0y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3oGwLZ0y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA3oGwLZ0y .content-container {
  display: flex;
  width: 100%;
}
.cid-uA3oGwLZ0y .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
.cid-uA3oGwLZ0y .text-wrap {
  width: 100%;
  padding: 0;
}
.cid-uA3oGwLZ0y .mbr-section-title {
  color: #f3662a;
  margin-bottom: 20px !important;
  width: 100%;
}
.cid-uA3oGwLZ0y .mbr-text {
  color: #112B6D;
  padding-bottom: 0.9rem !important;
  width: 100%;
  margin-bottom: 0 !important;
}
.cid-uA3oGwLZ0y .mbr-section-btn {
  margin-top: 20px;
}
@media (min-width: 576px) {
  .cid-uA3oGwLZ0y .mbr-section-btn {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 991px) {
  .cid-uA3oGwLZ0y .mbr-section-btn {
    flex-direction: row;
    justify-content: space-around;
  }
}
.cid-uA3oGxBP0z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-uA3oGxBP0z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA3oGxBP0z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA3oGxBP0z .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uA3oGxBP0z .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uA3oGxBP0z .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uA3oGxBP0z .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uA3oGxBP0z .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uA3oGxBP0z .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uA3oGxBP0z .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uA3oGxBP0z .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uA3oGxBP0z .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uA3oGxBP0z .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #f3662a;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uA3oGxBP0z .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uA3oGxBP0z .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uA3oGxBP0z .items-wrapper .card {
  padding: 0 32px;
}
.cid-uA3oGxBP0z .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uA3oGxBP0z .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uA3oGxBP0z .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uA3oGxBP0z .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uA3oGxBP0z .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uA3oGxBP0z .list-wrapper .list .item-wrap:hover,
.cid-uA3oGxBP0z .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uA3oGxBP0z .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uA3oGxBP0z .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uA3oGxBP0z .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uA3oGxBP0z .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uA3oGxBP0z .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uA3oGxBP0z .mbr-copy {
  margin-bottom: 0;
  color: #fafafa;
}
.cid-uA3oGxBP0z .mbr-desc {
  color: #ffffff;
}
.cid-uA3oGxBP0z .mbr-text,
.cid-uA3oGxBP0z .text-wrapper {
  color: #9aa0a6;
}
.cid-uA3oGxBP0z .list {
  color: #9aa0a6;
}
.cid-uA3oGxBP0z .mbr-text,
.cid-uA3oGxBP0z .mbr-section-btn {
  color: #fafafa;
}
