body {
  font-family: Inter;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  line-height: 88px;
  letter-spacing: -0.01em;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3.125rem;
  line-height: 1.16;
  letter-spacing: -0.01em;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: -0.015em;
}
.display-4 > .mbr-iconfont {
  font-size: 1.40625rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  line-height: 1.228;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.56rem;
  line-height: 34px;
}
.display-7 > .mbr-iconfont {
  font-size: 1.95rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.248rem;
    font-size: calc( 1.196rem + (1.56 - 1.196) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.196rem + (1.56 - 1.196) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 30px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #ffb639 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #ed9909 !important;
}
.bg-danger {
  background-color: #ed4009 !important;
}
.btn-primary,
.btn-primary: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-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.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-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6839 !important;
  border-color: #ff6839 !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: #e13500 !important;
  border-color: #e13500 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e13500 !important;
  border-color: #e13500 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffb639 !important;
  border-color: #ffb639 !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: #e18e00 !important;
  border-color: #e18e00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #e18e00 !important;
  border-color: #e18e00 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ed9909 !important;
  border-color: #ed9909 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #996306 !important;
  border-color: #996306 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #996306 !important;
  border-color: #996306 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ed4009 !important;
  border-color: #ed4009 !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: #992906 !important;
  border-color: #992906 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #992906 !important;
  border-color: #992906 !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: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6839;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #e13500 !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: #ff6839 !important;
  border-color: #ff6839 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffb639;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #e18e00 !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: #ffb639 !important;
  border-color: #ffb639 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ed9909;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #996306 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ed9909 !important;
  border-color: #ed9909 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ed4009;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #992906 !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: #ed4009 !important;
  border-color: #ed4009 !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: #000000 !important;
}
.text-secondary {
  color: #ff6839 !important;
}
.text-success {
  color: #ffb639 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #ed9909 !important;
}
.text-danger {
  color: #ed4009 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #d23200 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #d28500 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #8b5a05 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #8b2505 !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: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #ed9909;
}
.alert-danger {
  background-color: #ed4009;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fde8c5;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fdd3c5;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.40625rem;
}
.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: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.40625rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.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: #000000;
  border-bottom-color: #000000;
}
.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: #000000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6839 !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='%23000000' %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;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  box-shadow: none;
  border: none;
  padding: 14px 30px 14px;
}
.mbr-section-btn .btn:hover .mbr-iconfont,
.mbr-section-btn-main .btn:hover .mbr-iconfont {
  transform: translateX(5px);
}
.mbr-section-btn .btn .mbr-iconfont,
.mbr-section-btn-main .btn .mbr-iconfont {
  margin-left: 14px;
  transform: translateX(0);
  transition: all 0.3s ease-out;
}
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline {
  border: 1px solid #000000 !important;
}
.mbr-section-btn .btn-primary-outline:hover,
.mbr-section-btn-main .btn-primary-outline:hover {
  color: #000000 !important;
}
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline {
  border: 1px solid #ff6839 !important;
}
.mbr-section-btn .btn-secondary-outline:hover,
.mbr-section-btn-main .btn-secondary-outline:hover {
  color: #ff6839 !important;
}
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline {
  border: 1px solid #ffb639 !important;
}
.mbr-section-btn .btn-success-outline:hover,
.mbr-section-btn-main .btn-success-outline:hover {
  color: #ffb639 !important;
}
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline {
  border: 1px solid #ffffff !important;
}
.mbr-section-btn .btn-info-outline:hover,
.mbr-section-btn-main .btn-info-outline:hover {
  color: #ffffff !important;
}
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline {
  border: 1px solid #ed9909 !important;
}
.mbr-section-btn .btn-warning-outline:hover,
.mbr-section-btn-main .btn-warning-outline:hover {
  color: #ed9909 !important;
}
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline {
  border: 1px solid #ed4009 !important;
}
.mbr-section-btn .btn-danger-outline:hover,
.mbr-section-btn-main .btn-danger-outline:hover {
  color: #ed4009 !important;
}
.mbr-section-btn .btn-black-outline,
.mbr-section-btn-main .btn-black-outline {
  border: 1px solid #000000 !important;
}
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn-main .btn-black-outline:hover {
  color: #000000 !important;
}
.mbr-section-btn .btn-white-outline,
.mbr-section-btn-main .btn-white-outline {
  border: 1px solid #ffffff !important;
}
.mbr-section-btn .btn-white-outline:hover,
.mbr-section-btn-main .btn-white-outline:hover {
  color: #ffffff !important;
}
.cid-uMLn2gJkm9 {
  z-index: 1000;
  width: 100%;
}
.cid-uMLn2gJkm9 .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-uMLn2gJkm9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uMLn2gJkm9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uMLn2gJkm9 .menu_box .navbar.opened,
  .cid-uMLn2gJkm9 .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uMLn2gJkm9 nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-uMLn2gJkm9 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uMLn2gJkm9 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uMLn2gJkm9 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uMLn2gJkm9 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uMLn2gJkm9 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uMLn2gJkm9 .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-uMLn2gJkm9 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uMLn2gJkm9 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uMLn2gJkm9 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uMLn2gJkm9 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uMLn2gJkm9 .offcanvas-body .mbr-text,
  .cid-uMLn2gJkm9 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uMLn2gJkm9 .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-uMLn2gJkm9 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uMLn2gJkm9 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uMLn2gJkm9 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uMLn2gJkm9 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uMLn2gJkm9 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uMLn2gJkm9 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uMLn2gJkm9 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uMLn2gJkm9 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uMLn2gJkm9 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uMLn2gJkm9 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uMLn2gJkm9 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uMLn2gJkm9 .lg_brand {
    margin: 0 1rem;
  }
  .cid-uMLn2gJkm9 .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
    flex-wrap: nowrap;
  }
}
.cid-uMLn2gJkm9 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uMLn2gJkm9 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uMLn2gJkm9 .nav-item {
    margin: 0 !important;
  }
}
.cid-uMLn2gJkm9 .nav-item .nav-link {
  position: relative;
}
.cid-uMLn2gJkm9 .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-uMLn2gJkm9 .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-uMLn2gJkm9 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uMLn2gJkm9 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uMLn2gJkm9 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uMLn2gJkm9 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uMLn2gJkm9 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uMLn2gJkm9 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uMLn2gJkm9 .offcanvas_box {
    display: none;
  }
}
.cid-uMLn2gJkm9 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uMLn2gJkm9 .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uMLn2gJkm9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uMLn2gJkm9 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uMLn2gJkm9 .container {
    flex-wrap: nowrap;
  }
}
.cid-uMLn2gJkm9 .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uMLn2gJkm9 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uMLn2gJkm9 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uMLn2gJkm9 .navbar-caption {
  color: #000000;
}
.cid-uMLn2gJkm9 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uMLn2gJkm9 .navbar-nav {
    margin: 0;
  }
}
.cid-uMLn2gJkm9 .dropdown-menu,
.cid-uMLn2gJkm9 .navbar.opened {
  background-color: false !important;
}
.cid-uMLn2gJkm9 .nav-item:focus,
.cid-uMLn2gJkm9 .nav-link:focus {
  outline: none;
}
.cid-uMLn2gJkm9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMLn2gJkm9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMLn2gJkm9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMLn2gJkm9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMLn2gJkm9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMLn2gJkm9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMLn2gJkm9 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uMLn2gJkm9 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uMLn2gJkm9 .navbar.opened {
  transition: all 0.3s;
}
.cid-uMLn2gJkm9 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uMLn2gJkm9 .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-uMLn2gJkm9 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uMLn2gJkm9 .navbar.collapsed {
  justify-content: center;
}
.cid-uMLn2gJkm9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMLn2gJkm9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uMLn2gJkm9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMLn2gJkm9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMLn2gJkm9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMLn2gJkm9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uMLn2gJkm9 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uMLn2gJkm9 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uMLn2gJkm9 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uMLn2gJkm9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMLn2gJkm9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMLn2gJkm9 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uMLn2gJkm9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMLn2gJkm9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uMLn2gJkm9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMLn2gJkm9 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uMLn2gJkm9 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uMLn2gJkm9 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uMLn2gJkm9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMLn2gJkm9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMLn2gJkm9 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uMLn2gJkm9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMLn2gJkm9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMLn2gJkm9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMLn2gJkm9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMLn2gJkm9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uMLn2gJkm9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMLn2gJkm9 .dropdown-item.active,
.cid-uMLn2gJkm9 .dropdown-item:active {
  background-color: transparent;
}
.cid-uMLn2gJkm9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMLn2gJkm9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMLn2gJkm9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMLn2gJkm9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMLn2gJkm9 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uMLn2gJkm9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMLn2gJkm9 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-uMLn2gJkm9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMLn2gJkm9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMLn2gJkm9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMLn2gJkm9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMLn2gJkm9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMLn2gJkm9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMLn2gJkm9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMLn2gJkm9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMLn2gJkm9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMLn2gJkm9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uMLn2gJkm9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMLn2gJkm9 .navbar {
    height: 70px;
  }
  .cid-uMLn2gJkm9 .navbar.opened {
    height: auto;
  }
  .cid-uMLn2gJkm9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMLn2gJkm9 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.cid-uMLn2gJkm9 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uMLn2gJkm9 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uMLn2gJkm9 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uMLn2gJkm9 .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-uMLn2gJkm9 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uMLn2gJkm9 .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-uMLn2gJkm9 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uMLn2gJkm9 .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-uMLn2gJkm9 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uMLn2gJkm9 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uMLn2gJkm9 .mbr-section-subtitle,
.cid-uMLn2gJkm9 .text_widget,
.cid-uMLn2gJkm9 .mbr-section-btn {
  text-align: left;
}
.cid-uMLn2gJkm9 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uMLjAX7fh5 {
  background-image: url("../../../assets/images/e810fea811ffc601e071e5a0f4c05ac8.jpg-626x417.jpg");
}
.cid-uMLjAX7fh5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMLjAX7fh5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMLjAX7fh5 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uMLjAX7fh5 .container-fluid {
    padding: 0 30px;
  }
}
.cid-uMLjAX7fh5 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uMLjAX7fh5 .container {
    padding: 0 30px;
  }
}
.cid-uMLjAX7fh5 .title-wrapper {
  margin-top: 20%;
  padding: 0 8%;
}
@media (max-width: 992px) {
  .cid-uMLjAX7fh5 .title-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.cid-uMLjAX7fh5 .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uMLjAX7fh5 .title-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uMLjAX7fh5 .mbr-section-title {
  color: #ffffff;
}
.cid-uMLjAX7fh5 .mbr-text {
  color: #ffffff;
}
.cid-uMLrLsyEcO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eeeef7;
}
.cid-uMLrLsyEcO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMLrLsyEcO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMLrLsyEcO .items-wrap {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uMLrLsyEcO .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uMLrLsyEcO .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uMLrLsyEcO .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uMLrLsyEcO .image-wrapper img {
  height: 660px;
  object-fit: cover;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uMLrLsyEcO .image-wrapper img {
    height: 350px;
  }
}
.cid-uMLrLsyEcO .mbr-section-title {
  color: #191c25;
}
.cid-uMLrLsyEcO .mbr-text {
  color: #191c25;
}
.cid-uMLjBsxev7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("../../../assets/images/cb4ef8f9c0351dff78cc92140d8229e3.jpg-626x417.jpg");
}
.cid-uMLjBsxev7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMLjBsxev7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMLjBsxev7 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uMLjBsxev7 .container-fluid {
    padding: 0 30px;
  }
}
.cid-uMLjBsxev7 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uMLjBsxev7 .container {
    padding: 0 30px;
  }
}
.cid-uMLjBsxev7 .card {
  margin-bottom: 64px;
}
.cid-uMLjBsxev7 .card .card-wrapper {
  display: flex;
  margin-right: 110px;
}
@media (max-width: 1400px) {
  .cid-uMLjBsxev7 .card .card-wrapper {
    margin-right: 30px;
  }
}
@media (max-width: 992px) {
  .cid-uMLjBsxev7 .card .card-wrapper {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .cid-uMLjBsxev7 .card .card-wrapper {
    display: block;
  }
}
.cid-uMLjBsxev7 .card .card-wrapper .mbr-iconfont {
  font-size: 75px;
  margin-right: 28px;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-uMLjBsxev7 .card .card-wrapper .mbr-iconfont {
    margin-bottom: 16px;
    display: block;
  }
}
.cid-uMLjBsxev7 .card .card-wrapper .card-content .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uMLjBsxev7 .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-uMLjBsxev7 .mbr-section-title {
  color: #000000;
}
.cid-uMLjBsxev7 .mbr-text {
  color: #000000;
}
.cid-uMLrXLfe0I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eeeef7;
}
.cid-uMLrXLfe0I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMLrXLfe0I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMLrXLfe0I .items-wrap {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uMLrXLfe0I .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uMLrXLfe0I .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uMLrXLfe0I .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uMLrXLfe0I .image-wrapper img {
  height: 660px;
  object-fit: cover;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uMLrXLfe0I .image-wrapper img {
    height: 350px;
  }
}
.cid-uMLrXLfe0I .mbr-section-title {
  color: #191c25;
}
.cid-uMLrXLfe0I .mbr-text {
  color: #191c25;
}
.cid-uMLmquqrKM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uMLmquqrKM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMLmquqrKM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMLmquqrKM .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uMLmquqrKM .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uMLmquqrKM .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uMLmquqrKM .mbr-section-title {
  color: #131313;
}
.cid-uMLmquqrKM .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uMLmquqrKM .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-uMLmquqrKM .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-uMLmquqrKM .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-uMLmquqrKM .item-wrapper {
  width: 100%;
  padding: 13px 13px 42px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-uMLmquqrKM .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uMLmquqrKM .item-img img {
  width: 100%;
  aspect-ratio: 0.90625;
  object-fit: cover;
}
.cid-uMLmquqrKM .item-content {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .cid-uMLmquqrKM .item-content {
    margin-top: 20px;
  }
}
.cid-uMLmquqrKM .card-title {
  color: #131313;
}
.cid-uMLmquqrKM .card-text {
  margin-top: 5px;
  color: #FC7942;
}
.cid-uMLmquqrKM .mbr-section-btn {
  margin-top: 5px;
}
.cid-uMLs5azXx0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eeeef7;
}
.cid-uMLs5azXx0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMLs5azXx0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMLs5azXx0 .items-wrap {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uMLs5azXx0 .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uMLs5azXx0 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uMLs5azXx0 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uMLs5azXx0 .image-wrapper img {
  height: 660px;
  object-fit: cover;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uMLs5azXx0 .image-wrapper img {
    height: 350px;
  }
}
.cid-uMLs5azXx0 .mbr-section-title {
  color: #191c25;
}
.cid-uMLs5azXx0 .mbr-text {
  color: #191c25;
}
.cid-uMLjC9QeTK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uMLjC9QeTK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMLjC9QeTK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMLjC9QeTK .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uMLjC9QeTK .container-fluid {
    padding: 0;
  }
}
.cid-uMLjC9QeTK .container-fluid .row {
  padding: 0;
}
.cid-uMLjC9QeTK .card {
  padding: 0;
}
.cid-uMLjC9QeTK .card:first-child .image-wrapper {
  height: 100%;
}
.cid-uMLjC9QeTK .card:first-child .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uMLjC9QeTK .card:first-child .image-wrapper img {
    height: 270px;
  }
}
.cid-uMLjC9QeTK .card:last-child {
  display: grid;
  grid-template-columns: 200px 200px;
  column-gap: 64px;
  row-gap: 55px;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
  padding: 130px 0;
  border-radius: 0;
}
@media (max-width: 992px) {
  .cid-uMLjC9QeTK .card:last-child {
    padding: 110px;
  }
}
@media (max-width: 768px) {
  .cid-uMLjC9QeTK .card:last-child {
    padding: 80px 30px;
    grid-template-columns: 1fr;
  }
}
.cid-uMLjC9QeTK .card:last-child .card-wrapper .mbr-number {
  margin-bottom: 12px;
}
.cid-uMLjC9QeTK .card:last-child .card-wrapper .mbr-section-title {
  margin-bottom: 4px;
}
.cid-uMLjC9QeTK .card:last-child .card-wrapper .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-uMLjC9QeTK .mbr-section-title {
  color: #000000;
}
.cid-uMLjC9QeTK .mbr-number {
  color: #000000;
}
.cid-uMLjC9QeTK .mbr-text {
  color: #000000;
}
.cid-uMLscnzEK7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eeeef7;
}
.cid-uMLscnzEK7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMLscnzEK7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMLscnzEK7 .items-wrap {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uMLscnzEK7 .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uMLscnzEK7 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uMLscnzEK7 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uMLscnzEK7 .image-wrapper img {
  height: 660px;
  object-fit: cover;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uMLscnzEK7 .image-wrapper img {
    height: 350px;
  }
}
.cid-uMLscnzEK7 .mbr-section-title {
  color: #191c25;
}
.cid-uMLscnzEK7 .mbr-text {
  color: #191c25;
}
.cid-uMLmfO2jyA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ebebeb;
}
.cid-uMLmfO2jyA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMLmfO2jyA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMLmfO2jyA .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uMLmfO2jyA .container-fluid {
    padding: 0 30px;
  }
}
.cid-uMLmfO2jyA .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uMLmfO2jyA .container {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uMLmfO2jyA .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uMLmfO2jyA .title-wrapper .mbr-section-title {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 14px;
  position: relative;
}
.cid-uMLmfO2jyA .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #000000;
}
.cid-uMLmfO2jyA .panel-group {
  padding: 60px 80px;
  border-radius: 10px;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uMLmfO2jyA .panel-group {
    padding: 60px 30px;
  }
}
@media (max-width: 425px) {
  .cid-uMLmfO2jyA .panel-group {
    padding: 60px 16px;
  }
}
.cid-uMLmfO2jyA .panel-group .card {
  border-bottom: 1px solid #000000;
  border-radius: 0;
}
.cid-uMLmfO2jyA .panel-group .card .card-header {
  padding: 22px 0;
  background-color: transparent;
  border: none;
}
.cid-uMLmfO2jyA .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  background-color: transparent;
}
.cid-uMLmfO2jyA .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uMLmfO2jyA .panel-group .card .card-header .panel-title .mbr-iconfont {
  margin-left: 10px;
  font-size: 22px;
  transition: all 0.3s ease-out;
}
.cid-uMLmfO2jyA .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #ff6839;
  transform: rotate(90deg);
}
.cid-uMLmfO2jyA .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 50px;
}
.cid-uMLmfO2jyA .panel-group .card .panel-collapse .panel-body .panel-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-uMLmfO2jyA .mbr-section-title {
  color: #000000;
}
.cid-uMLmfO2jyA .panel-title-edit,
.cid-uMLmfO2jyA .mbr-iconfont {
  color: #000000;
}
.cid-uMLmfO2jyA .panel-text {
  color: #000000;
}
.cid-uMLmeZPTsB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uMLmeZPTsB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMLmeZPTsB .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-uMLmeZPTsB .container {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uMLmeZPTsB .map-wrapper {
    margin-bottom: 55px;
  }
}
.cid-uMLmeZPTsB .map-wrapper .google-map {
  padding: 0 120px 0 60px;
}
@media (max-width: 1200px) {
  .cid-uMLmeZPTsB .map-wrapper .google-map {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uMLmeZPTsB .map-wrapper .google-map {
    padding: 0;
  }
}
.cid-uMLmeZPTsB .map-wrapper .google-map iframe {
  height: 720px;
}
@media (max-width: 992px) {
  .cid-uMLmeZPTsB .map-wrapper .google-map iframe {
    height: 300px;
  }
}
.cid-uMLmeZPTsB .form-wrap {
  display: flex;
  align-items: center;
}
.cid-uMLmeZPTsB .dragArea.row .mbr-section-title {
  margin-bottom: 32px !important;
}
.cid-uMLmeZPTsB .dragArea.row .mbr-text {
  margin-bottom: 20px !important;
}
.cid-uMLmeZPTsB .dragArea.row .form-group {
  margin-bottom: 20px;
}
.cid-uMLmeZPTsB .dragArea.row .form-group .form-control {
  padding: 8px 0;
  border: none !important;
  border-radius: 0;
  border-bottom: 1px solid #000000 !important;
  box-shadow: none;
  background-color: transparent;
}
.cid-uMLmeZPTsB .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
}
.cid-uMLmeZPTsB .dragArea.row .form-group .form-control:hover,
.cid-uMLmeZPTsB .dragArea.row .form-group .form-control:focus {
  border: none !important;
  box-shadow: none;
  border-bottom: 1px solid #000000 !important;
}
.cid-uMLmeZPTsB .dragArea.row .form-group .form-check {
  padding-left: 2.4rem;
  margin-bottom: 8px;
}
.cid-uMLmeZPTsB .dragArea.row .form-group .form-check .form-check-input {
  background-color: #000000;
  border-color: #000000;
}
.cid-uMLmeZPTsB .dragArea.row .mbr-section-btn {
  margin-top: 40px;
}
.cid-uMLmeZPTsB .mbr-section-title {
  color: #000000;
}
.cid-uMLmeZPTsB .mbr-text {
  color: #000000;
}
.cid-uMLmeZPTsB label {
  color: #000000;
}
.cid-uMLmkJlYRu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uMLmkJlYRu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMLmkJlYRu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMLmkJlYRu .border-wrap {
  width: 100%;
  height: 3px;
  background-color: #a6a6a6;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uMLmkJlYRu .border-wrap {
    height: 2px;
    margin-bottom: 32px;
  }
}
.cid-uMLmkJlYRu .card {
  justify-content: center;
}
.cid-uMLmkJlYRu .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uMLmkJlYRu .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uMLmkJlYRu .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uMLmkJlYRu .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  padding-bottom: 10px;
  transition: all .3s ease;
  border-bottom: 2px solid #a6a6a6;
}
.cid-uMLmkJlYRu .list-wrapper .list .item-wrap:hover,
.cid-uMLmkJlYRu .list-wrapper .list .item-wrap:focus {
  opacity: .5;
}
.cid-uMLmkJlYRu .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uMLmkJlYRu .mbr-section-title {
  color: #000000;
}
.cid-uMLmkJlYRu .list {
  color: #000000;
}
.cid-uMLmm0RxNm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uMLmm0RxNm .media-container-row .mbr-text {
  color: #fdfde1;
}
.cid-uMLn2gJkm9 {
  z-index: 1000;
  width: 100%;
}
.cid-uMLn2gJkm9 .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-uMLn2gJkm9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uMLn2gJkm9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uMLn2gJkm9 .menu_box .navbar.opened,
  .cid-uMLn2gJkm9 .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uMLn2gJkm9 nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-uMLn2gJkm9 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-uMLn2gJkm9 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uMLn2gJkm9 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-uMLn2gJkm9 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uMLn2gJkm9 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uMLn2gJkm9 .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-uMLn2gJkm9 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uMLn2gJkm9 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uMLn2gJkm9 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uMLn2gJkm9 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uMLn2gJkm9 .offcanvas-body .mbr-text,
  .cid-uMLn2gJkm9 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uMLn2gJkm9 .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-uMLn2gJkm9 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uMLn2gJkm9 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uMLn2gJkm9 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uMLn2gJkm9 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uMLn2gJkm9 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uMLn2gJkm9 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uMLn2gJkm9 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uMLn2gJkm9 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uMLn2gJkm9 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uMLn2gJkm9 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uMLn2gJkm9 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uMLn2gJkm9 .lg_brand {
    margin: 0 1rem;
  }
  .cid-uMLn2gJkm9 .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
    flex-wrap: nowrap;
  }
}
.cid-uMLn2gJkm9 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uMLn2gJkm9 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uMLn2gJkm9 .nav-item {
    margin: 0 !important;
  }
}
.cid-uMLn2gJkm9 .nav-item .nav-link {
  position: relative;
}
.cid-uMLn2gJkm9 .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.3s ease-out;
}
.cid-uMLn2gJkm9 .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-uMLn2gJkm9 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uMLn2gJkm9 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uMLn2gJkm9 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uMLn2gJkm9 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uMLn2gJkm9 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uMLn2gJkm9 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uMLn2gJkm9 .offcanvas_box {
    display: none;
  }
}
.cid-uMLn2gJkm9 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uMLn2gJkm9 .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uMLn2gJkm9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uMLn2gJkm9 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uMLn2gJkm9 .container {
    flex-wrap: nowrap;
  }
}
.cid-uMLn2gJkm9 .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uMLn2gJkm9 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uMLn2gJkm9 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uMLn2gJkm9 .navbar-caption {
  color: #000000;
}
.cid-uMLn2gJkm9 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uMLn2gJkm9 .navbar-nav {
    margin: 0;
  }
}
.cid-uMLn2gJkm9 .dropdown-menu,
.cid-uMLn2gJkm9 .navbar.opened {
  background-color: false !important;
}
.cid-uMLn2gJkm9 .nav-item:focus,
.cid-uMLn2gJkm9 .nav-link:focus {
  outline: none;
}
.cid-uMLn2gJkm9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMLn2gJkm9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMLn2gJkm9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMLn2gJkm9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMLn2gJkm9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMLn2gJkm9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMLn2gJkm9 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uMLn2gJkm9 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uMLn2gJkm9 .navbar.opened {
  transition: all 0.3s;
}
.cid-uMLn2gJkm9 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uMLn2gJkm9 .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-uMLn2gJkm9 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uMLn2gJkm9 .navbar.collapsed {
  justify-content: center;
}
.cid-uMLn2gJkm9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMLn2gJkm9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uMLn2gJkm9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMLn2gJkm9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMLn2gJkm9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMLn2gJkm9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uMLn2gJkm9 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uMLn2gJkm9 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uMLn2gJkm9 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uMLn2gJkm9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMLn2gJkm9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMLn2gJkm9 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uMLn2gJkm9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMLn2gJkm9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uMLn2gJkm9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMLn2gJkm9 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uMLn2gJkm9 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uMLn2gJkm9 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uMLn2gJkm9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMLn2gJkm9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMLn2gJkm9 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uMLn2gJkm9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMLn2gJkm9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMLn2gJkm9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMLn2gJkm9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMLn2gJkm9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uMLn2gJkm9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMLn2gJkm9 .dropdown-item.active,
.cid-uMLn2gJkm9 .dropdown-item:active {
  background-color: transparent;
}
.cid-uMLn2gJkm9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMLn2gJkm9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMLn2gJkm9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMLn2gJkm9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMLn2gJkm9 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uMLn2gJkm9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMLn2gJkm9 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff6839;
}
.cid-uMLn2gJkm9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMLn2gJkm9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMLn2gJkm9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMLn2gJkm9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMLn2gJkm9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMLn2gJkm9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMLn2gJkm9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMLn2gJkm9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMLn2gJkm9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMLn2gJkm9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uMLn2gJkm9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMLn2gJkm9 .navbar {
    height: 70px;
  }
  .cid-uMLn2gJkm9 .navbar.opened {
    height: auto;
  }
  .cid-uMLn2gJkm9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMLn2gJkm9 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.cid-uMLn2gJkm9 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uMLn2gJkm9 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uMLn2gJkm9 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uMLn2gJkm9 .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-uMLn2gJkm9 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uMLn2gJkm9 .text_widget {
  margin-bottom: 20px;
  color: #000000;
}
.cid-uMLn2gJkm9 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uMLn2gJkm9 .text_widget a:hover {
  color: #ff6839 !important;
}
.cid-uMLn2gJkm9 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uMLn2gJkm9 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uMLn2gJkm9 .mbr-section-subtitle,
.cid-uMLn2gJkm9 .text_widget,
.cid-uMLn2gJkm9 .mbr-section-btn {
  text-align: left;
}
.cid-uMLn2gJkm9 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uMLrcqhLNR {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #323232;
}
.cid-uMLrcqhLNR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uMLrcqhLNR .mbr-text {
  color: #ffffff;
}
.cid-uMLmm0RxNm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uMLmm0RxNm .media-container-row .mbr-text {
  color: #fdfde1;
}
