body {
  font-family: Inter Tight;
}
.display-1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 6.875rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.display-1 > .mbr-iconfont {
  font-size: 8.59375rem;
}
.display-2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 3.75rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.display-2 > .mbr-iconfont {
  font-size: 4.6875rem;
}
.display-4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.75rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.1875rem;
}
.display-7 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.125rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 5.5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.8125rem;
    font-size: calc( 3.05625rem + (6.875 - 3.05625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.05625rem + (6.875 - 3.05625) * ((100vw - 20rem) / (48 - 20))));
    letter-spacing: -0.038em;
  }
  .display-2 {
    font-size: 3rem;
    font-size: calc( 1.9625rem + (3.75 - 1.9625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.9625rem + (3.75 - 1.9625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.4rem;
    font-size: calc( 1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ff9370 !important;
}
.bg-success {
  background-color: #4fb380 !important;
}
.bg-info {
  background-color: #4c82a2 !important;
}
.bg-warning {
  background-color: #e3d688 !important;
}
.bg-danger {
  background-color: #c04822 !important;
}
.btn-primary:after {
  background: linear-gradient(to right, #ff9370 0 25%, transparent 25% 75%, #ff9370 75% 100%);
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #ff9370 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #ff9370 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ff9370 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary:after {
  background: linear-gradient(to right, #9b8db7 0 25%, transparent 25% 75%, #9b8db7 75% 100%);
}
.btn-secondary,
.btn-secondary:active {
  background-color: #efe6f7 !important;
  border-color: #efe6f7 !important;
  color: #9b8db7 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  background-color: #efe6f7 !important;
  border-color: #efe6f7 !important;
  color: #9b8db7 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #9b8db7 !important;
  background-color: #efe6f7 !important;
  border-color: #efe6f7 !important;
}
.btn-info:after {
  background: linear-gradient(to right, #4c82a2 0 25%, transparent 25% 75%, #4c82a2 75% 100%);
}
.btn-info,
.btn-info:active {
  background-color: #9cc0eb !important;
  border-color: #9cc0eb !important;
  color: #4c82a2 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  background-color: #9cc0eb !important;
  border-color: #9cc0eb !important;
  color: #4c82a2 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #4c82a2 !important;
  background-color: #9cc0eb !important;
  border-color: #9cc0eb !important;
}
.btn-success:after {
  background: linear-gradient(to right, #4fb380 0 25%, transparent 25% 75%, #4fb380 75% 100%);
}
.btn-success,
.btn-success:active {
  background-color: #abf0d8 !important;
  border-color: #abf0d8 !important;
  color: #4fb380 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  background-color: #abf0d8 !important;
  border-color: #abf0d8 !important;
  color: #4fb380 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #4fb380 !important;
  background-color: #abf0d8 !important;
  border-color: #abf0d8 !important;
}
.btn-warning:after {
  background: linear-gradient(to right, #e3d688 0 25%, transparent 25% 75%, #e3d688 75% 100%);
}
.btn-warning,
.btn-warning:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #e3d688 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #e3d688 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #e3d688 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger:after {
  background: linear-gradient(to right, #c04822 0 25%, transparent 25% 75%, #c04822 75% 100%);
}
.btn-danger,
.btn-danger:active {
  background-color: #ffb17c !important;
  border-color: #ffb17c !important;
  color: #c04822 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  background-color: #ffb17c !important;
  border-color: #ffb17c !important;
  color: #c04822 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #c04822 !important;
  background-color: #ffb17c !important;
  border-color: #ffb17c !important;
}
.btn-white:after {
  background: linear-gradient(to right, #f6f6f6 0 25%, transparent 25% 75%, #f6f6f6 75% 100%);
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #f6f6f6 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #f6f6f6 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #f6f6f6 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black:after {
  background: linear-gradient(to right, #303030 0 25%, transparent 25% 75%, #303030 75% 100%);
}
.btn-black,
.btn-black:active {
  background-color: #a26457 !important;
  border-color: #a26457 !important;
  color: #303030 !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  background-color: #a26457 !important;
  border-color: #a26457 !important;
  color: #303030 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #303030 !important;
  background-color: #a26457 !important;
  border-color: #a26457 !important;
}
.btn-primary-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #ff9370 0 25%, transparent 25% 75%, #ff9370 75% 100%);
}
.btn-primary-outline,
.btn-primary-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9370;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ff9370 !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: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #9b8db7 0 25%, transparent 25% 75%, #9b8db7 75% 100%);
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #9b8db7;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #9b8db7 !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: #efe6f7 !important;
  border-color: #efe6f7 !important;
}
.btn-info-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #4c82a2 0 25%, transparent 25% 75%, #4c82a2 75% 100%);
}
.btn-info-outline,
.btn-info-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #4c82a2;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #4c82a2 !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: #9cc0eb !important;
  border-color: #9cc0eb !important;
}
.btn-success-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #4fb380 0 25%, transparent 25% 75%, #4fb380 75% 100%);
}
.btn-success-outline,
.btn-success-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #4fb380;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #4fb380 !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: #abf0d8 !important;
  border-color: #abf0d8 !important;
}
.btn-warning-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #e3d688 0 25%, transparent 25% 75%, #e3d688 75% 100%);
}
.btn-warning-outline,
.btn-warning-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #e3d688;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #e3d688 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #574e15 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #c04822 0 25%, transparent 25% 75%, #c04822 75% 100%);
}
.btn-danger-outline,
.btn-danger-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #c04822;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #c04822 !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: #ffb17c !important;
  border-color: #ffb17c !important;
}
.btn-black-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #303030 0 25%, transparent 25% 75%, #303030 75% 100%);
}
.btn-black-outline,
.btn-black-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #303030;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #303030 !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: #a26457 !important;
  border-color: #a26457 !important;
}
.btn-white-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #f6f6f6 0 25%, transparent 25% 75%, #f6f6f6 75% 100%);
}
.btn-white-outline,
.btn-white-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #f6f6f6;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #f6f6f6 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #777777 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.text-primary {
  color: #ff9370 !important;
}
.text-secondary {
  color: #9b8db7 !important;
}
.text-success {
  color: #4fb380 !important;
}
.text-info {
  color: #4c82a2 !important;
}
.text-warning {
  color: #e3d688 !important;
}
.text-danger {
  color: #c04822 !important;
}
.text-white {
  color: #f6f6f6 !important;
}
.text-black {
  color: #303030 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #ff460a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #675688 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #2f6d4d !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #2b4a5d !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #d0ba35 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #692813 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c3c3c3 !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: #ff9370;
}
.nav-tabs .nav-link:not(.active) {
  color: #303030;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #4c82a2;
}
.alert-warning {
  background-color: #e3d688;
}
.alert-danger {
  background-color: #c04822;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff9370;
  border-color: #ff9370;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ff9370;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a8d9c0;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #9dbdd1;
}
.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: #e7947a;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.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: #ff9370 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #ff9370;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff9370;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ff9370;
}
.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: #ff9370;
  border-bottom-color: #ff9370;
}
.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: #000000 !important;
  background-color: #ff9370 !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: #9b8db7 !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='%23ff9370' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
html,
body {
  overflow-x: hidden;
}
a {
  transition-duration: .4s;
}
a:hover {
  background-image: none !important;
}
.mbr-fonts-style a:not(.mbr-fonts-style) {
  position: relative;
}
.mbr-fonts-style a:not(.mbr-fonts-style):before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 1px;
  width: 100%;
  transition: all 0.7s cubic-bezier(0.33, 0.52, 0.05, 0.96);
  background: linear-gradient(to right, currentColor 0 25%, transparent 25% 75%, currentColor 75% 100%);
  background-position: right;
  background-size: 400% 100%;
  overflow: hidden;
}
.mbr-fonts-style a:not(.mbr-fonts-style):hover:before {
  background-position: left;
}
.container {
  max-width: 1300px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1439px) {
  .container {
    max-width: 1100px;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 86%;
  }
}
.container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .container-fluid {
    max-width: 86%;
  }
}
.row {
  margin-left: -20px;
  margin-right: -20px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.row {
  justify-content: center;
}
b,
strong {
  font-weight: 700 !important;
}
.mbr-section-btn .btn {
  position: relative;
  min-width: 100px;
  min-height: 54px;
  padding: 10px 34px 15px;
  font-weight: 700 !important;
  transition: all 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
  box-shadow: none !important;
  border-radius: 0 !important;
  letter-spacing: -0.025em;
}
.mbr-section-btn .btn:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 13px;
  transform: translateX(-50%);
  height: 2px;
  width: calc(100% - 34px * 2);
  transition: all 0.7s cubic-bezier(0.33, 0.52, 0.05, 0.96);
  background-position: right;
  background-size: 400% 100%;
  overflow: hidden;
}
.mbr-section-btn .btn.btn-primary {
  background-color: #ffe3db !important;
  border-color: #ffe3db !important;
}
.mbr-section-btn .btn.btn-black {
  background-color: #FFFFFF !important;
  border-color: #FFFFFF !important;
}
.mbr-section-btn .btn.btn-white {
  background-color: #303030 !important;
  border-color: #303030 !important;
}
.mbr-section-btn .btn:hover:after {
  background-position: left;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-ttjmnoK6UH .navbar-dropdown {
  position: relative !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #000000 !important;
}
.cid-ttjmnoK6UH .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ttjmnoK6UH .dropdown-item:after {
  right: 1rem !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .dropdown-item:hover:before,
.cid-ttjmnoK6UH .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ttjmnoK6UH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjmnoK6UH .nav-link {
  position: relative;
}
.cid-ttjmnoK6UH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjmnoK6UH .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-ttjmnoK6UH .navbar-nav .nav-item {
  margin: 0;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ttjmnoK6UH .dropdown-menu,
.cid-ttjmnoK6UH .navbar.opened {
  background: #000000 !important;
}
.cid-ttjmnoK6UH .nav-item:focus,
.cid-ttjmnoK6UH .nav-link:focus {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjmnoK6UH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjmnoK6UH .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  border-bottom: 2px solid #000000 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ttjmnoK6UH .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjmnoK6UH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjmnoK6UH .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ttjmnoK6UH .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjmnoK6UH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar.collapsed {
  justify-content: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjmnoK6UH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjmnoK6UH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjmnoK6UH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjmnoK6UH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjmnoK6UH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttjmnoK6UH .navbar.navbar-short {
  min-height: 100px;
}
.cid-ttjmnoK6UH .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ttjmnoK6UH .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown-item.active,
.cid-ttjmnoK6UH .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjmnoK6UH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjmnoK6UH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjmnoK6UH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjmnoK6UH .navbar-buttons {
  text-align: center;
}
.cid-ttjmnoK6UH button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #232323;
  border-radius: 50%;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ttjmnoK6UH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ttjmnoK6UH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjmnoK6UH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttjmnoK6UH .navbar {
    height: 70px;
  }
  .cid-ttjmnoK6UH .navbar.opened {
    height: auto;
  }
  .cid-ttjmnoK6UH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjmnoK6UH .container,
.cid-ttjmnoK6UH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .container,
  .cid-ttjmnoK6UH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttjmnoK6UH .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ttjmnoK6UH .navbar-collapse {
  min-height: 98px;
}
.cid-ttjmnoK6UH .mbr-section-btn {
  max-width: 35%;
}
.cid-ttjmnoK6UH .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .navbar {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .container-fluid {
    padding: 0 7%;
  }
  .cid-ttjmnoK6UH .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-ttjmnoK6UH .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ttjmnoK6UH .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ttjmnoK6UH .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ttjmnoK6UH .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-viuqId2yPU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viuqId2yPU .mbr-fallback-image.disabled {
  display: none;
}
.cid-viuqId2yPU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viuqId2yPU .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-viuqId2yPU .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-viuqId2yPU .embla__slide .slide-content {
  width: 100%;
}
.cid-viuqId2yPU .embla__slide .slide-content .item-wrapper {
  position: relative;
  height: 100%;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  border: 1px solid #303030;
  will-change: transform;
}
@media (max-width: 1740px) {
  .cid-viuqId2yPU .embla__slide .slide-content .item-wrapper {
    min-height: 700px;
  }
}
@media (max-width: 1440px) {
  .cid-viuqId2yPU .embla__slide .slide-content .item-wrapper {
    min-height: 620px;
  }
}
@media (max-width: 1200px) {
  .cid-viuqId2yPU .embla__slide .slide-content .item-wrapper {
    min-height: 520px;
  }
}
@media (max-width: 992px) {
  .cid-viuqId2yPU .embla__slide .slide-content .item-wrapper {
    min-height: 350px;
  }
}
.cid-viuqId2yPU .embla__slide .slide-content .item-wrapper .overlay-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}
.cid-viuqId2yPU .embla__slide .slide-content .item-wrapper .gradient-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(30deg, #000000 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.cid-viuqId2yPU .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-viuqId2yPU .embla__slide .slide-content .item-wrapper .card-box {
  position: relative;
  z-index: 1;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-viuqId2yPU .embla__slide .slide-content .item-wrapper .card-box {
    padding: 24px;
  }
}
.cid-viuqId2yPU .embla__slide .slide-content .item-wrapper .card-box .item-title {
  margin-bottom: 4px;
}
.cid-viuqId2yPU .embla__slide .slide-content .item-wrapper .card-box .item-tag {
  margin-bottom: 0;
}
.cid-viuqId2yPU .embla__slide .slide-content .item-wrapper .card-box .text-wrapper .item-text {
  margin-top: 24px;
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-viuqId2yPU .embla__slide .slide-content .item-wrapper .card-box .text-wrapper .item-text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-viuqId2yPU .embla__slide .slide-content .item-wrapper .card-box .text-wrapper .item-text {
    width: 100%;
  }
}
.cid-viuqId2yPU .embla__slide .slide-content .item-wrapper .card-box .mbr-section-btn {
  margin-bottom: -9.6px;
  margin-top: 14px;
}
.cid-viuqId2yPU .embla__button--next,
.cid-viuqId2yPU .embla__button--prev {
  display: flex;
}
.cid-viuqId2yPU .embla__button {
  bottom: 0;
  width: 46px;
  height: 46px;
  font-size: 20px;
  background-color: transparent !important;
  background-image: linear-gradient(180deg, #ffffff -200%, transparent 60%) !important;
  color: #000000 !important;
  border: 1px solid #000000 !important;
  border-radius: 100% !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-viuqId2yPU .embla__button:hover.embla__button--prev {
  transform: translateX(3px);
}
.cid-viuqId2yPU .embla__button:hover.embla__button--next {
  transform: translateX(-3px);
}
.cid-viuqId2yPU .embla__button:disabled {
  opacity: .5 !important;
}
.cid-viuqId2yPU .embla__button:disabled.embla__button--prev {
  transform: none;
}
.cid-viuqId2yPU .embla__button:disabled.embla__button--next {
  transform: none;
}
.cid-viuqId2yPU .embla__button.embla__button--prev {
  transition: all 0.3s;
  left: 0;
}
.cid-viuqId2yPU .embla__button.embla__button--next {
  transition: all 0.3s;
  right: 0;
}
.cid-viuqId2yPU .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .cid-viuqId2yPU .embla {
    padding-bottom: 4rem;
  }
}
.cid-viuqId2yPU .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-viuqId2yPU .embla__viewport {
    padding: 0;
  }
}
.cid-viuqId2yPU .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-viuqId2yPU .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-viuqId2yPU .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-viuqId2yPU .item-menu-overlay {
  opacity: 0 !important;
}
.cid-viuqId2yPU .item-title {
  color: #ffffff;
}
.cid-viuqId2yPU .item-tag {
  color: #fff6be;
}
.cid-viuqId2yPU .item-text {
  color: #8c8c8c;
}
.cid-viuqId2yPU .item-text,
.cid-viuqId2yPU .text-wrapper {
  color: #e2e2e2;
}
.cid-vivtqOgVzg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #515151;
}
.cid-vivtqOgVzg .decor-wrap_1 {
  position: absolute;
  top: 14%;
  left: -4rem;
  width: 423px;
  height: 423px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-vivtqOgVzg .decor-wrap_2 {
  position: absolute;
  top: 30%;
  right: 1%;
  width: 207px;
  height: 207px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-vivtqOgVzg .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-vivtqOgVzg .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vivtqOgVzg .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vivtqOgVzg .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 767px) {
  .cid-vivtqOgVzg .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vivtqOgVzg .embla__slide .slide-content {
  width: 100%;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 0 !important;
  padding-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-vivtqOgVzg .embla__slide .slide-content {
    padding-bottom: 50px;
  }
}
.cid-vivtqOgVzg .embla__slide .slide-content .item-wrapper {
  height: 100%;
}
.cid-vivtqOgVzg .embla__slide .slide-content .item-wrapper .item-img {
  padding: 50px 40px 0 0;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-vivtqOgVzg .embla__slide .slide-content .item-wrapper .item-img {
    padding: 40px 30px 0 0;
  }
}
.cid-vivtqOgVzg .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.cid-vivtqOgVzg .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-vivtqOgVzg .embla__slide .slide-content .item-wrapper .item-content {
    padding: 0 30px;
  }
}
.cid-vivtqOgVzg .embla__slide .slide-content .item-wrapper .item-content .item-name {
  margin-bottom: 20px;
}
.cid-vivtqOgVzg .embla__slide .slide-content .item-wrapper .item-content .item-role {
  margin-bottom: 30px;
}
.cid-vivtqOgVzg .embla__slide .slide-content .item-wrapper .item-content .item-text {
  margin-bottom: 40px;
}
.cid-vivtqOgVzg .embla__slide .slide-content .mbr-section-btn {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-vivtqOgVzg .embla__slide .slide-content .mbr-section-btn {
    padding: 0 30px;
  }
}
.cid-vivtqOgVzg .embla__button--next,
.cid-vivtqOgVzg .embla__button--prev {
  display: flex;
}
.cid-vivtqOgVzg .embla__button {
  bottom: 0;
  width: 56px;
  height: 56px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: #e2e2e2 !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 100%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vivtqOgVzg .embla__button:hover {
  opacity: .6 !important;
}
.cid-vivtqOgVzg .embla__button.embla__button--prev {
  right: 4rem;
}
.cid-vivtqOgVzg .embla__button.embla__button--next {
  right: 0;
}
.cid-vivtqOgVzg .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-vivtqOgVzg .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-vivtqOgVzg .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vivtqOgVzg .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vivtqOgVzg .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vivtqOgVzg .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vivtqOgVzg .item-name {
  color: #144031;
}
.cid-vivtqOgVzg .item-role {
  color: #22654E;
}
.cid-vivtqOgVzg .item-text {
  color: #000000;
}
.cid-vivKN7f3nx {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #515151;
}
.cid-vivKN7f3nx .mbr-fallback-image.disabled {
  display: none;
}
.cid-vivKN7f3nx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vivKN7f3nx .mbr-section-head {
  margin-bottom: 32px;
}
.cid-vivKN7f3nx .mbr-section-title {
  color: #24262b;
}
.cid-vivKN7f3nx .mbr-section-subtitle {
  color: #24262b;
}
.cid-vivKN7f3nx .cards-row {
  row-gap: 32px;
}
.cid-vivKN7f3nx .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-vivKN7f3nx .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-vivKN7f3nx .card-title {
  margin-bottom: 16px;
  color: #24262b;
  text-align: center;
}
.cid-vivKN7f3nx .card-subtitle {
  color: #24262b;
}
.cid-vivKN7f3nx .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-vivKN7f3nx .mbr-section-btn {
  margin-top: 20px;
}
.cid-vivKN7f3nx .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
@media (max-width: 1199px) {
  .cid-vivKN7f3nx .item-img {
    min-height: auto;
  }
}
.cid-vivKN7f3nx .item-img img {
  flex-grow: 1;
  width: 100%;
  object-fit: cover;
}
.cid-vivKN7f3nx .item-img a {
  display: flex;
  flex-grow: 1;
  height: 100%;
}
.cid-vivKN7f3nx .card-text,
.cid-vivKN7f3nx .mbr-section-btn P {
  text-align: center;
}
.cid-vivKN7f3nx P {
  text-align: justify;
}
.cid-viyCkFNmMh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #515151;
}
.cid-viyCkFNmMh .mbr-fallback-image.disabled {
  display: none;
}
.cid-viyCkFNmMh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viyCkFNmMh .mbr-section-head {
  margin-bottom: 32px;
}
.cid-viyCkFNmMh .mbr-section-title {
  color: #24262b;
}
.cid-viyCkFNmMh .mbr-section-subtitle {
  color: #24262b;
}
.cid-viyCkFNmMh .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-viyCkFNmMh .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-viyCkFNmMh .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-viyCkFNmMh .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-viyCkFNmMh .card-subtitle {
  color: #24262b;
}
.cid-viyCkFNmMh .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-viyCkFNmMh .mbr-section-btn {
  margin-top: 20px;
}
.cid-viyCkFNmMh .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
@media (max-width: 1199px) {
  .cid-viyCkFNmMh .item-img {
    min-height: auto;
  }
}
.cid-viyCkFNmMh .item-img img {
  flex-grow: 1;
  width: 100%;
  object-fit: cover;
}
.cid-viyCkFNmMh .item-img a {
  display: flex;
  flex-grow: 1;
  height: 100%;
}
.cid-vivW9NArBt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #515151;
}
.cid-vivW9NArBt .mbr-fallback-image.disabled {
  display: none;
}
.cid-vivW9NArBt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vivW9NArBt .mbr-section-head {
  margin-bottom: 32px;
}
.cid-vivW9NArBt .mbr-section-title {
  color: #24262b;
}
.cid-vivW9NArBt .mbr-section-subtitle {
  color: #24262b;
}
.cid-vivW9NArBt .cards-row {
  row-gap: 32px;
}
.cid-vivW9NArBt .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-vivW9NArBt .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-vivW9NArBt .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-vivW9NArBt .card-subtitle {
  color: #24262b;
}
.cid-vivW9NArBt .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-vivW9NArBt .mbr-section-btn {
  margin-top: 20px;
}
.cid-vivW9NArBt .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
@media (max-width: 1199px) {
  .cid-vivW9NArBt .item-img {
    min-height: auto;
  }
}
.cid-vivW9NArBt .item-img img {
  flex-grow: 1;
  width: 100%;
  object-fit: cover;
}
.cid-vivW9NArBt .item-img a {
  display: flex;
  flex-grow: 1;
  height: 100%;
}
.cid-viwaPqfGtf {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #515151;
}
.cid-viwaPqfGtf .mbr-fallback-image.disabled {
  display: none;
}
.cid-viwaPqfGtf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viwaPqfGtf .mbr-section-head {
  margin-bottom: 32px;
}
.cid-viwaPqfGtf .mbr-section-title {
  color: #24262b;
}
.cid-viwaPqfGtf .mbr-section-subtitle {
  color: #24262b;
}
.cid-viwaPqfGtf .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-viwaPqfGtf .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-viwaPqfGtf .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-viwaPqfGtf .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-viwaPqfGtf .card-subtitle {
  color: #24262b;
}
.cid-viwaPqfGtf .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-viwaPqfGtf .mbr-section-btn {
  margin-top: 20px;
}
.cid-viwaPqfGtf .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
@media (max-width: 1199px) {
  .cid-viwaPqfGtf .item-img {
    min-height: auto;
  }
}
.cid-viwaPqfGtf .item-img img {
  flex-grow: 1;
  width: 100%;
  object-fit: cover;
}
.cid-viwaPqfGtf .item-img a {
  display: flex;
  flex-grow: 1;
  height: 100%;
}
.cid-viwdEMwoWd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #515151;
}
.cid-viwdEMwoWd .mbr-fallback-image.disabled {
  display: none;
}
.cid-viwdEMwoWd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viwdEMwoWd .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-viwdEMwoWd .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-viwdEMwoWd .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 440px;
  max-width: 440px;
}
@media (max-width: 768px) {
  .cid-viwdEMwoWd .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-viwdEMwoWd .embla__slide .slide-content {
  width: 100%;
}
.cid-viwdEMwoWd .embla__slide .slide-content .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background-color: #e2e2e2;
}
@media (max-width: 992px) {
  .cid-viwdEMwoWd .embla__slide .slide-content .item-wrapper {
    padding: 20px;
  }
}
.cid-viwdEMwoWd .embla__slide .slide-content .item-wrapper .number-wrapper .card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  width: 54px;
  height: 54px;
  min-height: 54px;
  background-color: #1e4d2b;
  margin-bottom: 54px;
}
.cid-viwdEMwoWd .embla__slide .slide-content .item-wrapper .card-box .card-title {
  margin-bottom: 20px;
}
.cid-viwdEMwoWd .embla__slide .slide-content .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-viwdEMwoWd .embla__slide .slide-content .item-wrapper .card-box .mbr-section-btn {
  margin-top: 20px;
}
.cid-viwdEMwoWd .embla__slide .slide-content .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-viwdEMwoWd .embla__button--next,
.cid-viwdEMwoWd .embla__button--prev {
  display: flex;
}
.cid-viwdEMwoWd .arrows-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-viwdEMwoWd .embla__button {
  top: 27px;
  width: 54px;
  height: 54px;
  margin-top: -1.5rem;
  font-size: 28px;
  background-color: #e2e2e2 !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-viwdEMwoWd .embla__button:hover {
  background-color: #000000 !important;
  color: #e2e2e2 !important;
}
.cid-viwdEMwoWd .embla__button:disabled {
  opacity: .5 !important;
  background-color: #e2e2e2 !important;
  color: #000000 !important;
}
.cid-viwdEMwoWd .embla__button.embla__button--prev {
  margin-right: 78px;
}
.cid-viwdEMwoWd .embla__button.embla__button--next {
  margin-left: 78px;
}
.cid-viwdEMwoWd .embla {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 6rem;
}
.cid-viwdEMwoWd .embla__viewport {
  overflow: visible;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-viwdEMwoWd .embla__viewport {
    padding: 0;
  }
}
.cid-viwdEMwoWd .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-viwdEMwoWd .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-viwdEMwoWd .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-viwdEMwoWd .mbr-section-title,
.cid-viwdEMwoWd .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-viwdEMwoWd .card-number {
  color: #e6eddc;
}
.cid-viwdEMwoWd .card-title {
  color: #323432;
}
.cid-viwdEMwoWd .card-text {
  color: #323432;
  text-align: justify;
}
.cid-viGLSQqcM3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #515151;
}
.cid-viGLSQqcM3 .decor-wrap_1 {
  position: absolute;
  top: 14%;
  left: -4rem;
  width: 423px;
  height: 423px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #ff9370 0, #e3d688 43%, #fff6be 100%);
}
.cid-viGLSQqcM3 .decor-wrap_2 {
  position: absolute;
  top: 30%;
  right: 1%;
  width: 207px;
  height: 207px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #ff9370 0, #e3d688 43%, #fff6be 100%);
}
.cid-viGLSQqcM3 .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-viGLSQqcM3 .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-viGLSQqcM3 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-viGLSQqcM3 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 767px) {
  .cid-viGLSQqcM3 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-viGLSQqcM3 .embla__slide .slide-content {
  width: 100%;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 0 !important;
  padding-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-viGLSQqcM3 .embla__slide .slide-content {
    padding-bottom: 50px;
  }
}
.cid-viGLSQqcM3 .embla__slide .slide-content .item-wrapper {
  height: 100%;
}
.cid-viGLSQqcM3 .embla__slide .slide-content .item-wrapper .item-img {
  padding: 50px 40px 0 0;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-viGLSQqcM3 .embla__slide .slide-content .item-wrapper .item-img {
    padding: 40px 30px 0 0;
  }
}
.cid-viGLSQqcM3 .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.cid-viGLSQqcM3 .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-viGLSQqcM3 .embla__slide .slide-content .item-wrapper .item-content {
    padding: 0 30px;
  }
}
.cid-viGLSQqcM3 .embla__slide .slide-content .item-wrapper .item-content .item-name {
  margin-bottom: 20px;
}
.cid-viGLSQqcM3 .embla__slide .slide-content .item-wrapper .item-content .item-role {
  margin-bottom: 30px;
}
.cid-viGLSQqcM3 .embla__slide .slide-content .item-wrapper .item-content .item-text {
  margin-bottom: 40px;
}
.cid-viGLSQqcM3 .embla__slide .slide-content .mbr-section-btn {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-viGLSQqcM3 .embla__slide .slide-content .mbr-section-btn {
    padding: 0 30px;
  }
}
.cid-viGLSQqcM3 .embla__button--next,
.cid-viGLSQqcM3 .embla__button--prev {
  display: flex;
}
.cid-viGLSQqcM3 .embla__button {
  bottom: 0;
  width: 56px;
  height: 56px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: #e2e2e2 !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 100%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-viGLSQqcM3 .embla__button:hover {
  opacity: .6 !important;
}
.cid-viGLSQqcM3 .embla__button.embla__button--prev {
  right: 4rem;
}
.cid-viGLSQqcM3 .embla__button.embla__button--next {
  right: 0;
}
.cid-viGLSQqcM3 .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-viGLSQqcM3 .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-viGLSQqcM3 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-viGLSQqcM3 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-viGLSQqcM3 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-viGLSQqcM3 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-viGLSQqcM3 .item-name {
  color: #144031;
}
.cid-viGLSQqcM3 .item-role {
  color: #22654E;
}
.cid-viGLSQqcM3 .item-text {
  color: #000000;
  text-align: justify;
}
.cid-viGLSQqcM3 .item-name,
.cid-viGLSQqcM3 .mbr-section-btn {
  text-align: center;
  color: #7b0404;
}
.cid-viGNM9gipX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #515151;
}
.cid-viGNM9gipX .decor-wrap_1 {
  position: absolute;
  top: 14%;
  left: -4rem;
  width: 423px;
  height: 423px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-viGNM9gipX .decor-wrap_2 {
  position: absolute;
  top: 30%;
  right: 1%;
  width: 207px;
  height: 207px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-viGNM9gipX .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-viGNM9gipX .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-viGNM9gipX .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-viGNM9gipX .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 767px) {
  .cid-viGNM9gipX .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-viGNM9gipX .embla__slide .slide-content {
  width: 100%;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 0 !important;
  padding-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-viGNM9gipX .embla__slide .slide-content {
    padding-bottom: 50px;
  }
}
.cid-viGNM9gipX .embla__slide .slide-content .item-wrapper {
  height: 100%;
}
.cid-viGNM9gipX .embla__slide .slide-content .item-wrapper .item-img {
  padding: 50px 40px 0 0;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-viGNM9gipX .embla__slide .slide-content .item-wrapper .item-img {
    padding: 40px 30px 0 0;
  }
}
.cid-viGNM9gipX .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.cid-viGNM9gipX .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-viGNM9gipX .embla__slide .slide-content .item-wrapper .item-content {
    padding: 0 30px;
  }
}
.cid-viGNM9gipX .embla__slide .slide-content .item-wrapper .item-content .item-name {
  margin-bottom: 20px;
}
.cid-viGNM9gipX .embla__slide .slide-content .item-wrapper .item-content .item-role {
  margin-bottom: 30px;
}
.cid-viGNM9gipX .embla__slide .slide-content .item-wrapper .item-content .item-text {
  margin-bottom: 40px;
}
.cid-viGNM9gipX .embla__slide .slide-content .mbr-section-btn {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-viGNM9gipX .embla__slide .slide-content .mbr-section-btn {
    padding: 0 30px;
  }
}
.cid-viGNM9gipX .embla__button--next,
.cid-viGNM9gipX .embla__button--prev {
  display: flex;
}
.cid-viGNM9gipX .embla__button {
  bottom: 0;
  width: 56px;
  height: 56px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: #e2e2e2 !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 100%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-viGNM9gipX .embla__button:hover {
  opacity: .6 !important;
}
.cid-viGNM9gipX .embla__button.embla__button--prev {
  right: 4rem;
}
.cid-viGNM9gipX .embla__button.embla__button--next {
  right: 0;
}
.cid-viGNM9gipX .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-viGNM9gipX .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-viGNM9gipX .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-viGNM9gipX .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-viGNM9gipX .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-viGNM9gipX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-viGNM9gipX .item-name {
  color: #144031;
}
.cid-viGNM9gipX .item-role {
  color: #22654E;
}
.cid-viGNM9gipX .item-text {
  color: #000000;
  text-align: justify;
}
.cid-viGNM9gipX .item-name,
.cid-viGNM9gipX .mbr-section-btn {
  text-align: center;
  color: #7b0404;
}
.cid-viyIQBQdzm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #515151;
}
.cid-viyIQBQdzm .mbr-fallback-image.disabled {
  display: none;
}
.cid-viyIQBQdzm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viyIQBQdzm .mbr-section-head {
  margin-bottom: 32px;
}
.cid-viyIQBQdzm .mbr-section-title {
  color: #24262b;
}
.cid-viyIQBQdzm .mbr-section-subtitle {
  color: #24262b;
}
.cid-viyIQBQdzm .cards-row {
  row-gap: 32px;
}
.cid-viyIQBQdzm .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-viyIQBQdzm .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-viyIQBQdzm .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-viyIQBQdzm .card-subtitle {
  color: #24262b;
}
.cid-viyIQBQdzm .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-viyIQBQdzm .mbr-section-btn {
  margin-top: 20px;
}
.cid-viyIQBQdzm .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
@media (max-width: 1199px) {
  .cid-viyIQBQdzm .item-img {
    min-height: auto;
  }
}
.cid-viyIQBQdzm .item-img img {
  flex-grow: 1;
  width: 100%;
  object-fit: cover;
}
.cid-viyIQBQdzm .item-img a {
  display: flex;
  flex-grow: 1;
  height: 100%;
}
.cid-viwz7anKQv {
  background-color: #515151;
}
.cid-viwz7anKQv .mbr-fallback-image.disabled {
  display: none;
}
.cid-viwz7anKQv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viwz7anKQv .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-viwz7anKQv .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-viwz7anKQv .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-viwz7anKQv .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-viwz7anKQv .container {
    padding: 0 24px;
  }
}
.cid-viwz7anKQv .row {
  justify-content: center;
}
.cid-viwz7anKQv .content-wrapper {
  padding: 200px 48px;
  position: relative;
  display: flex;
  justify-content: center;
  border: 1px solid #edeceb;
  border-radius: 2rem !important;
}
@media (max-width: 992px) {
  .cid-viwz7anKQv .content-wrapper {
    padding: 64px 24px;
  }
}
.cid-viwz7anKQv .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-viwz7anKQv .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  max-width: 75rem;
  display: flex;
}
@media (max-width: 992px) {
  .cid-viwz7anKQv .content-wrapper .content-wrap {
    display: block;
    max-width: 100%;
  }
}
.cid-viwz7anKQv .content-wrapper .content-wrap .title-wrapper {
  width: 50%;
  padding-right: 32px;
  padding-right: 0;
  padding-left: 48px;
}
@media (max-width: 1440px) {
  .cid-viwz7anKQv .content-wrapper .content-wrap .title-wrapper {
    padding-right: 16px;
  }
}
@media (max-width: 992px) {
  .cid-viwz7anKQv .content-wrapper .content-wrap .title-wrapper {
    padding-right: 0;
    width: 100%;
    margin-bottom: 32px;
  }
}
@media (max-width: 1440px) {
  .cid-viwz7anKQv .content-wrapper .content-wrap .title-wrapper {
    padding-left: 16px;
  }
}
@media (max-width: 992px) {
  .cid-viwz7anKQv .content-wrapper .content-wrap .title-wrapper {
    padding-left: 0;
  }
}
.cid-viwz7anKQv .content-wrapper .content-wrap .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-viwz7anKQv .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-viwz7anKQv .content-wrapper .content-wrap .title-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 0;
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-viwz7anKQv .content-wrapper .content-wrap .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-viwz7anKQv .content-wrapper .content-wrap .title-wrapper .social-wrapper {
  margin-top: 48px;
}
@media (max-width: 992px) {
  .cid-viwz7anKQv .content-wrapper .content-wrap .title-wrapper .social-wrapper {
    margin-top: 32px;
  }
}
.cid-viwz7anKQv .content-wrapper .content-wrap .title-wrapper .social-wrapper .social-wrap {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
@media (max-width: 1200px) {
  .cid-viwz7anKQv .content-wrapper .content-wrap .title-wrapper .social-wrapper .social-wrap {
    grid-template-columns: 1fr;
  }
}
.cid-viwz7anKQv .content-wrapper .content-wrap .title-wrapper .social-wrapper .social-wrap .soc-item:hover .mbr-soc,
.cid-viwz7anKQv .content-wrapper .content-wrap .title-wrapper .social-wrapper .social-wrap .soc-item:focus .mbr-soc {
  opacity: .5;
}
.cid-viwz7anKQv .content-wrapper .content-wrap .title-wrapper .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}
.cid-viwz7anKQv .content-wrapper .content-wrap .title-wrapper .social-wrapper .social-wrap .soc-item a .icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  margin-right: 16px;
  background-color: #ffffff;
}
.cid-viwz7anKQv .content-wrapper .content-wrap .title-wrapper .social-wrapper .social-wrap .soc-item a .icon-wrapper .mbr-iconfont {
  position: center;
  z-index: 1;
  color: #18212d;
  font-size: 18px;
}
.cid-viwz7anKQv .content-wrapper .content-wrap .title-wrapper .social-wrapper .social-wrap .soc-item a .mbr-soc {
  margin-bottom: 0;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.cid-viwz7anKQv .content-wrapper .content-wrap .form-wrapper {
  width: 50%;
  background-color: #ffffff;
  border: 1px solid #edeceb;
  border-radius: 2rem;
  padding: 40px;
  margin-left: 32px;
  margin-left: 0;
  margin-right: 48px;
}
@media (max-width: 1440px) {
  .cid-viwz7anKQv .content-wrapper .content-wrap .form-wrapper {
    margin-left: 16px;
  }
}
@media (max-width: 992px) {
  .cid-viwz7anKQv .content-wrapper .content-wrap .form-wrapper {
    margin-left: 0;
    padding: 16px;
    border-radius: 1rem;
    width: 100%;
  }
}
@media (max-width: 1440px) {
  .cid-viwz7anKQv .content-wrapper .content-wrap .form-wrapper {
    margin-right: 16px;
  }
}
@media (max-width: 992px) {
  .cid-viwz7anKQv .content-wrapper .content-wrap .form-wrapper {
    margin-right: 0;
  }
}
.cid-viwz7anKQv .content-wrapper .content-wrap .form-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-viwz7anKQv .content-wrapper .content-wrap .form-wrapper .dragArea.row .mbr-section-title {
  margin-bottom: 24px !important;
}
.cid-viwz7anKQv .content-wrapper .content-wrap .form-wrapper .dragArea.row .mbr-text {
  margin-bottom: 24px !important;
}
.cid-viwz7anKQv .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group {
  position: relative;
  margin-bottom: 24px !important;
}
.cid-viwz7anKQv .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group:hover::before,
.cid-viwz7anKQv .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group:focus::before {
  opacity: 1;
}
.cid-viwz7anKQv .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group:hover .form-control::placeholder,
.cid-viwz7anKQv .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group:focus .form-control::placeholder {
  opacity: .2;
}
.cid-viwz7anKQv .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 12px !important;
}
.cid-viwz7anKQv .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control {
  padding: 16px;
  border: 1px solid #edeceb !important;
  box-shadow: none;
  border-radius: 8px !important;
  background-color: transparent;
}
.cid-viwz7anKQv .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-viwz7anKQv .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: 1px solid #18212d !important;
}
.cid-viwz7anKQv .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #18212d;
  font-size: 18px;
  opacity: .5;
  transition: all 0.3s ease-in-out;
}
.cid-viwz7anKQv .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group textarea {
  min-height: 160px;
}
.cid-viwz7anKQv .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-viwz7anKQv .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #edeceb;
  border-color: #edeceb;
  border-radius: 0;
}
.cid-viwz7anKQv .content-wrapper .content-wrap .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-viwz7anKQv .content-wrapper .content-wrap .form-wrapper .dragArea.row .mbr-section-btn .btn {
  width: 100%;
  margin-left: 0;
}
.cid-viwz7anKQv .mbr-section-title {
  color: #ffffff;
}
.cid-viwz7anKQv .mbr-desc {
  color: #18212d;
}
.cid-viwz7anKQv .mbr-text {
  color: #18212d;
}
.cid-viwz7anKQv .mbr-soc {
  color: #18212d;
}
.cid-viwz7anKQv label {
  color: #18212d;
}
.cid-viwz7anKQv .mbr-soc,
.cid-viwz7anKQv .social-wrapper {
  color: #ffffff;
}
.cid-viwz7anKQv .mbr-text,
.cid-viwz7anKQv .text-wrapper {
  color: #ffffff;
}
.cid-viwxRKWKqh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-viwxRKWKqh .mbr-text {
  color: #303030;
}
.cid-viwxRKWKqh .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ttjmnoK6UH .navbar-dropdown {
  position: relative !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #000000 !important;
}
.cid-ttjmnoK6UH .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ttjmnoK6UH .dropdown-item:after {
  right: 1rem !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .dropdown-item:hover:before,
.cid-ttjmnoK6UH .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ttjmnoK6UH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjmnoK6UH .nav-link {
  position: relative;
}
.cid-ttjmnoK6UH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjmnoK6UH .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-ttjmnoK6UH .navbar-nav .nav-item {
  margin: 0;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ttjmnoK6UH .dropdown-menu,
.cid-ttjmnoK6UH .navbar.opened {
  background: #000000 !important;
}
.cid-ttjmnoK6UH .nav-item:focus,
.cid-ttjmnoK6UH .nav-link:focus {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjmnoK6UH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjmnoK6UH .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  border-bottom: 2px solid #000000 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ttjmnoK6UH .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjmnoK6UH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjmnoK6UH .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ttjmnoK6UH .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjmnoK6UH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar.collapsed {
  justify-content: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjmnoK6UH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjmnoK6UH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjmnoK6UH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjmnoK6UH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjmnoK6UH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttjmnoK6UH .navbar.navbar-short {
  min-height: 100px;
}
.cid-ttjmnoK6UH .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ttjmnoK6UH .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown-item.active,
.cid-ttjmnoK6UH .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjmnoK6UH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjmnoK6UH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjmnoK6UH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjmnoK6UH .navbar-buttons {
  text-align: center;
}
.cid-ttjmnoK6UH button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #232323;
  border-radius: 50%;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ttjmnoK6UH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ttjmnoK6UH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjmnoK6UH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttjmnoK6UH .navbar {
    height: 70px;
  }
  .cid-ttjmnoK6UH .navbar.opened {
    height: auto;
  }
  .cid-ttjmnoK6UH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjmnoK6UH .container,
.cid-ttjmnoK6UH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .container,
  .cid-ttjmnoK6UH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttjmnoK6UH .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ttjmnoK6UH .navbar-collapse {
  min-height: 98px;
}
.cid-ttjmnoK6UH .mbr-section-btn {
  max-width: 35%;
}
.cid-ttjmnoK6UH .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .navbar {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .container-fluid {
    padding: 0 7%;
  }
  .cid-ttjmnoK6UH .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-ttjmnoK6UH .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ttjmnoK6UH .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ttjmnoK6UH .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ttjmnoK6UH .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-vizkIJabZW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-vizkIJabZW .img-bg-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 600px;
  padding: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-vizkIJabZW .img-bg-container {
    min-height: 560px;
  }
}
@media (max-width: 767px) {
  .cid-vizkIJabZW .img-bg-container {
    padding: 1.5rem;
  }
}
@media (max-width: 575px) {
  .cid-vizkIJabZW .img-bg-container {
    padding: 1rem;
  }
}
.cid-vizkIJabZW .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/healthyeatingafam-1536x1024.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
.cid-vizkIJabZW .img-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle farthest-corner at 0 100%, rgba(24, 24, 23, 0.9) 38%, rgba(24, 24, 23, 0.5));
}
.cid-vizkIJabZW .text-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-vizkIJabZW .mbr-section-title {
  color: #FACB1D;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-vizkIJabZW .mbr-text {
  color: #f6f6ef;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.cid-vizkIJabZW .mbr-section-btn {
  margin-top: 1rem;
}
.cid-vizdum8e3o {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-vizdum8e3o .mbr-fallback-image.disabled {
  display: none;
}
.cid-vizdum8e3o .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-vizdum8e3o .container {
    padding: 0 24px;
  }
}
.cid-vizdum8e3o .row {
  justify-content: center;
}
.cid-vizdum8e3o .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-vizdum8e3o .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-vizdum8e3o .content-wrapper {
    padding: 32px;
  }
}
.cid-vizdum8e3o .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vizdum8e3o .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-vizdum8e3o .mbr-section-title {
  color: #000000;
}
.cid-vizdum8e3o .mbr-text {
  color: #262642;
}
.cid-viznAVN9yg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viznAVN9yg .mbr-fallback-image.disabled {
  display: none;
}
.cid-viznAVN9yg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viznAVN9yg .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-viznAVN9yg .content-wrap {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-viznAVN9yg .content-wrap .label-wrapper {
    margin-bottom: 12px;
  }
}
.cid-viznAVN9yg .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-viznAVN9yg .content-wrap .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ababab;
}
.cid-viznAVN9yg .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-viznAVN9yg .content-wrap .title-wrapper {
  margin-bottom: 0;
}
.cid-viznAVN9yg .content-wrap .title-wrapper .title-wrap .mbr-section-title {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-viznAVN9yg .content-wrap .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-viznAVN9yg .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-viznAVN9yg .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-viznAVN9yg .items-wrapper {
  margin: 0 -6px;
}
.cid-viznAVN9yg .items-wrapper .item {
  padding: 0 6px;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .cid-viznAVN9yg .items-wrapper .item {
    margin-bottom: 20px;
  }
  .cid-viznAVN9yg .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-viznAVN9yg .items-wrapper .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-viznAVN9yg .items-wrapper .item .item-wrapper {
    padding: 20px;
  }
}
.cid-viznAVN9yg .items-wrapper .item .item-wrapper .iconfont-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-viznAVN9yg .items-wrapper .item .item-wrapper .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-viznAVN9yg .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  font-size: 48px;
  display: inline-flex;
}
.cid-viznAVN9yg .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-viznAVN9yg .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-viznAVN9yg .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-viznAVN9yg .mbr-label {
  color: #707070;
}
.cid-viznAVN9yg .mbr-section-title {
  color: #000000;
}
.cid-viznAVN9yg .mbr-section-subtitle {
  color: #707070;
}
.cid-viznAVN9yg .item-title {
  color: #000000;
}
.cid-viznAVN9yg .item-text {
  color: #707070;
}
.cid-viznAVN9yg .mbr-section-subtitle,
.cid-viznAVN9yg .subtitle-wrap {
  text-align: center;
}
.cid-viznAVN9yg .mbr-section-title,
.cid-viznAVN9yg .title-wrap {
  text-align: center;
  color: #ff9370;
}
.cid-viwxRKWKqh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-viwxRKWKqh .mbr-text {
  color: #303030;
}
.cid-viwxRKWKqh .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ttjmnoK6UH .navbar-dropdown {
  position: relative !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #000000 !important;
}
.cid-ttjmnoK6UH .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ttjmnoK6UH .dropdown-item:after {
  right: 1rem !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .dropdown-item:hover:before,
.cid-ttjmnoK6UH .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ttjmnoK6UH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjmnoK6UH .nav-link {
  position: relative;
}
.cid-ttjmnoK6UH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjmnoK6UH .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-ttjmnoK6UH .navbar-nav .nav-item {
  margin: 0;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ttjmnoK6UH .dropdown-menu,
.cid-ttjmnoK6UH .navbar.opened {
  background: #000000 !important;
}
.cid-ttjmnoK6UH .nav-item:focus,
.cid-ttjmnoK6UH .nav-link:focus {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjmnoK6UH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjmnoK6UH .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  border-bottom: 2px solid #000000 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ttjmnoK6UH .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjmnoK6UH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjmnoK6UH .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ttjmnoK6UH .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjmnoK6UH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar.collapsed {
  justify-content: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjmnoK6UH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjmnoK6UH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjmnoK6UH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjmnoK6UH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjmnoK6UH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttjmnoK6UH .navbar.navbar-short {
  min-height: 100px;
}
.cid-ttjmnoK6UH .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ttjmnoK6UH .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown-item.active,
.cid-ttjmnoK6UH .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjmnoK6UH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjmnoK6UH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjmnoK6UH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjmnoK6UH .navbar-buttons {
  text-align: center;
}
.cid-ttjmnoK6UH button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #232323;
  border-radius: 50%;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ttjmnoK6UH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ttjmnoK6UH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjmnoK6UH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttjmnoK6UH .navbar {
    height: 70px;
  }
  .cid-ttjmnoK6UH .navbar.opened {
    height: auto;
  }
  .cid-ttjmnoK6UH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjmnoK6UH .container,
.cid-ttjmnoK6UH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .container,
  .cid-ttjmnoK6UH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttjmnoK6UH .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ttjmnoK6UH .navbar-collapse {
  min-height: 98px;
}
.cid-ttjmnoK6UH .mbr-section-btn {
  max-width: 35%;
}
.cid-ttjmnoK6UH .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .navbar {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .container-fluid {
    padding: 0 7%;
  }
  .cid-ttjmnoK6UH .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-ttjmnoK6UH .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ttjmnoK6UH .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ttjmnoK6UH .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ttjmnoK6UH .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-viNiJ61Pku {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viNiJ61Pku .mbr-fallback-image.disabled {
  display: none;
}
.cid-viNiJ61Pku .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-viNiJ61Pku .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-viNiJ61Pku .row {
  background: #ffffff;
  align-items: center;
  padding: 3rem;
  border-radius: 3rem;
  width: fit-content;
  max-width: 1100px;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-viNiJ61Pku .row {
    padding: 3rem 1rem;
    padding-bottom: 1rem;
    border-radius: 2rem;
  }
}
.cid-viNiJ61Pku img {
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-viNiJ61Pku img {
    border-radius: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-viNiJ61Pku .image-wrapper {
    padding: 1rem;
  }
}
.cid-viNiLNXz5A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viNiLNXz5A .mbr-fallback-image.disabled {
  display: none;
}
.cid-viNiLNXz5A .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-viNiLNXz5A .container {
    padding: 0 24px;
  }
}
.cid-viNiLNXz5A .row {
  justify-content: center;
}
.cid-viNiLNXz5A .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-viNiLNXz5A .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-viNiLNXz5A .content-wrapper {
    padding: 32px;
  }
}
.cid-viNiLNXz5A .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-viNiLNXz5A .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-viNiLNXz5A .mbr-section-title {
  color: #000000;
}
.cid-viNiLNXz5A .mbr-text {
  color: #262642;
}
.cid-viwxRKWKqh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-viwxRKWKqh .mbr-text {
  color: #303030;
}
.cid-viwxRKWKqh .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ttjmnoK6UH .navbar-dropdown {
  position: relative !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #000000 !important;
}
.cid-ttjmnoK6UH .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ttjmnoK6UH .dropdown-item:after {
  right: 1rem !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .dropdown-item:hover:before,
.cid-ttjmnoK6UH .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ttjmnoK6UH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjmnoK6UH .nav-link {
  position: relative;
}
.cid-ttjmnoK6UH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjmnoK6UH .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-ttjmnoK6UH .navbar-nav .nav-item {
  margin: 0;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ttjmnoK6UH .dropdown-menu,
.cid-ttjmnoK6UH .navbar.opened {
  background: #000000 !important;
}
.cid-ttjmnoK6UH .nav-item:focus,
.cid-ttjmnoK6UH .nav-link:focus {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjmnoK6UH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjmnoK6UH .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  border-bottom: 2px solid #000000 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ttjmnoK6UH .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjmnoK6UH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjmnoK6UH .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ttjmnoK6UH .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjmnoK6UH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar.collapsed {
  justify-content: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjmnoK6UH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjmnoK6UH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjmnoK6UH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjmnoK6UH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjmnoK6UH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttjmnoK6UH .navbar.navbar-short {
  min-height: 100px;
}
.cid-ttjmnoK6UH .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ttjmnoK6UH .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown-item.active,
.cid-ttjmnoK6UH .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjmnoK6UH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjmnoK6UH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjmnoK6UH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjmnoK6UH .navbar-buttons {
  text-align: center;
}
.cid-ttjmnoK6UH button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #232323;
  border-radius: 50%;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ttjmnoK6UH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ttjmnoK6UH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjmnoK6UH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttjmnoK6UH .navbar {
    height: 70px;
  }
  .cid-ttjmnoK6UH .navbar.opened {
    height: auto;
  }
  .cid-ttjmnoK6UH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjmnoK6UH .container,
.cid-ttjmnoK6UH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .container,
  .cid-ttjmnoK6UH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttjmnoK6UH .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ttjmnoK6UH .navbar-collapse {
  min-height: 98px;
}
.cid-ttjmnoK6UH .mbr-section-btn {
  max-width: 35%;
}
.cid-ttjmnoK6UH .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .navbar {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .container-fluid {
    padding: 0 7%;
  }
  .cid-ttjmnoK6UH .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-ttjmnoK6UH .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ttjmnoK6UH .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ttjmnoK6UH .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ttjmnoK6UH .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-viNDadTphu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viNDadTphu .img-bg-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 600px;
  padding: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-viNDadTphu .img-bg-container {
    min-height: 560px;
  }
}
@media (max-width: 767px) {
  .cid-viNDadTphu .img-bg-container {
    padding: 1.5rem;
  }
}
@media (max-width: 575px) {
  .cid-viNDadTphu .img-bg-container {
    padding: 1rem;
  }
}
.cid-viNDadTphu .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/chatgpt20image20may2052020262009-36-5120pm-1536x1024.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
.cid-viNDadTphu .img-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle farthest-corner at 0 100%, rgba(24, 24, 23, 0.9) 38%, rgba(24, 24, 23, 0.5));
}
.cid-viNDadTphu .text-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-viNDadTphu .mbr-section-title {
  color: #FACB1D;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-viNDadTphu .mbr-text {
  color: #f6f6ef;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.cid-viNDadTphu .mbr-section-btn {
  margin-top: 1rem;
}
.cid-viNDbl4QNy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viNDbl4QNy .mbr-fallback-image.disabled {
  display: none;
}
.cid-viNDbl4QNy .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-viNDbl4QNy .container {
    padding: 0 24px;
  }
}
.cid-viNDbl4QNy .row {
  justify-content: center;
}
.cid-viNDbl4QNy .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-viNDbl4QNy .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-viNDbl4QNy .content-wrapper {
    padding: 32px;
  }
}
.cid-viNDbl4QNy .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-viNDbl4QNy .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-viNDbl4QNy .mbr-section-title {
  color: #000000;
}
.cid-viNDbl4QNy .mbr-text {
  color: #262642;
}
.cid-viNEYVNjAE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-viNEYVNjAE .mbr-text {
  color: #303030;
}
.cid-viNEYVNjAE .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ttjmnoK6UH .navbar-dropdown {
  position: relative !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #000000 !important;
}
.cid-ttjmnoK6UH .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ttjmnoK6UH .dropdown-item:after {
  right: 1rem !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .dropdown-item:hover:before,
.cid-ttjmnoK6UH .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ttjmnoK6UH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjmnoK6UH .nav-link {
  position: relative;
}
.cid-ttjmnoK6UH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjmnoK6UH .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-ttjmnoK6UH .navbar-nav .nav-item {
  margin: 0;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ttjmnoK6UH .dropdown-menu,
.cid-ttjmnoK6UH .navbar.opened {
  background: #000000 !important;
}
.cid-ttjmnoK6UH .nav-item:focus,
.cid-ttjmnoK6UH .nav-link:focus {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjmnoK6UH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjmnoK6UH .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  border-bottom: 2px solid #000000 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ttjmnoK6UH .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjmnoK6UH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjmnoK6UH .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ttjmnoK6UH .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjmnoK6UH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar.collapsed {
  justify-content: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjmnoK6UH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjmnoK6UH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjmnoK6UH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjmnoK6UH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjmnoK6UH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttjmnoK6UH .navbar.navbar-short {
  min-height: 100px;
}
.cid-ttjmnoK6UH .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ttjmnoK6UH .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown-item.active,
.cid-ttjmnoK6UH .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjmnoK6UH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjmnoK6UH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjmnoK6UH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjmnoK6UH .navbar-buttons {
  text-align: center;
}
.cid-ttjmnoK6UH button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #232323;
  border-radius: 50%;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ttjmnoK6UH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ttjmnoK6UH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjmnoK6UH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttjmnoK6UH .navbar {
    height: 70px;
  }
  .cid-ttjmnoK6UH .navbar.opened {
    height: auto;
  }
  .cid-ttjmnoK6UH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjmnoK6UH .container,
.cid-ttjmnoK6UH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .container,
  .cid-ttjmnoK6UH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttjmnoK6UH .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ttjmnoK6UH .navbar-collapse {
  min-height: 98px;
}
.cid-ttjmnoK6UH .mbr-section-btn {
  max-width: 35%;
}
.cid-ttjmnoK6UH .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .navbar {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .container-fluid {
    padding: 0 7%;
  }
  .cid-ttjmnoK6UH .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-ttjmnoK6UH .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ttjmnoK6UH .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ttjmnoK6UH .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ttjmnoK6UH .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-viSP3SPjcW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viSP3SPjcW .mbr-fallback-image.disabled {
  display: none;
}
.cid-viSP3SPjcW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viSP3SPjcW .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-viSP3SPjcW .content-wrap {
    margin-bottom: 32px;
  }
}
.cid-viSP3SPjcW .label-wrapper {
  margin-bottom: 12px;
}
.cid-viSP3SPjcW .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-viSP3SPjcW .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ababab;
}
.cid-viSP3SPjcW .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-viSP3SPjcW .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-viSP3SPjcW .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-viSP3SPjcW .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-viSP3SPjcW .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 600px;
  max-width: 600px;
}
@media (max-width: 1200px) {
  .cid-viSP3SPjcW .embla__slide {
    min-width: 475px;
    max-width: 475px;
  }
}
@media (max-width: 768px) {
  .cid-viSP3SPjcW .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-viSP3SPjcW .embla__slide .slide-content {
  width: 100%;
}
.cid-viSP3SPjcW .embla__slide .slide-content:hover .item-wrapper .item-img img,
.cid-viSP3SPjcW .embla__slide .slide-content:focus .item-wrapper .item-img img {
  transform: scale(1.1);
}
.cid-viSP3SPjcW .embla__slide .slide-content .item-wrapper {
  background-color: #ffffff;
  padding: 12px 8px;
  height: 100%;
}
.cid-viSP3SPjcW .embla__slide .slide-content .item-wrapper .decor-wrapper {
  display: flex;
}
.cid-viSP3SPjcW .embla__slide .slide-content .item-wrapper .decor-wrapper .decor-wrap {
  display: inline-flex;
  gap: 4px;
  padding: 0 4px;
}
.cid-viSP3SPjcW .embla__slide .slide-content .item-wrapper .decor-wrapper .decor-wrap .item-decor {
  display: inline-flex;
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 100%;
}
.cid-viSP3SPjcW .embla__slide .slide-content .item-wrapper .decor-wrapper .decor-wrap .decor_1 {
  background-color: #e6e6e6;
}
.cid-viSP3SPjcW .embla__slide .slide-content .item-wrapper .decor-wrapper .decor-wrap .decor_2 {
  background-color: #707070;
}
.cid-viSP3SPjcW .embla__slide .slide-content .item-wrapper .decor-wrapper .decor-wrap .decor_3 {
  background-color: #000000;
}
.cid-viSP3SPjcW .embla__slide .slide-content .item-wrapper .item-img {
  overflow: hidden;
  margin: 12px 0;
}
@media (max-width: 992px) {
  .cid-viSP3SPjcW .embla__slide .slide-content .item-wrapper .item-img {
    margin: 8px 0 12px;
  }
}
.cid-viSP3SPjcW .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 335px;
  object-fit: cover;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-viSP3SPjcW .embla__slide .slide-content .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-viSP3SPjcW .embla__slide .slide-content .item-wrapper .card-box {
  position: relative;
  z-index: 1;
  padding: 12px;
}
@media (max-width: 992px) {
  .cid-viSP3SPjcW .embla__slide .slide-content .item-wrapper .card-box {
    padding: 8px 12px 8px;
  }
}
.cid-viSP3SPjcW .embla__slide .slide-content .item-wrapper .card-box .item-title {
  margin-bottom: 4px;
}
.cid-viSP3SPjcW .embla__slide .slide-content .item-wrapper .card-box .item-date {
  margin-bottom: 0;
}
.cid-viSP3SPjcW .embla__slide .slide-content .item-wrapper .card-box .item-text {
  margin-top: 12px;
  margin-bottom: 0;
}
.cid-viSP3SPjcW .embla__slide .slide-content .item-wrapper .card-box .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-viSP3SPjcW .embla__button--next,
.cid-viSP3SPjcW .embla__button--prev {
  display: flex;
}
.cid-viSP3SPjcW .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  font-size: 16px;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 100% !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-viSP3SPjcW .embla__button:hover {
  background-color: #e6e6e6 !important;
  color: #707070 !important;
}
.cid-viSP3SPjcW .embla__button:disabled {
  opacity: .5 !important;
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-viSP3SPjcW .embla__button.embla__button--prev {
  left: 0;
}
.cid-viSP3SPjcW .embla__button.embla__button--next {
  left: 50px;
}
.cid-viSP3SPjcW .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 5rem;
}
@media (max-width: 992px) {
  .cid-viSP3SPjcW .embla {
    padding-bottom: 4rem;
  }
}
.cid-viSP3SPjcW .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-viSP3SPjcW .embla__viewport {
    padding: 0;
  }
}
.cid-viSP3SPjcW .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-viSP3SPjcW .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-viSP3SPjcW .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-viSP3SPjcW .item-menu-overlay {
  opacity: 0 !important;
}
.cid-viSP3SPjcW .mbr-label {
  color: #707070;
}
.cid-viSP3SPjcW .mbr-section-title {
  color: #fff6be;
}
.cid-viSP3SPjcW .mbr-text {
  color: #707070;
}
.cid-viSP3SPjcW .item-title {
  color: #000000;
}
.cid-viSP3SPjcW .item-date {
  color: #707070;
}
.cid-viSP3SPjcW .item-text {
  color: #000000;
}
.cid-viNJRKnyFS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viNJRKnyFS .mbr-fallback-image.disabled {
  display: none;
}
.cid-viNJRKnyFS .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-viNJRKnyFS .container {
    padding: 0 24px;
  }
}
.cid-viNJRKnyFS .row {
  justify-content: center;
}
.cid-viNJRKnyFS .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-viNJRKnyFS .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-viNJRKnyFS .content-wrapper {
    padding: 32px;
  }
}
.cid-viNJRKnyFS .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-viNJRKnyFS .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-viNJRKnyFS .mbr-section-title {
  color: #000000;
}
.cid-viNJRKnyFS .mbr-text {
  color: #262642;
}
.cid-viNEYVNjAE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-viNEYVNjAE .mbr-text {
  color: #303030;
}
.cid-viNEYVNjAE .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ttjmnoK6UH .navbar-dropdown {
  position: relative !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #000000 !important;
}
.cid-ttjmnoK6UH .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ttjmnoK6UH .dropdown-item:after {
  right: 1rem !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .dropdown-item:hover:before,
.cid-ttjmnoK6UH .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ttjmnoK6UH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjmnoK6UH .nav-link {
  position: relative;
}
.cid-ttjmnoK6UH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjmnoK6UH .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-ttjmnoK6UH .navbar-nav .nav-item {
  margin: 0;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ttjmnoK6UH .dropdown-menu,
.cid-ttjmnoK6UH .navbar.opened {
  background: #000000 !important;
}
.cid-ttjmnoK6UH .nav-item:focus,
.cid-ttjmnoK6UH .nav-link:focus {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjmnoK6UH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjmnoK6UH .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  border-bottom: 2px solid #000000 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ttjmnoK6UH .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjmnoK6UH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjmnoK6UH .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ttjmnoK6UH .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjmnoK6UH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar.collapsed {
  justify-content: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjmnoK6UH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjmnoK6UH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjmnoK6UH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjmnoK6UH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjmnoK6UH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttjmnoK6UH .navbar.navbar-short {
  min-height: 100px;
}
.cid-ttjmnoK6UH .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ttjmnoK6UH .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown-item.active,
.cid-ttjmnoK6UH .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjmnoK6UH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjmnoK6UH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjmnoK6UH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjmnoK6UH .navbar-buttons {
  text-align: center;
}
.cid-ttjmnoK6UH button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #232323;
  border-radius: 50%;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ttjmnoK6UH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ttjmnoK6UH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjmnoK6UH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttjmnoK6UH .navbar {
    height: 70px;
  }
  .cid-ttjmnoK6UH .navbar.opened {
    height: auto;
  }
  .cid-ttjmnoK6UH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjmnoK6UH .container,
.cid-ttjmnoK6UH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .container,
  .cid-ttjmnoK6UH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttjmnoK6UH .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ttjmnoK6UH .navbar-collapse {
  min-height: 98px;
}
.cid-ttjmnoK6UH .mbr-section-btn {
  max-width: 35%;
}
.cid-ttjmnoK6UH .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .navbar {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .container-fluid {
    padding: 0 7%;
  }
  .cid-ttjmnoK6UH .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-ttjmnoK6UH .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ttjmnoK6UH .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ttjmnoK6UH .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ttjmnoK6UH .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-viNMuklOsb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viNMuklOsb .img-bg-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 600px;
  padding: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-viNMuklOsb .img-bg-container {
    min-height: 560px;
  }
}
@media (max-width: 767px) {
  .cid-viNMuklOsb .img-bg-container {
    padding: 1.5rem;
  }
}
@media (max-width: 575px) {
  .cid-viNMuklOsb .img-bg-container {
    padding: 1rem;
  }
}
.cid-viNMuklOsb .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/tanker-rollover-fixed-1652x952.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
.cid-viNMuklOsb .img-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle farthest-corner at 0 100%, rgba(24, 24, 23, 0.9) 38%, rgba(24, 24, 23, 0.5));
}
.cid-viNMuklOsb .text-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-viNMuklOsb .mbr-section-title {
  color: #FACB1D;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-viNMuklOsb .mbr-text {
  color: #f6f6ef;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.cid-viNMuklOsb .mbr-section-btn {
  margin-top: 1rem;
}
.cid-viNMuC5JC9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viNMuC5JC9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-viNMuC5JC9 .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-viNMuC5JC9 .container {
    padding: 0 24px;
  }
}
.cid-viNMuC5JC9 .row {
  justify-content: center;
}
.cid-viNMuC5JC9 .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-viNMuC5JC9 .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-viNMuC5JC9 .content-wrapper {
    padding: 32px;
  }
}
.cid-viNMuC5JC9 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-viNMuC5JC9 .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-viNMuC5JC9 .mbr-section-title {
  color: #000000;
}
.cid-viNMuC5JC9 .mbr-text {
  color: #262642;
}
.cid-viY9QF86oZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viY9QF86oZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-viY9QF86oZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viY9QF86oZ .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-viY9QF86oZ .content-wrap {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-viY9QF86oZ .content-wrap .label-wrapper {
    margin-bottom: 12px;
  }
}
.cid-viY9QF86oZ .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-viY9QF86oZ .content-wrap .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ababab;
}
.cid-viY9QF86oZ .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-viY9QF86oZ .content-wrap .title-wrapper {
  margin-bottom: 0;
}
.cid-viY9QF86oZ .content-wrap .title-wrapper .title-wrap .mbr-section-title {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-viY9QF86oZ .content-wrap .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-viY9QF86oZ .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-viY9QF86oZ .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-viY9QF86oZ .items-wrapper {
  margin: 0 -6px;
}
.cid-viY9QF86oZ .items-wrapper .item {
  padding: 0 6px;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .cid-viY9QF86oZ .items-wrapper .item {
    margin-bottom: 20px;
  }
  .cid-viY9QF86oZ .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-viY9QF86oZ .items-wrapper .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-viY9QF86oZ .items-wrapper .item .item-wrapper {
    padding: 20px;
  }
}
.cid-viY9QF86oZ .items-wrapper .item .item-wrapper .iconfont-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-viY9QF86oZ .items-wrapper .item .item-wrapper .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-viY9QF86oZ .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  font-size: 48px;
  display: inline-flex;
}
.cid-viY9QF86oZ .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-viY9QF86oZ .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-viY9QF86oZ .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-viY9QF86oZ .mbr-label {
  color: #707070;
}
.cid-viY9QF86oZ .mbr-section-title {
  color: #000000;
}
.cid-viY9QF86oZ .mbr-section-subtitle {
  color: #707070;
}
.cid-viY9QF86oZ .item-title {
  color: #000000;
}
.cid-viY9QF86oZ .item-text {
  color: #000000;
}
.cid-viY9QF86oZ .mbr-section-subtitle,
.cid-viY9QF86oZ .subtitle-wrap {
  text-align: center;
  color: #fff6be;
}
.cid-viY9QF86oZ .mbr-section-title,
.cid-viY9QF86oZ .title-wrap {
  text-align: center;
  color: #ff9370;
}
.cid-viY9QF86oZ .item-title,
.cid-viY9QF86oZ .iconfont-wrapper,
.cid-viY9QF86oZ .mbr-section-btn {
  text-align: center;
}
.cid-viwxRKWKqh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-viwxRKWKqh .mbr-text {
  color: #303030;
}
.cid-viwxRKWKqh .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ttjmnoK6UH .navbar-dropdown {
  position: relative !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #000000 !important;
}
.cid-ttjmnoK6UH .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ttjmnoK6UH .dropdown-item:after {
  right: 1rem !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .dropdown-item:hover:before,
.cid-ttjmnoK6UH .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ttjmnoK6UH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjmnoK6UH .nav-link {
  position: relative;
}
.cid-ttjmnoK6UH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjmnoK6UH .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-ttjmnoK6UH .navbar-nav .nav-item {
  margin: 0;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ttjmnoK6UH .dropdown-menu,
.cid-ttjmnoK6UH .navbar.opened {
  background: #000000 !important;
}
.cid-ttjmnoK6UH .nav-item:focus,
.cid-ttjmnoK6UH .nav-link:focus {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjmnoK6UH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjmnoK6UH .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  border-bottom: 2px solid #000000 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ttjmnoK6UH .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjmnoK6UH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjmnoK6UH .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ttjmnoK6UH .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjmnoK6UH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar.collapsed {
  justify-content: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjmnoK6UH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjmnoK6UH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjmnoK6UH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjmnoK6UH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjmnoK6UH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttjmnoK6UH .navbar.navbar-short {
  min-height: 100px;
}
.cid-ttjmnoK6UH .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ttjmnoK6UH .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown-item.active,
.cid-ttjmnoK6UH .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjmnoK6UH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjmnoK6UH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjmnoK6UH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjmnoK6UH .navbar-buttons {
  text-align: center;
}
.cid-ttjmnoK6UH button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #232323;
  border-radius: 50%;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ttjmnoK6UH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ttjmnoK6UH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjmnoK6UH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttjmnoK6UH .navbar {
    height: 70px;
  }
  .cid-ttjmnoK6UH .navbar.opened {
    height: auto;
  }
  .cid-ttjmnoK6UH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjmnoK6UH .container,
.cid-ttjmnoK6UH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .container,
  .cid-ttjmnoK6UH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttjmnoK6UH .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ttjmnoK6UH .navbar-collapse {
  min-height: 98px;
}
.cid-ttjmnoK6UH .mbr-section-btn {
  max-width: 35%;
}
.cid-ttjmnoK6UH .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .navbar {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .container-fluid {
    padding: 0 7%;
  }
  .cid-ttjmnoK6UH .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-ttjmnoK6UH .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ttjmnoK6UH .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ttjmnoK6UH .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ttjmnoK6UH .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-viYnFSAYul {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viYnFSAYul .img-bg-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 600px;
  padding: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-viYnFSAYul .img-bg-container {
    min-height: 560px;
  }
}
@media (max-width: 767px) {
  .cid-viYnFSAYul .img-bg-container {
    padding: 1.5rem;
  }
}
@media (max-width: 575px) {
  .cid-viYnFSAYul .img-bg-container {
    padding: 1rem;
  }
}
.cid-viYnFSAYul .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/screenshot202026-05-0720180405-618x497.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
.cid-viYnFSAYul .img-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle farthest-corner at 0 100%, rgba(24, 24, 23, 0.9) 38%, rgba(24, 24, 23, 0.5));
}
.cid-viYnFSAYul .text-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-viYnFSAYul .mbr-section-title {
  color: #FACB1D;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-viYnFSAYul .mbr-text {
  color: #f6f6ef;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.cid-viYnFSAYul .mbr-section-btn {
  margin-top: 1rem;
}
.cid-viYnGOQGhw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viYnGOQGhw .mbr-fallback-image.disabled {
  display: none;
}
.cid-viYnGOQGhw .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-viYnGOQGhw .container {
    padding: 0 24px;
  }
}
.cid-viYnGOQGhw .row {
  justify-content: center;
}
.cid-viYnGOQGhw .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-viYnGOQGhw .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-viYnGOQGhw .content-wrapper {
    padding: 32px;
  }
}
.cid-viYnGOQGhw .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-viYnGOQGhw .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-viYnGOQGhw .mbr-section-title {
  color: #000000;
}
.cid-viYnGOQGhw .mbr-text {
  color: #262642;
}
.cid-viYnHLPbqA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viYnHLPbqA .mbr-fallback-image.disabled {
  display: none;
}
.cid-viYnHLPbqA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viYnHLPbqA .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-viYnHLPbqA .content-wrap {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-viYnHLPbqA .content-wrap .label-wrapper {
    margin-bottom: 12px;
  }
}
.cid-viYnHLPbqA .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-viYnHLPbqA .content-wrap .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ababab;
}
.cid-viYnHLPbqA .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-viYnHLPbqA .content-wrap .title-wrapper {
  margin-bottom: 0;
}
.cid-viYnHLPbqA .content-wrap .title-wrapper .title-wrap .mbr-section-title {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-viYnHLPbqA .content-wrap .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-viYnHLPbqA .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-viYnHLPbqA .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-viYnHLPbqA .items-wrapper {
  margin: 0 -6px;
}
.cid-viYnHLPbqA .items-wrapper .item {
  padding: 0 6px;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .cid-viYnHLPbqA .items-wrapper .item {
    margin-bottom: 20px;
  }
  .cid-viYnHLPbqA .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-viYnHLPbqA .items-wrapper .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-viYnHLPbqA .items-wrapper .item .item-wrapper {
    padding: 20px;
  }
}
.cid-viYnHLPbqA .items-wrapper .item .item-wrapper .iconfont-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-viYnHLPbqA .items-wrapper .item .item-wrapper .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-viYnHLPbqA .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  font-size: 48px;
  display: inline-flex;
}
.cid-viYnHLPbqA .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-viYnHLPbqA .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-viYnHLPbqA .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-viYnHLPbqA .mbr-label {
  color: #707070;
}
.cid-viYnHLPbqA .mbr-section-title {
  color: #000000;
}
.cid-viYnHLPbqA .mbr-section-subtitle {
  color: #707070;
}
.cid-viYnHLPbqA .item-title {
  color: #000000;
}
.cid-viYnHLPbqA .item-text {
  color: #000000;
}
.cid-viYnHLPbqA .mbr-section-subtitle,
.cid-viYnHLPbqA .subtitle-wrap {
  text-align: center;
  color: #fff6be;
}
.cid-viYnHLPbqA .mbr-section-title,
.cid-viYnHLPbqA .title-wrap {
  text-align: center;
  color: #ff9370;
}
.cid-viYnHLPbqA .item-title,
.cid-viYnHLPbqA .iconfont-wrapper,
.cid-viYnHLPbqA .mbr-section-btn {
  text-align: center;
}
.cid-viwxRKWKqh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-viwxRKWKqh .mbr-text {
  color: #303030;
}
.cid-viwxRKWKqh .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ttjmnoK6UH .navbar-dropdown {
  position: relative !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #000000 !important;
}
.cid-ttjmnoK6UH .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ttjmnoK6UH .dropdown-item:after {
  right: 1rem !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .dropdown-item:hover:before,
.cid-ttjmnoK6UH .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ttjmnoK6UH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjmnoK6UH .nav-link {
  position: relative;
}
.cid-ttjmnoK6UH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjmnoK6UH .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-ttjmnoK6UH .navbar-nav .nav-item {
  margin: 0;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ttjmnoK6UH .dropdown-menu,
.cid-ttjmnoK6UH .navbar.opened {
  background: #000000 !important;
}
.cid-ttjmnoK6UH .nav-item:focus,
.cid-ttjmnoK6UH .nav-link:focus {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjmnoK6UH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjmnoK6UH .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  border-bottom: 2px solid #000000 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ttjmnoK6UH .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjmnoK6UH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjmnoK6UH .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ttjmnoK6UH .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjmnoK6UH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar.collapsed {
  justify-content: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjmnoK6UH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjmnoK6UH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjmnoK6UH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjmnoK6UH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjmnoK6UH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttjmnoK6UH .navbar.navbar-short {
  min-height: 100px;
}
.cid-ttjmnoK6UH .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ttjmnoK6UH .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown-item.active,
.cid-ttjmnoK6UH .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjmnoK6UH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjmnoK6UH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjmnoK6UH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjmnoK6UH .navbar-buttons {
  text-align: center;
}
.cid-ttjmnoK6UH button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #232323;
  border-radius: 50%;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ttjmnoK6UH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ttjmnoK6UH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjmnoK6UH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttjmnoK6UH .navbar {
    height: 70px;
  }
  .cid-ttjmnoK6UH .navbar.opened {
    height: auto;
  }
  .cid-ttjmnoK6UH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjmnoK6UH .container,
.cid-ttjmnoK6UH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .container,
  .cid-ttjmnoK6UH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttjmnoK6UH .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ttjmnoK6UH .navbar-collapse {
  min-height: 98px;
}
.cid-ttjmnoK6UH .mbr-section-btn {
  max-width: 35%;
}
.cid-ttjmnoK6UH .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .navbar {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .container-fluid {
    padding: 0 7%;
  }
  .cid-ttjmnoK6UH .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-ttjmnoK6UH .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ttjmnoK6UH .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ttjmnoK6UH .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ttjmnoK6UH .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-viMLg6MfVX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viMLg6MfVX .img-bg-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 600px;
  padding: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-viMLg6MfVX .img-bg-container {
    min-height: 560px;
  }
}
@media (max-width: 767px) {
  .cid-viMLg6MfVX .img-bg-container {
    padding: 1.5rem;
  }
}
@media (max-width: 575px) {
  .cid-viMLg6MfVX .img-bg-container {
    padding: 1rem;
  }
}
.cid-viMLg6MfVX .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/distracteddriving-1536x1024.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
.cid-viMLg6MfVX .img-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle farthest-corner at 0 100%, rgba(24, 24, 23, 0.9) 38%, rgba(24, 24, 23, 0.5));
}
.cid-viMLg6MfVX .text-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-viMLg6MfVX .mbr-section-title {
  color: #FACB1D;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-viMLg6MfVX .mbr-text {
  color: #f6f6ef;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.cid-viMLg6MfVX .mbr-section-btn {
  margin-top: 1rem;
}
.cid-viMLkzNcm0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viMLkzNcm0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-viMLkzNcm0 .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-viMLkzNcm0 .container {
    padding: 0 24px;
  }
}
.cid-viMLkzNcm0 .row {
  justify-content: center;
}
.cid-viMLkzNcm0 .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-viMLkzNcm0 .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-viMLkzNcm0 .content-wrapper {
    padding: 32px;
  }
}
.cid-viMLkzNcm0 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-viMLkzNcm0 .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-viMLkzNcm0 .mbr-section-title {
  color: #000000;
}
.cid-viMLkzNcm0 .mbr-text {
  color: #262642;
}
.cid-viNduBtoFo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viNduBtoFo .mbr-fallback-image.disabled {
  display: none;
}
.cid-viNduBtoFo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viNduBtoFo .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-viNduBtoFo .content-wrap {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-viNduBtoFo .content-wrap .label-wrapper {
    margin-bottom: 12px;
  }
}
.cid-viNduBtoFo .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-viNduBtoFo .content-wrap .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ababab;
}
.cid-viNduBtoFo .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-viNduBtoFo .content-wrap .title-wrapper {
  margin-bottom: 0;
}
.cid-viNduBtoFo .content-wrap .title-wrapper .title-wrap .mbr-section-title {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-viNduBtoFo .content-wrap .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-viNduBtoFo .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-viNduBtoFo .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-viNduBtoFo .items-wrapper {
  margin: 0 -6px;
}
.cid-viNduBtoFo .items-wrapper .item {
  padding: 0 6px;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .cid-viNduBtoFo .items-wrapper .item {
    margin-bottom: 20px;
  }
  .cid-viNduBtoFo .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-viNduBtoFo .items-wrapper .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-viNduBtoFo .items-wrapper .item .item-wrapper {
    padding: 20px;
  }
}
.cid-viNduBtoFo .items-wrapper .item .item-wrapper .iconfont-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-viNduBtoFo .items-wrapper .item .item-wrapper .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-viNduBtoFo .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  font-size: 48px;
  display: inline-flex;
}
.cid-viNduBtoFo .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-viNduBtoFo .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-viNduBtoFo .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-viNduBtoFo .mbr-label {
  color: #707070;
}
.cid-viNduBtoFo .mbr-section-title {
  color: #000000;
}
.cid-viNduBtoFo .mbr-section-subtitle {
  color: #707070;
}
.cid-viNduBtoFo .item-title {
  color: #000000;
}
.cid-viNduBtoFo .item-text {
  color: #707070;
}
.cid-viNduBtoFo .mbr-section-subtitle,
.cid-viNduBtoFo .subtitle-wrap {
  text-align: center;
}
.cid-viNduBtoFo .mbr-section-title,
.cid-viNduBtoFo .title-wrap {
  text-align: center;
  color: #ff9370;
}
.cid-viwxRKWKqh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-viwxRKWKqh .mbr-text {
  color: #303030;
}
.cid-viwxRKWKqh .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ttjmnoK6UH .navbar-dropdown {
  position: relative !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #000000 !important;
}
.cid-ttjmnoK6UH .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ttjmnoK6UH .dropdown-item:after {
  right: 1rem !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .dropdown-item:hover:before,
.cid-ttjmnoK6UH .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ttjmnoK6UH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjmnoK6UH .nav-link {
  position: relative;
}
.cid-ttjmnoK6UH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjmnoK6UH .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-ttjmnoK6UH .navbar-nav .nav-item {
  margin: 0;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ttjmnoK6UH .dropdown-menu,
.cid-ttjmnoK6UH .navbar.opened {
  background: #000000 !important;
}
.cid-ttjmnoK6UH .nav-item:focus,
.cid-ttjmnoK6UH .nav-link:focus {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjmnoK6UH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjmnoK6UH .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  border-bottom: 2px solid #000000 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ttjmnoK6UH .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjmnoK6UH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjmnoK6UH .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ttjmnoK6UH .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjmnoK6UH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar.collapsed {
  justify-content: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjmnoK6UH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjmnoK6UH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjmnoK6UH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjmnoK6UH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjmnoK6UH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttjmnoK6UH .navbar.navbar-short {
  min-height: 100px;
}
.cid-ttjmnoK6UH .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ttjmnoK6UH .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown-item.active,
.cid-ttjmnoK6UH .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjmnoK6UH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjmnoK6UH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjmnoK6UH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjmnoK6UH .navbar-buttons {
  text-align: center;
}
.cid-ttjmnoK6UH button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #232323;
  border-radius: 50%;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ttjmnoK6UH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ttjmnoK6UH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjmnoK6UH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttjmnoK6UH .navbar {
    height: 70px;
  }
  .cid-ttjmnoK6UH .navbar.opened {
    height: auto;
  }
  .cid-ttjmnoK6UH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjmnoK6UH .container,
.cid-ttjmnoK6UH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .container,
  .cid-ttjmnoK6UH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttjmnoK6UH .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ttjmnoK6UH .navbar-collapse {
  min-height: 98px;
}
.cid-ttjmnoK6UH .mbr-section-btn {
  max-width: 35%;
}
.cid-ttjmnoK6UH .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .navbar {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .container-fluid {
    padding: 0 7%;
  }
  .cid-ttjmnoK6UH .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-ttjmnoK6UH .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ttjmnoK6UH .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ttjmnoK6UH .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ttjmnoK6UH .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-viYFj7gxE3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viYFj7gxE3 .img-bg-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 600px;
  padding: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-viYFj7gxE3 .img-bg-container {
    min-height: 560px;
  }
}
@media (max-width: 767px) {
  .cid-viYFj7gxE3 .img-bg-container {
    padding: 1.5rem;
  }
}
@media (max-width: 575px) {
  .cid-viYFj7gxE3 .img-bg-container {
    padding: 1rem;
  }
}
.cid-viYFj7gxE3 .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/cleantruck-1536x1024.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
.cid-viYFj7gxE3 .img-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle farthest-corner at 0 100%, rgba(24, 24, 23, 0.9) 38%, rgba(24, 24, 23, 0.5));
}
.cid-viYFj7gxE3 .text-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-viYFj7gxE3 .mbr-section-title {
  color: #FACB1D;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-viYFj7gxE3 .mbr-text {
  color: #f6f6ef;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.cid-viYFj7gxE3 .mbr-section-btn {
  margin-top: 1rem;
}
.cid-viYFk7Dpo4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viYFk7Dpo4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-viYFk7Dpo4 .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-viYFk7Dpo4 .container {
    padding: 0 24px;
  }
}
.cid-viYFk7Dpo4 .row {
  justify-content: center;
}
.cid-viYFk7Dpo4 .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-viYFk7Dpo4 .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-viYFk7Dpo4 .content-wrapper {
    padding: 32px;
  }
}
.cid-viYFk7Dpo4 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-viYFk7Dpo4 .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-viYFk7Dpo4 .mbr-section-title {
  color: #000000;
}
.cid-viYFk7Dpo4 .mbr-text {
  color: #262642;
}
.cid-viYFkX7VSA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viYFkX7VSA .mbr-fallback-image.disabled {
  display: none;
}
.cid-viYFkX7VSA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viYFkX7VSA .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-viYFkX7VSA .content-wrap {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-viYFkX7VSA .content-wrap .label-wrapper {
    margin-bottom: 12px;
  }
}
.cid-viYFkX7VSA .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-viYFkX7VSA .content-wrap .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ababab;
}
.cid-viYFkX7VSA .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-viYFkX7VSA .content-wrap .title-wrapper {
  margin-bottom: 0;
}
.cid-viYFkX7VSA .content-wrap .title-wrapper .title-wrap .mbr-section-title {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-viYFkX7VSA .content-wrap .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-viYFkX7VSA .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-viYFkX7VSA .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-viYFkX7VSA .items-wrapper {
  margin: 0 -6px;
}
.cid-viYFkX7VSA .items-wrapper .item {
  padding: 0 6px;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .cid-viYFkX7VSA .items-wrapper .item {
    margin-bottom: 20px;
  }
  .cid-viYFkX7VSA .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-viYFkX7VSA .items-wrapper .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-viYFkX7VSA .items-wrapper .item .item-wrapper {
    padding: 20px;
  }
}
.cid-viYFkX7VSA .items-wrapper .item .item-wrapper .iconfont-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-viYFkX7VSA .items-wrapper .item .item-wrapper .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-viYFkX7VSA .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  font-size: 48px;
  display: inline-flex;
}
.cid-viYFkX7VSA .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-viYFkX7VSA .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-viYFkX7VSA .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-viYFkX7VSA .mbr-label {
  color: #707070;
}
.cid-viYFkX7VSA .mbr-section-title {
  color: #000000;
}
.cid-viYFkX7VSA .mbr-section-subtitle {
  color: #707070;
}
.cid-viYFkX7VSA .item-title {
  color: #000000;
}
.cid-viYFkX7VSA .item-text {
  color: #000000;
}
.cid-viYFkX7VSA .mbr-section-subtitle,
.cid-viYFkX7VSA .subtitle-wrap {
  text-align: center;
  color: #fff6be;
}
.cid-viYFkX7VSA .mbr-section-title,
.cid-viYFkX7VSA .title-wrap {
  text-align: center;
  color: #ff9370;
}
.cid-viYFkX7VSA .item-title,
.cid-viYFkX7VSA .iconfont-wrapper,
.cid-viYFkX7VSA .mbr-section-btn {
  text-align: center;
}
.cid-viwxRKWKqh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-viwxRKWKqh .mbr-text {
  color: #303030;
}
.cid-viwxRKWKqh .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ttjmnoK6UH .navbar-dropdown {
  position: relative !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #000000 !important;
}
.cid-ttjmnoK6UH .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ttjmnoK6UH .dropdown-item:after {
  right: 1rem !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .dropdown-item:hover:before,
.cid-ttjmnoK6UH .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ttjmnoK6UH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjmnoK6UH .nav-link {
  position: relative;
}
.cid-ttjmnoK6UH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjmnoK6UH .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-ttjmnoK6UH .navbar-nav .nav-item {
  margin: 0;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ttjmnoK6UH .dropdown-menu,
.cid-ttjmnoK6UH .navbar.opened {
  background: #000000 !important;
}
.cid-ttjmnoK6UH .nav-item:focus,
.cid-ttjmnoK6UH .nav-link:focus {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjmnoK6UH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjmnoK6UH .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  border-bottom: 2px solid #000000 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ttjmnoK6UH .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjmnoK6UH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjmnoK6UH .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ttjmnoK6UH .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjmnoK6UH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar.collapsed {
  justify-content: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjmnoK6UH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjmnoK6UH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjmnoK6UH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjmnoK6UH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjmnoK6UH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttjmnoK6UH .navbar.navbar-short {
  min-height: 100px;
}
.cid-ttjmnoK6UH .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ttjmnoK6UH .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown-item.active,
.cid-ttjmnoK6UH .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjmnoK6UH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjmnoK6UH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjmnoK6UH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjmnoK6UH .navbar-buttons {
  text-align: center;
}
.cid-ttjmnoK6UH button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #232323;
  border-radius: 50%;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ttjmnoK6UH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ttjmnoK6UH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjmnoK6UH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttjmnoK6UH .navbar {
    height: 70px;
  }
  .cid-ttjmnoK6UH .navbar.opened {
    height: auto;
  }
  .cid-ttjmnoK6UH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjmnoK6UH .container,
.cid-ttjmnoK6UH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .container,
  .cid-ttjmnoK6UH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttjmnoK6UH .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ttjmnoK6UH .navbar-collapse {
  min-height: 98px;
}
.cid-ttjmnoK6UH .mbr-section-btn {
  max-width: 35%;
}
.cid-ttjmnoK6UH .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .navbar {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .container-fluid {
    padding: 0 7%;
  }
  .cid-ttjmnoK6UH .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-ttjmnoK6UH .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ttjmnoK6UH .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ttjmnoK6UH .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ttjmnoK6UH .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-viYHVvCwOn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viYHVvCwOn .img-bg-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 600px;
  padding: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-viYHVvCwOn .img-bg-container {
    min-height: 560px;
  }
}
@media (max-width: 767px) {
  .cid-viYHVvCwOn .img-bg-container {
    padding: 1.5rem;
  }
}
@media (max-width: 575px) {
  .cid-viYHVvCwOn .img-bg-container {
    padding: 1rem;
  }
}
.cid-viYHVvCwOn .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/screenshot202026-05-0720190711-534x381.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
.cid-viYHVvCwOn .img-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle farthest-corner at 0 100%, rgba(24, 24, 23, 0.9) 38%, rgba(24, 24, 23, 0.5));
}
.cid-viYHVvCwOn .text-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-viYHVvCwOn .mbr-section-title {
  color: #FACB1D;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-viYHVvCwOn .mbr-text {
  color: #f6f6ef;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.cid-viYHVvCwOn .mbr-section-btn {
  margin-top: 1rem;
}
.cid-viYHXOhAhq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viYHXOhAhq .mbr-fallback-image.disabled {
  display: none;
}
.cid-viYHXOhAhq .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-viYHXOhAhq .container {
    padding: 0 24px;
  }
}
.cid-viYHXOhAhq .row {
  justify-content: center;
}
.cid-viYHXOhAhq .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-viYHXOhAhq .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-viYHXOhAhq .content-wrapper {
    padding: 32px;
  }
}
.cid-viYHXOhAhq .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-viYHXOhAhq .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-viYHXOhAhq .mbr-section-title {
  color: #000000;
}
.cid-viYHXOhAhq .mbr-text {
  color: #262642;
}
.cid-viYHZ2mUiy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viYHZ2mUiy .mbr-fallback-image.disabled {
  display: none;
}
.cid-viYHZ2mUiy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viYHZ2mUiy .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-viYHZ2mUiy .content-wrap {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-viYHZ2mUiy .content-wrap .label-wrapper {
    margin-bottom: 12px;
  }
}
.cid-viYHZ2mUiy .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-viYHZ2mUiy .content-wrap .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ababab;
}
.cid-viYHZ2mUiy .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-viYHZ2mUiy .content-wrap .title-wrapper {
  margin-bottom: 0;
}
.cid-viYHZ2mUiy .content-wrap .title-wrapper .title-wrap .mbr-section-title {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-viYHZ2mUiy .content-wrap .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-viYHZ2mUiy .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-viYHZ2mUiy .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-viYHZ2mUiy .items-wrapper {
  margin: 0 -6px;
}
.cid-viYHZ2mUiy .items-wrapper .item {
  padding: 0 6px;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .cid-viYHZ2mUiy .items-wrapper .item {
    margin-bottom: 20px;
  }
  .cid-viYHZ2mUiy .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-viYHZ2mUiy .items-wrapper .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-viYHZ2mUiy .items-wrapper .item .item-wrapper {
    padding: 20px;
  }
}
.cid-viYHZ2mUiy .items-wrapper .item .item-wrapper .iconfont-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-viYHZ2mUiy .items-wrapper .item .item-wrapper .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-viYHZ2mUiy .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  font-size: 48px;
  display: inline-flex;
}
.cid-viYHZ2mUiy .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-viYHZ2mUiy .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-viYHZ2mUiy .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-viYHZ2mUiy .mbr-label {
  color: #707070;
}
.cid-viYHZ2mUiy .mbr-section-title {
  color: #000000;
}
.cid-viYHZ2mUiy .mbr-section-subtitle {
  color: #707070;
}
.cid-viYHZ2mUiy .item-title {
  color: #000000;
}
.cid-viYHZ2mUiy .item-text {
  color: #000000;
}
.cid-viYHZ2mUiy .mbr-section-subtitle,
.cid-viYHZ2mUiy .subtitle-wrap {
  text-align: center;
  color: #fff6be;
}
.cid-viYHZ2mUiy .mbr-section-title,
.cid-viYHZ2mUiy .title-wrap {
  text-align: center;
  color: #ff9370;
}
.cid-viYHZ2mUiy .item-title,
.cid-viYHZ2mUiy .iconfont-wrapper,
.cid-viYHZ2mUiy .mbr-section-btn {
  text-align: center;
}
.cid-viwxRKWKqh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-viwxRKWKqh .mbr-text {
  color: #303030;
}
.cid-viwxRKWKqh .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ttjmnoK6UH .navbar-dropdown {
  position: relative !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #000000 !important;
}
.cid-ttjmnoK6UH .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ttjmnoK6UH .dropdown-item:after {
  right: 1rem !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .dropdown-item:hover:before,
.cid-ttjmnoK6UH .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ttjmnoK6UH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjmnoK6UH .nav-link {
  position: relative;
}
.cid-ttjmnoK6UH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjmnoK6UH .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-ttjmnoK6UH .navbar-nav .nav-item {
  margin: 0;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ttjmnoK6UH .dropdown-menu,
.cid-ttjmnoK6UH .navbar.opened {
  background: #000000 !important;
}
.cid-ttjmnoK6UH .nav-item:focus,
.cid-ttjmnoK6UH .nav-link:focus {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjmnoK6UH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjmnoK6UH .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  border-bottom: 2px solid #000000 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ttjmnoK6UH .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjmnoK6UH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjmnoK6UH .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ttjmnoK6UH .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjmnoK6UH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar.collapsed {
  justify-content: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjmnoK6UH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjmnoK6UH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjmnoK6UH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjmnoK6UH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjmnoK6UH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttjmnoK6UH .navbar.navbar-short {
  min-height: 100px;
}
.cid-ttjmnoK6UH .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ttjmnoK6UH .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown-item.active,
.cid-ttjmnoK6UH .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjmnoK6UH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjmnoK6UH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjmnoK6UH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjmnoK6UH .navbar-buttons {
  text-align: center;
}
.cid-ttjmnoK6UH button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #232323;
  border-radius: 50%;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ttjmnoK6UH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ttjmnoK6UH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjmnoK6UH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttjmnoK6UH .navbar {
    height: 70px;
  }
  .cid-ttjmnoK6UH .navbar.opened {
    height: auto;
  }
  .cid-ttjmnoK6UH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjmnoK6UH .container,
.cid-ttjmnoK6UH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .container,
  .cid-ttjmnoK6UH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttjmnoK6UH .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ttjmnoK6UH .navbar-collapse {
  min-height: 98px;
}
.cid-ttjmnoK6UH .mbr-section-btn {
  max-width: 35%;
}
.cid-ttjmnoK6UH .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .navbar {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .container-fluid {
    padding: 0 7%;
  }
  .cid-ttjmnoK6UH .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-ttjmnoK6UH .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ttjmnoK6UH .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ttjmnoK6UH .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ttjmnoK6UH .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-viYKwejmMz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viYKwejmMz .img-bg-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 600px;
  padding: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-viYKwejmMz .img-bg-container {
    min-height: 560px;
  }
}
@media (max-width: 767px) {
  .cid-viYKwejmMz .img-bg-container {
    padding: 1.5rem;
  }
}
@media (max-width: 575px) {
  .cid-viYKwejmMz .img-bg-container {
    padding: 1rem;
  }
}
.cid-viYKwejmMz .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/sleepydriver-1536x1024.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
.cid-viYKwejmMz .img-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle farthest-corner at 0 100%, rgba(24, 24, 23, 0.9) 38%, rgba(24, 24, 23, 0.5));
}
.cid-viYKwejmMz .text-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-viYKwejmMz .mbr-section-title {
  color: #FACB1D;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-viYKwejmMz .mbr-text {
  color: #f6f6ef;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.cid-viYKwejmMz .mbr-section-btn {
  margin-top: 1rem;
}
.cid-viYKx3LZJu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viYKx3LZJu .mbr-fallback-image.disabled {
  display: none;
}
.cid-viYKx3LZJu .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-viYKx3LZJu .container {
    padding: 0 24px;
  }
}
.cid-viYKx3LZJu .row {
  justify-content: center;
}
.cid-viYKx3LZJu .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-viYKx3LZJu .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-viYKx3LZJu .content-wrapper {
    padding: 32px;
  }
}
.cid-viYKx3LZJu .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-viYKx3LZJu .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-viYKx3LZJu .mbr-section-title {
  color: #000000;
}
.cid-viYKx3LZJu .mbr-text {
  color: #262642;
}
.cid-viYKxOJk93 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viYKxOJk93 .mbr-fallback-image.disabled {
  display: none;
}
.cid-viYKxOJk93 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viYKxOJk93 .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-viYKxOJk93 .content-wrap {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-viYKxOJk93 .content-wrap .label-wrapper {
    margin-bottom: 12px;
  }
}
.cid-viYKxOJk93 .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-viYKxOJk93 .content-wrap .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ababab;
}
.cid-viYKxOJk93 .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-viYKxOJk93 .content-wrap .title-wrapper {
  margin-bottom: 0;
}
.cid-viYKxOJk93 .content-wrap .title-wrapper .title-wrap .mbr-section-title {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-viYKxOJk93 .content-wrap .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-viYKxOJk93 .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-viYKxOJk93 .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-viYKxOJk93 .items-wrapper {
  margin: 0 -6px;
}
.cid-viYKxOJk93 .items-wrapper .item {
  padding: 0 6px;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .cid-viYKxOJk93 .items-wrapper .item {
    margin-bottom: 20px;
  }
  .cid-viYKxOJk93 .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-viYKxOJk93 .items-wrapper .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-viYKxOJk93 .items-wrapper .item .item-wrapper {
    padding: 20px;
  }
}
.cid-viYKxOJk93 .items-wrapper .item .item-wrapper .iconfont-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-viYKxOJk93 .items-wrapper .item .item-wrapper .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-viYKxOJk93 .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  font-size: 48px;
  display: inline-flex;
}
.cid-viYKxOJk93 .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-viYKxOJk93 .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-viYKxOJk93 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-viYKxOJk93 .mbr-label {
  color: #707070;
}
.cid-viYKxOJk93 .mbr-section-title {
  color: #000000;
}
.cid-viYKxOJk93 .mbr-section-subtitle {
  color: #707070;
}
.cid-viYKxOJk93 .item-title {
  color: #000000;
}
.cid-viYKxOJk93 .item-text {
  color: #000000;
}
.cid-viYKxOJk93 .mbr-section-subtitle,
.cid-viYKxOJk93 .subtitle-wrap {
  text-align: center;
  color: #fff6be;
}
.cid-viYKxOJk93 .mbr-section-title,
.cid-viYKxOJk93 .title-wrap {
  text-align: center;
  color: #ff9370;
}
.cid-viYKxOJk93 .item-title,
.cid-viYKxOJk93 .iconfont-wrapper,
.cid-viYKxOJk93 .mbr-section-btn {
  text-align: center;
}
.cid-viwxRKWKqh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-viwxRKWKqh .mbr-text {
  color: #303030;
}
.cid-viwxRKWKqh .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ttjmnoK6UH .navbar-dropdown {
  position: relative !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #000000 !important;
}
.cid-ttjmnoK6UH .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ttjmnoK6UH .dropdown-item:after {
  right: 1rem !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .dropdown-item:hover:before,
.cid-ttjmnoK6UH .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ttjmnoK6UH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjmnoK6UH .nav-link {
  position: relative;
}
.cid-ttjmnoK6UH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjmnoK6UH .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-ttjmnoK6UH .navbar-nav .nav-item {
  margin: 0;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ttjmnoK6UH .dropdown-menu,
.cid-ttjmnoK6UH .navbar.opened {
  background: #000000 !important;
}
.cid-ttjmnoK6UH .nav-item:focus,
.cid-ttjmnoK6UH .nav-link:focus {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjmnoK6UH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjmnoK6UH .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  border-bottom: 2px solid #000000 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ttjmnoK6UH .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjmnoK6UH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjmnoK6UH .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ttjmnoK6UH .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjmnoK6UH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar.collapsed {
  justify-content: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjmnoK6UH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjmnoK6UH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjmnoK6UH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjmnoK6UH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjmnoK6UH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttjmnoK6UH .navbar.navbar-short {
  min-height: 100px;
}
.cid-ttjmnoK6UH .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ttjmnoK6UH .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown-item.active,
.cid-ttjmnoK6UH .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjmnoK6UH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjmnoK6UH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjmnoK6UH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjmnoK6UH .navbar-buttons {
  text-align: center;
}
.cid-ttjmnoK6UH button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #232323;
  border-radius: 50%;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ttjmnoK6UH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ttjmnoK6UH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjmnoK6UH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttjmnoK6UH .navbar {
    height: 70px;
  }
  .cid-ttjmnoK6UH .navbar.opened {
    height: auto;
  }
  .cid-ttjmnoK6UH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjmnoK6UH .container,
.cid-ttjmnoK6UH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .container,
  .cid-ttjmnoK6UH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttjmnoK6UH .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ttjmnoK6UH .navbar-collapse {
  min-height: 98px;
}
.cid-ttjmnoK6UH .mbr-section-btn {
  max-width: 35%;
}
.cid-ttjmnoK6UH .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .navbar {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .container-fluid {
    padding: 0 7%;
  }
  .cid-ttjmnoK6UH .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-ttjmnoK6UH .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ttjmnoK6UH .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ttjmnoK6UH .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ttjmnoK6UH .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-viYNMgzVlt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viYNMgzVlt .img-bg-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 600px;
  padding: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-viYNMgzVlt .img-bg-container {
    min-height: 560px;
  }
}
@media (max-width: 767px) {
  .cid-viYNMgzVlt .img-bg-container {
    padding: 1.5rem;
  }
}
@media (max-width: 575px) {
  .cid-viYNMgzVlt .img-bg-container {
    padding: 1rem;
  }
}
.cid-viYNMgzVlt .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/stolenstuff2-1536x1024.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
.cid-viYNMgzVlt .img-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle farthest-corner at 0 100%, rgba(24, 24, 23, 0.9) 38%, rgba(24, 24, 23, 0.5));
}
.cid-viYNMgzVlt .text-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-viYNMgzVlt .mbr-section-title {
  color: #FACB1D;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-viYNMgzVlt .mbr-text {
  color: #f6f6ef;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.cid-viYNMgzVlt .mbr-section-btn {
  margin-top: 1rem;
}
.cid-viYNN3CuyT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viYNN3CuyT .mbr-fallback-image.disabled {
  display: none;
}
.cid-viYNN3CuyT .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-viYNN3CuyT .container {
    padding: 0 24px;
  }
}
.cid-viYNN3CuyT .row {
  justify-content: center;
}
.cid-viYNN3CuyT .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-viYNN3CuyT .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-viYNN3CuyT .content-wrapper {
    padding: 32px;
  }
}
.cid-viYNN3CuyT .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-viYNN3CuyT .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-viYNN3CuyT .mbr-section-title {
  color: #000000;
}
.cid-viYNN3CuyT .mbr-text {
  color: #262642;
}
.cid-viYNNTLuKp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viYNNTLuKp .mbr-fallback-image.disabled {
  display: none;
}
.cid-viYNNTLuKp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viYNNTLuKp .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-viYNNTLuKp .content-wrap {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-viYNNTLuKp .content-wrap .label-wrapper {
    margin-bottom: 12px;
  }
}
.cid-viYNNTLuKp .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-viYNNTLuKp .content-wrap .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ababab;
}
.cid-viYNNTLuKp .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-viYNNTLuKp .content-wrap .title-wrapper {
  margin-bottom: 0;
}
.cid-viYNNTLuKp .content-wrap .title-wrapper .title-wrap .mbr-section-title {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-viYNNTLuKp .content-wrap .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-viYNNTLuKp .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-viYNNTLuKp .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-viYNNTLuKp .items-wrapper {
  margin: 0 -6px;
}
.cid-viYNNTLuKp .items-wrapper .item {
  padding: 0 6px;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .cid-viYNNTLuKp .items-wrapper .item {
    margin-bottom: 20px;
  }
  .cid-viYNNTLuKp .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-viYNNTLuKp .items-wrapper .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-viYNNTLuKp .items-wrapper .item .item-wrapper {
    padding: 20px;
  }
}
.cid-viYNNTLuKp .items-wrapper .item .item-wrapper .iconfont-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-viYNNTLuKp .items-wrapper .item .item-wrapper .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-viYNNTLuKp .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  font-size: 48px;
  display: inline-flex;
}
.cid-viYNNTLuKp .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-viYNNTLuKp .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-viYNNTLuKp .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-viYNNTLuKp .mbr-label {
  color: #707070;
}
.cid-viYNNTLuKp .mbr-section-title {
  color: #000000;
}
.cid-viYNNTLuKp .mbr-section-subtitle {
  color: #707070;
}
.cid-viYNNTLuKp .item-title {
  color: #000000;
}
.cid-viYNNTLuKp .item-text {
  color: #000000;
}
.cid-viYNNTLuKp .mbr-section-subtitle,
.cid-viYNNTLuKp .subtitle-wrap {
  text-align: center;
  color: #fff6be;
}
.cid-viYNNTLuKp .mbr-section-title,
.cid-viYNNTLuKp .title-wrap {
  text-align: center;
  color: #ff9370;
}
.cid-viYNNTLuKp .item-title,
.cid-viYNNTLuKp .iconfont-wrapper,
.cid-viYNNTLuKp .mbr-section-btn {
  text-align: center;
}
.cid-viwxRKWKqh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-viwxRKWKqh .mbr-text {
  color: #303030;
}
.cid-viwxRKWKqh .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ttjmnoK6UH .navbar-dropdown {
  position: relative !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #000000 !important;
}
.cid-ttjmnoK6UH .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ttjmnoK6UH .dropdown-item:after {
  right: 1rem !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .dropdown-item:hover:before,
.cid-ttjmnoK6UH .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ttjmnoK6UH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjmnoK6UH .nav-link {
  position: relative;
}
.cid-ttjmnoK6UH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjmnoK6UH .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-ttjmnoK6UH .navbar-nav .nav-item {
  margin: 0;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ttjmnoK6UH .dropdown-menu,
.cid-ttjmnoK6UH .navbar.opened {
  background: #000000 !important;
}
.cid-ttjmnoK6UH .nav-item:focus,
.cid-ttjmnoK6UH .nav-link:focus {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjmnoK6UH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjmnoK6UH .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  border-bottom: 2px solid #000000 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ttjmnoK6UH .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjmnoK6UH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjmnoK6UH .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ttjmnoK6UH .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjmnoK6UH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar.collapsed {
  justify-content: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjmnoK6UH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjmnoK6UH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjmnoK6UH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjmnoK6UH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjmnoK6UH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttjmnoK6UH .navbar.navbar-short {
  min-height: 100px;
}
.cid-ttjmnoK6UH .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ttjmnoK6UH .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown-item.active,
.cid-ttjmnoK6UH .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjmnoK6UH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjmnoK6UH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjmnoK6UH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjmnoK6UH .navbar-buttons {
  text-align: center;
}
.cid-ttjmnoK6UH button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #232323;
  border-radius: 50%;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ttjmnoK6UH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ttjmnoK6UH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjmnoK6UH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttjmnoK6UH .navbar {
    height: 70px;
  }
  .cid-ttjmnoK6UH .navbar.opened {
    height: auto;
  }
  .cid-ttjmnoK6UH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjmnoK6UH .container,
.cid-ttjmnoK6UH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .container,
  .cid-ttjmnoK6UH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttjmnoK6UH .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ttjmnoK6UH .navbar-collapse {
  min-height: 98px;
}
.cid-ttjmnoK6UH .mbr-section-btn {
  max-width: 35%;
}
.cid-ttjmnoK6UH .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .navbar {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .container-fluid {
    padding: 0 7%;
  }
  .cid-ttjmnoK6UH .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-ttjmnoK6UH .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ttjmnoK6UH .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ttjmnoK6UH .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ttjmnoK6UH .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-viYSLjjH2b {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #515151;
}
.cid-viYSLjjH2b .mbr-fallback-image.disabled {
  display: none;
}
.cid-viYSLjjH2b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viYSLjjH2b .mbr-section-head {
  margin-bottom: 32px;
}
.cid-viYSLjjH2b .mbr-section-title {
  color: #24262b;
}
.cid-viYSLjjH2b .mbr-section-subtitle {
  color: #24262b;
}
.cid-viYSLjjH2b .cards-row {
  row-gap: 32px;
  flex-direction: row-reverse;
}
.cid-viYSLjjH2b .item-content {
  align-self: center;
  height: 100%;
  padding: 4rem 3rem;
  background: #efefef;
}
@media (max-width: 767px) {
  .cid-viYSLjjH2b .item-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}
.cid-viYSLjjH2b .card-title {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-viYSLjjH2b .card-subtitle {
  color: #24262b;
}
.cid-viYSLjjH2b .card-text {
  margin-top: 16px;
  color: #24262b;
}
.cid-viYSLjjH2b .mbr-section-btn {
  margin-top: 20px;
}
.cid-viYSLjjH2b .item-img {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  height: 100%;
}
@media (max-width: 1199px) {
  .cid-viYSLjjH2b .item-img {
    min-height: auto;
  }
}
.cid-viYSLjjH2b .item-img img {
  flex-grow: 1;
  width: 100%;
  object-fit: cover;
}
.cid-viYSLjjH2b .item-img a {
  display: flex;
  flex-grow: 1;
  height: 100%;
}
.cid-viYSMxMbYZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #515151;
}
.cid-viYSMxMbYZ .decor-wrap_1 {
  position: absolute;
  top: 14%;
  left: -4rem;
  width: 423px;
  height: 423px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-viYSMxMbYZ .decor-wrap_2 {
  position: absolute;
  top: 30%;
  right: 1%;
  width: 207px;
  height: 207px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-viYSMxMbYZ .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-viYSMxMbYZ .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-viYSMxMbYZ .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-viYSMxMbYZ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 767px) {
  .cid-viYSMxMbYZ .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-viYSMxMbYZ .embla__slide .slide-content {
  width: 100%;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 0 !important;
  padding-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-viYSMxMbYZ .embla__slide .slide-content {
    padding-bottom: 50px;
  }
}
.cid-viYSMxMbYZ .embla__slide .slide-content .item-wrapper {
  height: 100%;
}
.cid-viYSMxMbYZ .embla__slide .slide-content .item-wrapper .item-img {
  padding: 50px 40px 0 0;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-viYSMxMbYZ .embla__slide .slide-content .item-wrapper .item-img {
    padding: 40px 30px 0 0;
  }
}
.cid-viYSMxMbYZ .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.cid-viYSMxMbYZ .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-viYSMxMbYZ .embla__slide .slide-content .item-wrapper .item-content {
    padding: 0 30px;
  }
}
.cid-viYSMxMbYZ .embla__slide .slide-content .item-wrapper .item-content .item-name {
  margin-bottom: 20px;
}
.cid-viYSMxMbYZ .embla__slide .slide-content .item-wrapper .item-content .item-role {
  margin-bottom: 30px;
}
.cid-viYSMxMbYZ .embla__slide .slide-content .item-wrapper .item-content .item-text {
  margin-bottom: 40px;
}
.cid-viYSMxMbYZ .embla__slide .slide-content .mbr-section-btn {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-viYSMxMbYZ .embla__slide .slide-content .mbr-section-btn {
    padding: 0 30px;
  }
}
.cid-viYSMxMbYZ .embla__button--next,
.cid-viYSMxMbYZ .embla__button--prev {
  display: flex;
}
.cid-viYSMxMbYZ .embla__button {
  bottom: 0;
  width: 56px;
  height: 56px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: #e2e2e2 !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 100%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-viYSMxMbYZ .embla__button:hover {
  opacity: .6 !important;
}
.cid-viYSMxMbYZ .embla__button.embla__button--prev {
  right: 4rem;
}
.cid-viYSMxMbYZ .embla__button.embla__button--next {
  right: 0;
}
.cid-viYSMxMbYZ .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-viYSMxMbYZ .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-viYSMxMbYZ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-viYSMxMbYZ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-viYSMxMbYZ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-viYSMxMbYZ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-viYSMxMbYZ .item-name {
  color: #144031;
}
.cid-viYSMxMbYZ .item-role {
  color: #22654E;
}
.cid-viYSMxMbYZ .item-text {
  color: #000000;
}
.cid-viYSMxMbYZ .item-name,
.cid-viYSMxMbYZ .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-viYSOCiVya {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #515151;
}
.cid-viYSOCiVya .decor-wrap_1 {
  position: absolute;
  top: 14%;
  left: -4rem;
  width: 423px;
  height: 423px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-viYSOCiVya .decor-wrap_2 {
  position: absolute;
  top: 30%;
  right: 1%;
  width: 207px;
  height: 207px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-viYSOCiVya .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-viYSOCiVya .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-viYSOCiVya .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-viYSOCiVya .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 767px) {
  .cid-viYSOCiVya .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-viYSOCiVya .embla__slide .slide-content {
  width: 100%;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 0 !important;
  padding-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-viYSOCiVya .embla__slide .slide-content {
    padding-bottom: 50px;
  }
}
.cid-viYSOCiVya .embla__slide .slide-content .item-wrapper {
  height: 100%;
}
.cid-viYSOCiVya .embla__slide .slide-content .item-wrapper .item-img {
  padding: 50px 40px 0 0;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-viYSOCiVya .embla__slide .slide-content .item-wrapper .item-img {
    padding: 40px 30px 0 0;
  }
}
.cid-viYSOCiVya .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.cid-viYSOCiVya .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-viYSOCiVya .embla__slide .slide-content .item-wrapper .item-content {
    padding: 0 30px;
  }
}
.cid-viYSOCiVya .embla__slide .slide-content .item-wrapper .item-content .item-name {
  margin-bottom: 20px;
}
.cid-viYSOCiVya .embla__slide .slide-content .item-wrapper .item-content .item-role {
  margin-bottom: 30px;
}
.cid-viYSOCiVya .embla__slide .slide-content .item-wrapper .item-content .item-text {
  margin-bottom: 40px;
}
.cid-viYSOCiVya .embla__slide .slide-content .mbr-section-btn {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-viYSOCiVya .embla__slide .slide-content .mbr-section-btn {
    padding: 0 30px;
  }
}
.cid-viYSOCiVya .embla__button--next,
.cid-viYSOCiVya .embla__button--prev {
  display: flex;
}
.cid-viYSOCiVya .embla__button {
  bottom: 0;
  width: 56px;
  height: 56px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: #e2e2e2 !important;
  color: #000000 !important;
  border: none !important;
  border-radius: 100%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-viYSOCiVya .embla__button:hover {
  opacity: .6 !important;
}
.cid-viYSOCiVya .embla__button.embla__button--prev {
  right: 4rem;
}
.cid-viYSOCiVya .embla__button.embla__button--next {
  right: 0;
}
.cid-viYSOCiVya .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-viYSOCiVya .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-viYSOCiVya .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-viYSOCiVya .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-viYSOCiVya .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-viYSOCiVya .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-viYSOCiVya .item-name {
  color: #144031;
}
.cid-viYSOCiVya .item-role {
  color: #22654E;
}
.cid-viYSOCiVya .item-text {
  color: #000000;
}
.cid-viYSOCiVya .item-name,
.cid-viYSOCiVya .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-viwxRKWKqh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-viwxRKWKqh .mbr-text {
  color: #303030;
}
.cid-viwxRKWKqh .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ttjmnoK6UH .navbar-dropdown {
  position: relative !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #000000 !important;
}
.cid-ttjmnoK6UH .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ttjmnoK6UH .dropdown-item:after {
  right: 1rem !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .dropdown-item:hover:before,
.cid-ttjmnoK6UH .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ttjmnoK6UH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjmnoK6UH .nav-link {
  position: relative;
}
.cid-ttjmnoK6UH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjmnoK6UH .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-ttjmnoK6UH .navbar-nav .nav-item {
  margin: 0;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ttjmnoK6UH .dropdown-menu,
.cid-ttjmnoK6UH .navbar.opened {
  background: #000000 !important;
}
.cid-ttjmnoK6UH .nav-item:focus,
.cid-ttjmnoK6UH .nav-link:focus {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjmnoK6UH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjmnoK6UH .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  border-bottom: 2px solid #000000 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ttjmnoK6UH .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjmnoK6UH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjmnoK6UH .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ttjmnoK6UH .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjmnoK6UH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar.collapsed {
  justify-content: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjmnoK6UH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjmnoK6UH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjmnoK6UH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjmnoK6UH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjmnoK6UH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttjmnoK6UH .navbar.navbar-short {
  min-height: 100px;
}
.cid-ttjmnoK6UH .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ttjmnoK6UH .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown-item.active,
.cid-ttjmnoK6UH .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjmnoK6UH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjmnoK6UH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjmnoK6UH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjmnoK6UH .navbar-buttons {
  text-align: center;
}
.cid-ttjmnoK6UH button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #232323;
  border-radius: 50%;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ttjmnoK6UH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ttjmnoK6UH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjmnoK6UH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttjmnoK6UH .navbar {
    height: 70px;
  }
  .cid-ttjmnoK6UH .navbar.opened {
    height: auto;
  }
  .cid-ttjmnoK6UH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjmnoK6UH .container,
.cid-ttjmnoK6UH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .container,
  .cid-ttjmnoK6UH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttjmnoK6UH .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ttjmnoK6UH .navbar-collapse {
  min-height: 98px;
}
.cid-ttjmnoK6UH .mbr-section-btn {
  max-width: 35%;
}
.cid-ttjmnoK6UH .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .navbar {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .container-fluid {
    padding: 0 7%;
  }
  .cid-ttjmnoK6UH .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-ttjmnoK6UH .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ttjmnoK6UH .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ttjmnoK6UH .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ttjmnoK6UH .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-viYW0fdgCu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viYW0fdgCu .img-bg-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 600px;
  padding: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-viYW0fdgCu .img-bg-container {
    min-height: 560px;
  }
}
@media (max-width: 767px) {
  .cid-viYW0fdgCu .img-bg-container {
    padding: 1.5rem;
  }
}
@media (max-width: 575px) {
  .cid-viYW0fdgCu .img-bg-container {
    padding: 1rem;
  }
}
.cid-viYW0fdgCu .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/professionaldriver-1402x1122.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
.cid-viYW0fdgCu .img-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle farthest-corner at 0 100%, rgba(24, 24, 23, 0.9) 38%, rgba(24, 24, 23, 0.5));
}
.cid-viYW0fdgCu .text-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-viYW0fdgCu .mbr-section-title {
  color: #FACB1D;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-viYW0fdgCu .mbr-text {
  color: #f6f6ef;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.cid-viYW0fdgCu .mbr-section-btn {
  margin-top: 1rem;
}
.cid-viYW16TleC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viYW16TleC .mbr-fallback-image.disabled {
  display: none;
}
.cid-viYW16TleC .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-viYW16TleC .container {
    padding: 0 24px;
  }
}
.cid-viYW16TleC .row {
  justify-content: center;
}
.cid-viYW16TleC .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-viYW16TleC .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-viYW16TleC .content-wrapper {
    padding: 32px;
  }
}
.cid-viYW16TleC .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-viYW16TleC .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-viYW16TleC .mbr-section-title {
  color: #000000;
}
.cid-viYW16TleC .mbr-text {
  color: #262642;
}
.cid-viYW1VMTpu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viYW1VMTpu .mbr-fallback-image.disabled {
  display: none;
}
.cid-viYW1VMTpu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viYW1VMTpu .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-viYW1VMTpu .content-wrap {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-viYW1VMTpu .content-wrap .label-wrapper {
    margin-bottom: 12px;
  }
}
.cid-viYW1VMTpu .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-viYW1VMTpu .content-wrap .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ababab;
}
.cid-viYW1VMTpu .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-viYW1VMTpu .content-wrap .title-wrapper {
  margin-bottom: 0;
}
.cid-viYW1VMTpu .content-wrap .title-wrapper .title-wrap .mbr-section-title {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-viYW1VMTpu .content-wrap .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-viYW1VMTpu .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-viYW1VMTpu .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-viYW1VMTpu .items-wrapper {
  margin: 0 -6px;
}
.cid-viYW1VMTpu .items-wrapper .item {
  padding: 0 6px;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .cid-viYW1VMTpu .items-wrapper .item {
    margin-bottom: 20px;
  }
  .cid-viYW1VMTpu .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-viYW1VMTpu .items-wrapper .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-viYW1VMTpu .items-wrapper .item .item-wrapper {
    padding: 20px;
  }
}
.cid-viYW1VMTpu .items-wrapper .item .item-wrapper .iconfont-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-viYW1VMTpu .items-wrapper .item .item-wrapper .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-viYW1VMTpu .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  font-size: 48px;
  display: inline-flex;
}
.cid-viYW1VMTpu .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-viYW1VMTpu .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-viYW1VMTpu .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-viYW1VMTpu .mbr-label {
  color: #707070;
}
.cid-viYW1VMTpu .mbr-section-title {
  color: #000000;
}
.cid-viYW1VMTpu .mbr-section-subtitle {
  color: #707070;
}
.cid-viYW1VMTpu .item-title {
  color: #000000;
}
.cid-viYW1VMTpu .item-text {
  color: #000000;
}
.cid-viYW1VMTpu .mbr-section-subtitle,
.cid-viYW1VMTpu .subtitle-wrap {
  text-align: center;
  color: #fff6be;
}
.cid-viYW1VMTpu .mbr-section-title,
.cid-viYW1VMTpu .title-wrap {
  text-align: center;
  color: #ff9370;
}
.cid-viYW1VMTpu .item-title,
.cid-viYW1VMTpu .iconfont-wrapper,
.cid-viYW1VMTpu .mbr-section-btn {
  text-align: center;
}
.cid-viwxRKWKqh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-viwxRKWKqh .mbr-text {
  color: #303030;
}
.cid-viwxRKWKqh .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ttjmnoK6UH .navbar-dropdown {
  position: relative !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #000000 !important;
}
.cid-ttjmnoK6UH .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ttjmnoK6UH .dropdown-item:after {
  right: 1rem !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .dropdown-item:hover:before,
.cid-ttjmnoK6UH .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ttjmnoK6UH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjmnoK6UH .nav-link {
  position: relative;
}
.cid-ttjmnoK6UH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjmnoK6UH .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-ttjmnoK6UH .navbar-nav .nav-item {
  margin: 0;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ttjmnoK6UH .dropdown-menu,
.cid-ttjmnoK6UH .navbar.opened {
  background: #000000 !important;
}
.cid-ttjmnoK6UH .nav-item:focus,
.cid-ttjmnoK6UH .nav-link:focus {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjmnoK6UH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjmnoK6UH .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  border-bottom: 2px solid #000000 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ttjmnoK6UH .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjmnoK6UH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjmnoK6UH .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ttjmnoK6UH .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjmnoK6UH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar.collapsed {
  justify-content: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjmnoK6UH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjmnoK6UH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjmnoK6UH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjmnoK6UH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjmnoK6UH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttjmnoK6UH .navbar.navbar-short {
  min-height: 100px;
}
.cid-ttjmnoK6UH .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ttjmnoK6UH .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown-item.active,
.cid-ttjmnoK6UH .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjmnoK6UH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjmnoK6UH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjmnoK6UH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjmnoK6UH .navbar-buttons {
  text-align: center;
}
.cid-ttjmnoK6UH button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #232323;
  border-radius: 50%;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ttjmnoK6UH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ttjmnoK6UH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjmnoK6UH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttjmnoK6UH .navbar {
    height: 70px;
  }
  .cid-ttjmnoK6UH .navbar.opened {
    height: auto;
  }
  .cid-ttjmnoK6UH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjmnoK6UH .container,
.cid-ttjmnoK6UH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .container,
  .cid-ttjmnoK6UH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttjmnoK6UH .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ttjmnoK6UH .navbar-collapse {
  min-height: 98px;
}
.cid-ttjmnoK6UH .mbr-section-btn {
  max-width: 35%;
}
.cid-ttjmnoK6UH .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .navbar {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .container-fluid {
    padding: 0 7%;
  }
  .cid-ttjmnoK6UH .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-ttjmnoK6UH .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ttjmnoK6UH .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ttjmnoK6UH .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ttjmnoK6UH .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-viZ1z1UCkK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viZ1z1UCkK .img-bg-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 600px;
  padding: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-viZ1z1UCkK .img-bg-container {
    min-height: 560px;
  }
}
@media (max-width: 767px) {
  .cid-viZ1z1UCkK .img-bg-container {
    padding: 1.5rem;
  }
}
@media (max-width: 575px) {
  .cid-viZ1z1UCkK .img-bg-container {
    padding: 1rem;
  }
}
.cid-viZ1z1UCkK .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/newbiehd-1402x1122.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
.cid-viZ1z1UCkK .img-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle farthest-corner at 0 100%, rgba(24, 24, 23, 0.9) 38%, rgba(24, 24, 23, 0.5));
}
.cid-viZ1z1UCkK .text-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-viZ1z1UCkK .mbr-section-title {
  color: #FACB1D;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-viZ1z1UCkK .mbr-text {
  color: #f6f6ef;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.cid-viZ1z1UCkK .mbr-section-btn {
  margin-top: 1rem;
}
.cid-viZa5lLqIV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viZa5lLqIV .mbr-fallback-image.disabled {
  display: none;
}
.cid-viZa5lLqIV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viZa5lLqIV .col-12 {
  position: relative;
}
.cid-viZa5lLqIV img {
  margin: auto;
}
.cid-viZa5lLqIV .text-wrapper {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .cid-viZa5lLqIV .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-viZa5lLqIV .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-viZa5lLqIV .image-wrapper {
    padding: 1rem;
  }
}
.cid-viZa5lLqIV .mbr-section-title {
  color: #ffffff;
}
.cid-viZa5lLqIV .mbr-text,
.cid-viZa5lLqIV .mbr-section-btn {
  color: #ffffff;
}
.cid-viZ1Abvw11 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viZ1Abvw11 .mbr-fallback-image.disabled {
  display: none;
}
.cid-viZ1Abvw11 .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-viZ1Abvw11 .container {
    padding: 0 24px;
  }
}
.cid-viZ1Abvw11 .row {
  justify-content: center;
}
.cid-viZ1Abvw11 .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-viZ1Abvw11 .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-viZ1Abvw11 .content-wrapper {
    padding: 32px;
  }
}
.cid-viZ1Abvw11 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-viZ1Abvw11 .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-viZ1Abvw11 .mbr-section-title {
  color: #000000;
}
.cid-viZ1Abvw11 .mbr-text {
  color: #262642;
}
.cid-viZ1AV5MH8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viZ1AV5MH8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-viZ1AV5MH8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viZ1AV5MH8 .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-viZ1AV5MH8 .content-wrap {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-viZ1AV5MH8 .content-wrap .label-wrapper {
    margin-bottom: 12px;
  }
}
.cid-viZ1AV5MH8 .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-viZ1AV5MH8 .content-wrap .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ababab;
}
.cid-viZ1AV5MH8 .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-viZ1AV5MH8 .content-wrap .title-wrapper {
  margin-bottom: 0;
}
.cid-viZ1AV5MH8 .content-wrap .title-wrapper .title-wrap .mbr-section-title {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-viZ1AV5MH8 .content-wrap .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-viZ1AV5MH8 .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-viZ1AV5MH8 .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-viZ1AV5MH8 .items-wrapper {
  margin: 0 -6px;
}
.cid-viZ1AV5MH8 .items-wrapper .item {
  padding: 0 6px;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .cid-viZ1AV5MH8 .items-wrapper .item {
    margin-bottom: 20px;
  }
  .cid-viZ1AV5MH8 .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-viZ1AV5MH8 .items-wrapper .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-viZ1AV5MH8 .items-wrapper .item .item-wrapper {
    padding: 20px;
  }
}
.cid-viZ1AV5MH8 .items-wrapper .item .item-wrapper .iconfont-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-viZ1AV5MH8 .items-wrapper .item .item-wrapper .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-viZ1AV5MH8 .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  font-size: 48px;
  display: inline-flex;
}
.cid-viZ1AV5MH8 .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-viZ1AV5MH8 .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-viZ1AV5MH8 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-viZ1AV5MH8 .mbr-label {
  color: #707070;
}
.cid-viZ1AV5MH8 .mbr-section-title {
  color: #000000;
}
.cid-viZ1AV5MH8 .mbr-section-subtitle {
  color: #707070;
}
.cid-viZ1AV5MH8 .item-title {
  color: #000000;
}
.cid-viZ1AV5MH8 .item-text {
  color: #000000;
}
.cid-viZ1AV5MH8 .mbr-section-subtitle,
.cid-viZ1AV5MH8 .subtitle-wrap {
  text-align: center;
  color: #fff6be;
}
.cid-viZ1AV5MH8 .mbr-section-title,
.cid-viZ1AV5MH8 .title-wrap {
  text-align: center;
  color: #ff9370;
}
.cid-viZ1AV5MH8 .item-title,
.cid-viZ1AV5MH8 .iconfont-wrapper,
.cid-viZ1AV5MH8 .mbr-section-btn {
  text-align: center;
}
.cid-viwxRKWKqh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-viwxRKWKqh .mbr-text {
  color: #303030;
}
.cid-viwxRKWKqh .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ttjmnoK6UH .navbar-dropdown {
  position: relative !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #000000 !important;
}
.cid-ttjmnoK6UH .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ttjmnoK6UH .dropdown-item:after {
  right: 1rem !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .dropdown-item:hover:before,
.cid-ttjmnoK6UH .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ttjmnoK6UH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjmnoK6UH .nav-link {
  position: relative;
}
.cid-ttjmnoK6UH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjmnoK6UH .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-ttjmnoK6UH .navbar-nav .nav-item {
  margin: 0;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ttjmnoK6UH .dropdown-menu,
.cid-ttjmnoK6UH .navbar.opened {
  background: #000000 !important;
}
.cid-ttjmnoK6UH .nav-item:focus,
.cid-ttjmnoK6UH .nav-link:focus {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjmnoK6UH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjmnoK6UH .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  border-bottom: 2px solid #000000 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ttjmnoK6UH .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjmnoK6UH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjmnoK6UH .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ttjmnoK6UH .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjmnoK6UH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar.collapsed {
  justify-content: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjmnoK6UH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjmnoK6UH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjmnoK6UH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjmnoK6UH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjmnoK6UH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttjmnoK6UH .navbar.navbar-short {
  min-height: 100px;
}
.cid-ttjmnoK6UH .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ttjmnoK6UH .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown-item.active,
.cid-ttjmnoK6UH .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjmnoK6UH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjmnoK6UH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjmnoK6UH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjmnoK6UH .navbar-buttons {
  text-align: center;
}
.cid-ttjmnoK6UH button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #232323;
  border-radius: 50%;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ttjmnoK6UH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ttjmnoK6UH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjmnoK6UH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttjmnoK6UH .navbar {
    height: 70px;
  }
  .cid-ttjmnoK6UH .navbar.opened {
    height: auto;
  }
  .cid-ttjmnoK6UH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjmnoK6UH .container,
.cid-ttjmnoK6UH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .container,
  .cid-ttjmnoK6UH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttjmnoK6UH .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ttjmnoK6UH .navbar-collapse {
  min-height: 98px;
}
.cid-ttjmnoK6UH .mbr-section-btn {
  max-width: 35%;
}
.cid-ttjmnoK6UH .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .navbar {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .container-fluid {
    padding: 0 7%;
  }
  .cid-ttjmnoK6UH .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-ttjmnoK6UH .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ttjmnoK6UH .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ttjmnoK6UH .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ttjmnoK6UH .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-viZxHJO4wp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viZxHJO4wp .img-bg-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 600px;
  padding: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-viZxHJO4wp .img-bg-container {
    min-height: 560px;
  }
}
@media (max-width: 767px) {
  .cid-viZxHJO4wp .img-bg-container {
    padding: 1.5rem;
  }
}
@media (max-width: 575px) {
  .cid-viZxHJO4wp .img-bg-container {
    padding: 1rem;
  }
}
.cid-viZxHJO4wp .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/smartdriver-1536x1024.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
.cid-viZxHJO4wp .img-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle farthest-corner at 0 100%, rgba(24, 24, 23, 0.9) 38%, rgba(24, 24, 23, 0.5));
}
.cid-viZxHJO4wp .text-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-viZxHJO4wp .mbr-section-title {
  color: #FACB1D;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-viZxHJO4wp .mbr-text {
  color: #f6f6ef;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.cid-viZxHJO4wp .mbr-section-btn {
  margin-top: 1rem;
}
.cid-viZxILgzey {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viZxILgzey .mbr-fallback-image.disabled {
  display: none;
}
.cid-viZxILgzey .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-viZxILgzey .container {
    padding: 0 24px;
  }
}
.cid-viZxILgzey .row {
  justify-content: center;
}
.cid-viZxILgzey .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-viZxILgzey .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-viZxILgzey .content-wrapper {
    padding: 32px;
  }
}
.cid-viZxILgzey .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-viZxILgzey .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-viZxILgzey .mbr-section-title {
  color: #000000;
}
.cid-viZxILgzey .mbr-text {
  color: #262642;
}
.cid-viZHiVggAf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-viZHiVggAf .mbr-fallback-image.disabled {
  display: none;
}
.cid-viZHiVggAf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viZHiVggAf .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-viZHiVggAf .content-wrap {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-viZHiVggAf .content-wrap .label-wrapper {
    margin-bottom: 12px;
  }
}
.cid-viZHiVggAf .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-viZHiVggAf .content-wrap .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ababab;
}
.cid-viZHiVggAf .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-viZHiVggAf .content-wrap .title-wrapper {
  margin-bottom: 0;
}
.cid-viZHiVggAf .content-wrap .title-wrapper .title-wrap .mbr-section-title {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-viZHiVggAf .content-wrap .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-viZHiVggAf .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-viZHiVggAf .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-viZHiVggAf .items-wrapper {
  margin: 0 -6px;
}
.cid-viZHiVggAf .items-wrapper .item {
  padding: 0 6px;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .cid-viZHiVggAf .items-wrapper .item {
    margin-bottom: 20px;
  }
  .cid-viZHiVggAf .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-viZHiVggAf .items-wrapper .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-viZHiVggAf .items-wrapper .item .item-wrapper {
    padding: 20px;
  }
}
.cid-viZHiVggAf .items-wrapper .item .item-wrapper .iconfont-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-viZHiVggAf .items-wrapper .item .item-wrapper .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-viZHiVggAf .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  font-size: 48px;
  display: inline-flex;
}
.cid-viZHiVggAf .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-viZHiVggAf .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-viZHiVggAf .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-viZHiVggAf .mbr-label {
  color: #707070;
}
.cid-viZHiVggAf .mbr-section-title {
  color: #000000;
}
.cid-viZHiVggAf .mbr-section-subtitle {
  color: #707070;
}
.cid-viZHiVggAf .item-title {
  color: #000000;
}
.cid-viZHiVggAf .item-text {
  color: #707070;
}
.cid-viZHiVggAf .mbr-section-subtitle,
.cid-viZHiVggAf .subtitle-wrap {
  text-align: center;
}
.cid-viZHiVggAf .mbr-section-title,
.cid-viZHiVggAf .title-wrap {
  text-align: center;
  color: #ff9370;
}
.cid-viwxRKWKqh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-viwxRKWKqh .mbr-text {
  color: #303030;
}
.cid-viwxRKWKqh .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ttjmnoK6UH .navbar-dropdown {
  position: relative !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #000000 !important;
}
.cid-ttjmnoK6UH .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ttjmnoK6UH .dropdown-item:after {
  right: 1rem !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .dropdown-item:hover:before,
.cid-ttjmnoK6UH .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ttjmnoK6UH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjmnoK6UH .nav-link {
  position: relative;
}
.cid-ttjmnoK6UH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjmnoK6UH .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-ttjmnoK6UH .navbar-nav .nav-item {
  margin: 0;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ttjmnoK6UH .dropdown-menu,
.cid-ttjmnoK6UH .navbar.opened {
  background: #000000 !important;
}
.cid-ttjmnoK6UH .nav-item:focus,
.cid-ttjmnoK6UH .nav-link:focus {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjmnoK6UH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjmnoK6UH .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  border-bottom: 2px solid #000000 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ttjmnoK6UH .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjmnoK6UH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjmnoK6UH .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ttjmnoK6UH .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjmnoK6UH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar.collapsed {
  justify-content: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjmnoK6UH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjmnoK6UH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjmnoK6UH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjmnoK6UH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjmnoK6UH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttjmnoK6UH .navbar.navbar-short {
  min-height: 100px;
}
.cid-ttjmnoK6UH .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ttjmnoK6UH .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown-item.active,
.cid-ttjmnoK6UH .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjmnoK6UH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjmnoK6UH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjmnoK6UH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjmnoK6UH .navbar-buttons {
  text-align: center;
}
.cid-ttjmnoK6UH button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #232323;
  border-radius: 50%;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ttjmnoK6UH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ttjmnoK6UH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjmnoK6UH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttjmnoK6UH .navbar {
    height: 70px;
  }
  .cid-ttjmnoK6UH .navbar.opened {
    height: auto;
  }
  .cid-ttjmnoK6UH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjmnoK6UH .container,
.cid-ttjmnoK6UH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .container,
  .cid-ttjmnoK6UH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttjmnoK6UH .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ttjmnoK6UH .navbar-collapse {
  min-height: 98px;
}
.cid-ttjmnoK6UH .mbr-section-btn {
  max-width: 35%;
}
.cid-ttjmnoK6UH .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .navbar {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .container-fluid {
    padding: 0 7%;
  }
  .cid-ttjmnoK6UH .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-ttjmnoK6UH .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ttjmnoK6UH .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ttjmnoK6UH .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ttjmnoK6UH .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-vj4ZOCiIYK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-vj4ZOCiIYK .img-bg-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 600px;
  padding: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-vj4ZOCiIYK .img-bg-container {
    min-height: 560px;
  }
}
@media (max-width: 767px) {
  .cid-vj4ZOCiIYK .img-bg-container {
    padding: 1.5rem;
  }
}
@media (max-width: 575px) {
  .cid-vj4ZOCiIYK .img-bg-container {
    padding: 1rem;
  }
}
.cid-vj4ZOCiIYK .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/truckdowncurvymountainroad-1402x1122.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
.cid-vj4ZOCiIYK .img-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle farthest-corner at 0 100%, rgba(24, 24, 23, 0.9) 38%, rgba(24, 24, 23, 0.5));
}
.cid-vj4ZOCiIYK .text-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-vj4ZOCiIYK .mbr-section-title {
  color: #FACB1D;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-vj4ZOCiIYK .mbr-text {
  color: #f6f6ef;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.cid-vj4ZOCiIYK .mbr-section-btn {
  margin-top: 1rem;
}
.cid-vj4ZPt8fLC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-vj4ZPt8fLC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vj4ZPt8fLC .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-vj4ZPt8fLC .container {
    padding: 0 24px;
  }
}
.cid-vj4ZPt8fLC .row {
  justify-content: center;
}
.cid-vj4ZPt8fLC .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-vj4ZPt8fLC .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-vj4ZPt8fLC .content-wrapper {
    padding: 32px;
  }
}
.cid-vj4ZPt8fLC .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vj4ZPt8fLC .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-vj4ZPt8fLC .mbr-section-title {
  color: #000000;
}
.cid-vj4ZPt8fLC .mbr-text {
  color: #262642;
}
.cid-vj4ZQb3w6Y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-vj4ZQb3w6Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-vj4ZQb3w6Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vj4ZQb3w6Y .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vj4ZQb3w6Y .content-wrap {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-vj4ZQb3w6Y .content-wrap .label-wrapper {
    margin-bottom: 12px;
  }
}
.cid-vj4ZQb3w6Y .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-vj4ZQb3w6Y .content-wrap .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ababab;
}
.cid-vj4ZQb3w6Y .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vj4ZQb3w6Y .content-wrap .title-wrapper {
  margin-bottom: 0;
}
.cid-vj4ZQb3w6Y .content-wrap .title-wrapper .title-wrap .mbr-section-title {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vj4ZQb3w6Y .content-wrap .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-vj4ZQb3w6Y .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vj4ZQb3w6Y .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-vj4ZQb3w6Y .items-wrapper {
  margin: 0 -6px;
}
.cid-vj4ZQb3w6Y .items-wrapper .item {
  padding: 0 6px;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .cid-vj4ZQb3w6Y .items-wrapper .item {
    margin-bottom: 20px;
  }
  .cid-vj4ZQb3w6Y .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vj4ZQb3w6Y .items-wrapper .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-vj4ZQb3w6Y .items-wrapper .item .item-wrapper {
    padding: 20px;
  }
}
.cid-vj4ZQb3w6Y .items-wrapper .item .item-wrapper .iconfont-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-vj4ZQb3w6Y .items-wrapper .item .item-wrapper .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vj4ZQb3w6Y .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  font-size: 48px;
  display: inline-flex;
}
.cid-vj4ZQb3w6Y .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-vj4ZQb3w6Y .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-vj4ZQb3w6Y .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-vj4ZQb3w6Y .mbr-label {
  color: #707070;
}
.cid-vj4ZQb3w6Y .mbr-section-title {
  color: #000000;
}
.cid-vj4ZQb3w6Y .mbr-section-subtitle {
  color: #707070;
}
.cid-vj4ZQb3w6Y .item-title {
  color: #000000;
}
.cid-vj4ZQb3w6Y .item-text {
  color: #707070;
}
.cid-vj4ZQb3w6Y .mbr-section-subtitle,
.cid-vj4ZQb3w6Y .subtitle-wrap {
  text-align: center;
}
.cid-vj4ZQb3w6Y .mbr-section-title,
.cid-vj4ZQb3w6Y .title-wrap {
  text-align: center;
  color: #ff9370;
}
.cid-viwxRKWKqh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-viwxRKWKqh .mbr-text {
  color: #303030;
}
.cid-viwxRKWKqh .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ttjmnoK6UH .navbar-dropdown {
  position: relative !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #000000 !important;
}
.cid-ttjmnoK6UH .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ttjmnoK6UH .dropdown-item:after {
  right: 1rem !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .dropdown-item:hover:before,
.cid-ttjmnoK6UH .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ttjmnoK6UH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjmnoK6UH .nav-link {
  position: relative;
}
.cid-ttjmnoK6UH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjmnoK6UH .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-ttjmnoK6UH .navbar-nav .nav-item {
  margin: 0;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ttjmnoK6UH .dropdown-menu,
.cid-ttjmnoK6UH .navbar.opened {
  background: #000000 !important;
}
.cid-ttjmnoK6UH .nav-item:focus,
.cid-ttjmnoK6UH .nav-link:focus {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjmnoK6UH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjmnoK6UH .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  border-bottom: 2px solid #000000 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ttjmnoK6UH .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjmnoK6UH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjmnoK6UH .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ttjmnoK6UH .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjmnoK6UH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar.collapsed {
  justify-content: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjmnoK6UH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjmnoK6UH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjmnoK6UH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjmnoK6UH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjmnoK6UH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttjmnoK6UH .navbar.navbar-short {
  min-height: 100px;
}
.cid-ttjmnoK6UH .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ttjmnoK6UH .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown-item.active,
.cid-ttjmnoK6UH .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjmnoK6UH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjmnoK6UH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjmnoK6UH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjmnoK6UH .navbar-buttons {
  text-align: center;
}
.cid-ttjmnoK6UH button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #232323;
  border-radius: 50%;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ttjmnoK6UH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ttjmnoK6UH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjmnoK6UH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttjmnoK6UH .navbar {
    height: 70px;
  }
  .cid-ttjmnoK6UH .navbar.opened {
    height: auto;
  }
  .cid-ttjmnoK6UH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjmnoK6UH .container,
.cid-ttjmnoK6UH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .container,
  .cid-ttjmnoK6UH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttjmnoK6UH .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ttjmnoK6UH .navbar-collapse {
  min-height: 98px;
}
.cid-ttjmnoK6UH .mbr-section-btn {
  max-width: 35%;
}
.cid-ttjmnoK6UH .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .navbar {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .container-fluid {
    padding: 0 7%;
  }
  .cid-ttjmnoK6UH .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-ttjmnoK6UH .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ttjmnoK6UH .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ttjmnoK6UH .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ttjmnoK6UH .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-vj58OFKQjQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-vj58OFKQjQ .img-bg-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 600px;
  padding: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-vj58OFKQjQ .img-bg-container {
    min-height: 560px;
  }
}
@media (max-width: 767px) {
  .cid-vj58OFKQjQ .img-bg-container {
    padding: 1.5rem;
  }
}
@media (max-width: 575px) {
  .cid-vj58OFKQjQ .img-bg-container {
    padding: 1rem;
  }
}
.cid-vj58OFKQjQ .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/logbook1-730x420.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
.cid-vj58OFKQjQ .img-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle farthest-corner at 0 100%, rgba(24, 24, 23, 0.9) 38%, rgba(24, 24, 23, 0.5));
}
.cid-vj58OFKQjQ .text-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-vj58OFKQjQ .mbr-section-title {
  color: #FACB1D;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-vj58OFKQjQ .mbr-text {
  color: #f6f6ef;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.cid-vj58OFKQjQ .mbr-section-btn {
  margin-top: 1rem;
}
.cid-vj58PsbZZX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-vj58PsbZZX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vj58PsbZZX .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-vj58PsbZZX .container {
    padding: 0 24px;
  }
}
.cid-vj58PsbZZX .row {
  justify-content: center;
}
.cid-vj58PsbZZX .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-vj58PsbZZX .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-vj58PsbZZX .content-wrapper {
    padding: 32px;
  }
}
.cid-vj58PsbZZX .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vj58PsbZZX .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-vj58PsbZZX .mbr-section-title {
  color: #000000;
}
.cid-vj58PsbZZX .mbr-text {
  color: #262642;
}
.cid-vj5b7epWJN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-vj5b7epWJN .mbr-fallback-image.disabled {
  display: none;
}
.cid-vj5b7epWJN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vj5b7epWJN .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vj5b7epWJN .content-wrap {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-vj5b7epWJN .content-wrap .label-wrapper {
    margin-bottom: 12px;
  }
}
.cid-vj5b7epWJN .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-vj5b7epWJN .content-wrap .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ababab;
}
.cid-vj5b7epWJN .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vj5b7epWJN .content-wrap .title-wrapper {
  margin-bottom: 0;
}
.cid-vj5b7epWJN .content-wrap .title-wrapper .title-wrap .mbr-section-title {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vj5b7epWJN .content-wrap .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-vj5b7epWJN .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vj5b7epWJN .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-vj5b7epWJN .items-wrapper {
  margin: 0 -6px;
}
.cid-vj5b7epWJN .items-wrapper .item {
  padding: 0 6px;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .cid-vj5b7epWJN .items-wrapper .item {
    margin-bottom: 20px;
  }
  .cid-vj5b7epWJN .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vj5b7epWJN .items-wrapper .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-vj5b7epWJN .items-wrapper .item .item-wrapper {
    padding: 20px;
  }
}
.cid-vj5b7epWJN .items-wrapper .item .item-wrapper .iconfont-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-vj5b7epWJN .items-wrapper .item .item-wrapper .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vj5b7epWJN .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  font-size: 48px;
  display: inline-flex;
}
.cid-vj5b7epWJN .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-vj5b7epWJN .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-vj5b7epWJN .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-vj5b7epWJN .mbr-label {
  color: #707070;
}
.cid-vj5b7epWJN .mbr-section-title {
  color: #000000;
}
.cid-vj5b7epWJN .mbr-section-subtitle {
  color: #707070;
}
.cid-vj5b7epWJN .item-title {
  color: #000000;
}
.cid-vj5b7epWJN .item-text {
  color: #707070;
}
.cid-vj5b7epWJN .mbr-section-subtitle,
.cid-vj5b7epWJN .subtitle-wrap {
  text-align: center;
}
.cid-vj5b7epWJN .mbr-section-title,
.cid-vj5b7epWJN .title-wrap {
  text-align: center;
  color: #ff9370;
}
.cid-viwxRKWKqh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-viwxRKWKqh .mbr-text {
  color: #303030;
}
.cid-viwxRKWKqh .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ttjmnoK6UH .navbar-dropdown {
  position: relative !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #000000 !important;
}
.cid-ttjmnoK6UH .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ttjmnoK6UH .dropdown-item:after {
  right: 1rem !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .dropdown-item:hover:before,
.cid-ttjmnoK6UH .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ttjmnoK6UH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjmnoK6UH .nav-link {
  position: relative;
}
.cid-ttjmnoK6UH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjmnoK6UH .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-ttjmnoK6UH .navbar-nav .nav-item {
  margin: 0;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ttjmnoK6UH .dropdown-menu,
.cid-ttjmnoK6UH .navbar.opened {
  background: #000000 !important;
}
.cid-ttjmnoK6UH .nav-item:focus,
.cid-ttjmnoK6UH .nav-link:focus {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjmnoK6UH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjmnoK6UH .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  border-bottom: 2px solid #000000 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ttjmnoK6UH .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjmnoK6UH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjmnoK6UH .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ttjmnoK6UH .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjmnoK6UH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar.collapsed {
  justify-content: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjmnoK6UH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjmnoK6UH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjmnoK6UH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjmnoK6UH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjmnoK6UH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttjmnoK6UH .navbar.navbar-short {
  min-height: 100px;
}
.cid-ttjmnoK6UH .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ttjmnoK6UH .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown-item.active,
.cid-ttjmnoK6UH .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjmnoK6UH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjmnoK6UH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjmnoK6UH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjmnoK6UH .navbar-buttons {
  text-align: center;
}
.cid-ttjmnoK6UH button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #232323;
  border-radius: 50%;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ttjmnoK6UH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ttjmnoK6UH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjmnoK6UH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttjmnoK6UH .navbar {
    height: 70px;
  }
  .cid-ttjmnoK6UH .navbar.opened {
    height: auto;
  }
  .cid-ttjmnoK6UH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjmnoK6UH .container,
.cid-ttjmnoK6UH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .container,
  .cid-ttjmnoK6UH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttjmnoK6UH .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ttjmnoK6UH .navbar-collapse {
  min-height: 98px;
}
.cid-ttjmnoK6UH .mbr-section-btn {
  max-width: 35%;
}
.cid-ttjmnoK6UH .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .navbar {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .container-fluid {
    padding: 0 7%;
  }
  .cid-ttjmnoK6UH .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-ttjmnoK6UH .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ttjmnoK6UH .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ttjmnoK6UH .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ttjmnoK6UH .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-vj5iL13ZuL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-vj5iL13ZuL .img-bg-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 600px;
  padding: 3rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-vj5iL13ZuL .img-bg-container {
    min-height: 560px;
  }
}
@media (max-width: 767px) {
  .cid-vj5iL13ZuL .img-bg-container {
    padding: 1.5rem;
  }
}
@media (max-width: 575px) {
  .cid-vj5iL13ZuL .img-bg-container {
    padding: 1rem;
  }
}
.cid-vj5iL13ZuL .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/tips-for-drivers-820x420.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
.cid-vj5iL13ZuL .img-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle farthest-corner at 0 100%, rgba(24, 24, 23, 0.9) 38%, rgba(24, 24, 23, 0.5));
}
.cid-vj5iL13ZuL .text-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-vj5iL13ZuL .mbr-section-title {
  color: #FACB1D;
  margin-bottom: 1rem;
  text-align: left;
}
.cid-vj5iL13ZuL .mbr-text {
  color: #f6f6ef;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.cid-vj5iL13ZuL .mbr-section-btn {
  margin-top: 1rem;
}
.cid-vj5iMtZ8cH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-vj5iMtZ8cH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vj5iMtZ8cH .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-vj5iMtZ8cH .container {
    padding: 0 24px;
  }
}
.cid-vj5iMtZ8cH .row {
  justify-content: center;
}
.cid-vj5iMtZ8cH .content-wrapper {
  border-radius: 40px;
  background-color: #f3f4f7;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-vj5iMtZ8cH .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-vj5iMtZ8cH .content-wrapper {
    padding: 32px;
  }
}
.cid-vj5iMtZ8cH .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vj5iMtZ8cH .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-vj5iMtZ8cH .mbr-section-title {
  color: #000000;
}
.cid-vj5iMtZ8cH .mbr-text {
  color: #262642;
}
.cid-vj5iNl1OOA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-vj5iNl1OOA .mbr-fallback-image.disabled {
  display: none;
}
.cid-vj5iNl1OOA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vj5iNl1OOA .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vj5iNl1OOA .content-wrap {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-vj5iNl1OOA .content-wrap .label-wrapper {
    margin-bottom: 12px;
  }
}
.cid-vj5iNl1OOA .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-vj5iNl1OOA .content-wrap .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ababab;
}
.cid-vj5iNl1OOA .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vj5iNl1OOA .content-wrap .title-wrapper {
  margin-bottom: 0;
}
.cid-vj5iNl1OOA .content-wrap .title-wrapper .title-wrap .mbr-section-title {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vj5iNl1OOA .content-wrap .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-vj5iNl1OOA .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
  display: block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vj5iNl1OOA .content-wrap .title-wrapper .subtitle-wrap .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-vj5iNl1OOA .items-wrapper {
  margin: 0 -6px;
}
.cid-vj5iNl1OOA .items-wrapper .item {
  padding: 0 6px;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .cid-vj5iNl1OOA .items-wrapper .item {
    margin-bottom: 20px;
  }
  .cid-vj5iNl1OOA .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vj5iNl1OOA .items-wrapper .item .item-wrapper {
  height: 100%;
  background-color: #ffffff;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-vj5iNl1OOA .items-wrapper .item .item-wrapper {
    padding: 20px;
  }
}
.cid-vj5iNl1OOA .items-wrapper .item .item-wrapper .iconfont-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-vj5iNl1OOA .items-wrapper .item .item-wrapper .iconfont-wrapper {
    margin-bottom: 20px;
  }
}
.cid-vj5iNl1OOA .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  font-size: 48px;
  display: inline-flex;
}
.cid-vj5iNl1OOA .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-vj5iNl1OOA .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-vj5iNl1OOA .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-vj5iNl1OOA .mbr-label {
  color: #707070;
}
.cid-vj5iNl1OOA .mbr-section-title {
  color: #000000;
}
.cid-vj5iNl1OOA .mbr-section-subtitle {
  color: #707070;
}
.cid-vj5iNl1OOA .item-title {
  color: #000000;
}
.cid-vj5iNl1OOA .item-text {
  color: #707070;
}
.cid-vj5iNl1OOA .mbr-section-subtitle,
.cid-vj5iNl1OOA .subtitle-wrap {
  text-align: center;
}
.cid-vj5iNl1OOA .mbr-section-title,
.cid-vj5iNl1OOA .title-wrap {
  text-align: center;
  color: #ff9370;
}
.cid-viwxRKWKqh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-viwxRKWKqh .mbr-text {
  color: #303030;
}
.cid-viwxRKWKqh .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-ttjmnoK6UH .navbar-dropdown {
  position: relative !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #000000 !important;
}
.cid-ttjmnoK6UH .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ttjmnoK6UH .dropdown-item:after {
  right: 1rem !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .dropdown-item:hover:before,
.cid-ttjmnoK6UH .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ttjmnoK6UH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjmnoK6UH .nav-link {
  position: relative;
}
.cid-ttjmnoK6UH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjmnoK6UH .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-ttjmnoK6UH .navbar-nav .nav-item {
  margin: 0;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ttjmnoK6UH .dropdown-menu,
.cid-ttjmnoK6UH .navbar.opened {
  background: #000000 !important;
}
.cid-ttjmnoK6UH .nav-item:focus,
.cid-ttjmnoK6UH .nav-link:focus {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjmnoK6UH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjmnoK6UH .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  border-bottom: 2px solid #000000 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ttjmnoK6UH .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjmnoK6UH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjmnoK6UH .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ttjmnoK6UH .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjmnoK6UH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar.collapsed {
  justify-content: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjmnoK6UH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.3rem);
  }
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjmnoK6UH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjmnoK6UH .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-ttjmnoK6UH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjmnoK6UH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjmnoK6UH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjmnoK6UH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttjmnoK6UH .navbar.navbar-short {
  min-height: 100px;
}
.cid-ttjmnoK6UH .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ttjmnoK6UH .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown-item.active,
.cid-ttjmnoK6UH .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjmnoK6UH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjmnoK6UH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjmnoK6UH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjmnoK6UH .navbar-buttons {
  text-align: center;
}
.cid-ttjmnoK6UH button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #232323;
  border-radius: 50%;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #232323;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ttjmnoK6UH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ttjmnoK6UH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjmnoK6UH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttjmnoK6UH .navbar {
    height: 70px;
  }
  .cid-ttjmnoK6UH .navbar.opened {
    height: auto;
  }
  .cid-ttjmnoK6UH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjmnoK6UH .container,
.cid-ttjmnoK6UH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .container,
  .cid-ttjmnoK6UH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttjmnoK6UH .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ttjmnoK6UH .navbar-collapse {
  min-height: 98px;
}
.cid-ttjmnoK6UH .mbr-section-btn {
  max-width: 35%;
}
.cid-ttjmnoK6UH .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .navbar {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .container-fluid {
    padding: 0 7%;
  }
  .cid-ttjmnoK6UH .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-ttjmnoK6UH .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ttjmnoK6UH .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ttjmnoK6UH .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ttjmnoK6UH .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-vj5kOt8JIn {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-vj5kOt8JIn .mbr-fallback-image.disabled {
  display: none;
}
.cid-vj5kOt8JIn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vj5kOt8JIn .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vj5kOt8JIn .content-wrap {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-vj5kOt8JIn .content-wrap .label-wrapper {
    margin-bottom: 12px;
  }
}
.cid-vj5kOt8JIn .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-vj5kOt8JIn .content-wrap .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ababab;
}
.cid-vj5kOt8JIn .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vj5kOt8JIn .content-wrap .title-wrapper {
  margin-bottom: 0;
}
.cid-vj5kOt8JIn .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vj5kOt8JIn .content-wrap .main-btn {
    margin-top: 10px;
  }
}
.cid-vj5kOt8JIn .items-wrapper {
  margin: 0 -6px;
}
.cid-vj5kOt8JIn .items-wrapper .item {
  padding: 0 6px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-vj5kOt8JIn .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vj5kOt8JIn .items-wrapper .item:hover .item-wrapper .item-img img,
.cid-vj5kOt8JIn .items-wrapper .item:focus .item-wrapper .item-img img {
  transform: scale(1.1);
}
.cid-vj5kOt8JIn .items-wrapper .item .item-wrapper {
  height: 100%;
}
.cid-vj5kOt8JIn .items-wrapper .item .item-wrapper .item-img {
  overflow: hidden;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-vj5kOt8JIn .items-wrapper .item .item-wrapper .item-img {
    margin-bottom: 20px;
  }
}
.cid-vj5kOt8JIn .items-wrapper .item .item-wrapper .item-img img {
  height: 310px;
  width: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-vj5kOt8JIn .items-wrapper .item .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-vj5kOt8JIn .items-wrapper .item .item-wrapper .card-box .item-date {
  margin-bottom: 16px;
}
.cid-vj5kOt8JIn .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-vj5kOt8JIn .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-vj5kOt8JIn .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-vj5kOt8JIn .mbr-label {
  color: #707070;
}
.cid-vj5kOt8JIn .mbr-section-title {
  color: #000000;
}
.cid-vj5kOt8JIn .item-date {
  color: #707070;
}
.cid-vj5kOt8JIn .item-title {
  color: #000000;
}
.cid-vj5kOt8JIn .item-text {
  color: #fff6be;
}
.cid-vj5kOt8JIn .main-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vj5kOt8JIn .main-btn {
    text-align: left;
  }
}
.cid-vj5kOt8JIn .mbr-section-title,
.cid-vj5kOt8JIn .main-btn {
  color: #ff9370;
}
.cid-vj5kOt8JIn .item-title,
.cid-vj5kOt8JIn .item-btn {
  color: #fff6be;
}
.cid-vj5mJVwyda {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-vj5mJVwyda .mbr-fallback-image.disabled {
  display: none;
}
.cid-vj5mJVwyda .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vj5mJVwyda .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vj5mJVwyda .content-wrap {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-vj5mJVwyda .content-wrap .label-wrapper {
    margin-bottom: 12px;
  }
}
.cid-vj5mJVwyda .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-vj5mJVwyda .content-wrap .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ababab;
}
.cid-vj5mJVwyda .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vj5mJVwyda .content-wrap .title-wrapper {
  margin-bottom: 0;
}
.cid-vj5mJVwyda .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vj5mJVwyda .content-wrap .main-btn {
    margin-top: 10px;
  }
}
.cid-vj5mJVwyda .items-wrapper {
  margin: 0 -6px;
}
.cid-vj5mJVwyda .items-wrapper .item {
  padding: 0 6px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-vj5mJVwyda .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vj5mJVwyda .items-wrapper .item:hover .item-wrapper .item-img img,
.cid-vj5mJVwyda .items-wrapper .item:focus .item-wrapper .item-img img {
  transform: scale(1.1);
}
.cid-vj5mJVwyda .items-wrapper .item .item-wrapper {
  height: 100%;
}
.cid-vj5mJVwyda .items-wrapper .item .item-wrapper .item-img {
  overflow: hidden;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-vj5mJVwyda .items-wrapper .item .item-wrapper .item-img {
    margin-bottom: 20px;
  }
}
.cid-vj5mJVwyda .items-wrapper .item .item-wrapper .item-img img {
  height: 310px;
  width: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-vj5mJVwyda .items-wrapper .item .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-vj5mJVwyda .items-wrapper .item .item-wrapper .card-box .item-date {
  margin-bottom: 16px;
}
.cid-vj5mJVwyda .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-vj5mJVwyda .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-vj5mJVwyda .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-vj5mJVwyda .mbr-label {
  color: #707070;
}
.cid-vj5mJVwyda .mbr-section-title {
  color: #000000;
}
.cid-vj5mJVwyda .item-date {
  color: #707070;
}
.cid-vj5mJVwyda .item-title {
  color: #000000;
}
.cid-vj5mJVwyda .item-text {
  color: #fff6be;
}
.cid-vj5mJVwyda .main-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vj5mJVwyda .main-btn {
    text-align: left;
  }
}
.cid-vj5mJVwyda .mbr-section-title,
.cid-vj5mJVwyda .main-btn {
  color: #ff9370;
}
.cid-vj5mJVwyda .item-title,
.cid-vj5mJVwyda .item-btn {
  color: #fff6be;
}
.cid-vj5pIN0XJw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-vj5pIN0XJw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vj5pIN0XJw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vj5pIN0XJw .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vj5pIN0XJw .content-wrap {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-vj5pIN0XJw .content-wrap .label-wrapper {
    margin-bottom: 12px;
  }
}
.cid-vj5pIN0XJw .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-vj5pIN0XJw .content-wrap .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ababab;
}
.cid-vj5pIN0XJw .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vj5pIN0XJw .content-wrap .title-wrapper {
  margin-bottom: 0;
}
.cid-vj5pIN0XJw .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vj5pIN0XJw .content-wrap .main-btn {
    margin-top: 10px;
  }
}
.cid-vj5pIN0XJw .items-wrapper {
  margin: 0 -6px;
}
.cid-vj5pIN0XJw .items-wrapper .item {
  padding: 0 6px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-vj5pIN0XJw .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vj5pIN0XJw .items-wrapper .item:hover .item-wrapper .item-img img,
.cid-vj5pIN0XJw .items-wrapper .item:focus .item-wrapper .item-img img {
  transform: scale(1.1);
}
.cid-vj5pIN0XJw .items-wrapper .item .item-wrapper {
  height: 100%;
}
.cid-vj5pIN0XJw .items-wrapper .item .item-wrapper .item-img {
  overflow: hidden;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-vj5pIN0XJw .items-wrapper .item .item-wrapper .item-img {
    margin-bottom: 20px;
  }
}
.cid-vj5pIN0XJw .items-wrapper .item .item-wrapper .item-img img {
  height: 310px;
  width: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-vj5pIN0XJw .items-wrapper .item .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-vj5pIN0XJw .items-wrapper .item .item-wrapper .card-box .item-date {
  margin-bottom: 16px;
}
.cid-vj5pIN0XJw .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-vj5pIN0XJw .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-vj5pIN0XJw .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-vj5pIN0XJw .mbr-label {
  color: #707070;
}
.cid-vj5pIN0XJw .mbr-section-title {
  color: #000000;
}
.cid-vj5pIN0XJw .item-date {
  color: #707070;
}
.cid-vj5pIN0XJw .item-title {
  color: #000000;
}
.cid-vj5pIN0XJw .item-text {
  color: #fff6be;
}
.cid-vj5pIN0XJw .main-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vj5pIN0XJw .main-btn {
    text-align: left;
  }
}
.cid-vj5pIN0XJw .mbr-section-title,
.cid-vj5pIN0XJw .main-btn {
  color: #ff9370;
}
.cid-vj5pIN0XJw .item-title,
.cid-vj5pIN0XJw .item-btn {
  color: #fff6be;
}
.cid-vj5rw4jA1X {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-vj5rw4jA1X .mbr-fallback-image.disabled {
  display: none;
}
.cid-vj5rw4jA1X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vj5rw4jA1X .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vj5rw4jA1X .content-wrap {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-vj5rw4jA1X .content-wrap .label-wrapper {
    margin-bottom: 12px;
  }
}
.cid-vj5rw4jA1X .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-vj5rw4jA1X .content-wrap .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ababab;
}
.cid-vj5rw4jA1X .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vj5rw4jA1X .content-wrap .title-wrapper {
  margin-bottom: 0;
}
.cid-vj5rw4jA1X .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vj5rw4jA1X .content-wrap .main-btn {
    margin-top: 10px;
  }
}
.cid-vj5rw4jA1X .items-wrapper {
  margin: 0 -6px;
}
.cid-vj5rw4jA1X .items-wrapper .item {
  padding: 0 6px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-vj5rw4jA1X .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vj5rw4jA1X .items-wrapper .item:hover .item-wrapper .item-img img,
.cid-vj5rw4jA1X .items-wrapper .item:focus .item-wrapper .item-img img {
  transform: scale(1.1);
}
.cid-vj5rw4jA1X .items-wrapper .item .item-wrapper {
  height: 100%;
}
.cid-vj5rw4jA1X .items-wrapper .item .item-wrapper .item-img {
  overflow: hidden;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-vj5rw4jA1X .items-wrapper .item .item-wrapper .item-img {
    margin-bottom: 20px;
  }
}
.cid-vj5rw4jA1X .items-wrapper .item .item-wrapper .item-img img {
  height: 310px;
  width: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-vj5rw4jA1X .items-wrapper .item .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-vj5rw4jA1X .items-wrapper .item .item-wrapper .card-box .item-date {
  margin-bottom: 16px;
}
.cid-vj5rw4jA1X .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-vj5rw4jA1X .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-vj5rw4jA1X .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-vj5rw4jA1X .mbr-label {
  color: #707070;
}
.cid-vj5rw4jA1X .mbr-section-title {
  color: #000000;
}
.cid-vj5rw4jA1X .item-date {
  color: #707070;
}
.cid-vj5rw4jA1X .item-title {
  color: #000000;
}
.cid-vj5rw4jA1X .item-text {
  color: #fff6be;
}
.cid-vj5rw4jA1X .main-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vj5rw4jA1X .main-btn {
    text-align: left;
  }
}
.cid-vj5rw4jA1X .mbr-section-title,
.cid-vj5rw4jA1X .main-btn {
  color: #ff9370;
}
.cid-vj5rw4jA1X .item-title,
.cid-vj5rw4jA1X .item-btn {
  color: #fff6be;
}
.cid-vj5sBkA2YV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #515151;
}
.cid-vj5sBkA2YV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vj5sBkA2YV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vj5sBkA2YV .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vj5sBkA2YV .content-wrap {
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .cid-vj5sBkA2YV .content-wrap .label-wrapper {
    margin-bottom: 12px;
  }
}
.cid-vj5sBkA2YV .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.cid-vj5sBkA2YV .content-wrap .label-wrapper .label-wrap .marker-wrap {
  display: inline-flex;
  width: 11px;
  height: 11px;
  min-width: 11px;
  border-radius: 100%;
  background-color: #ababab;
}
.cid-vj5sBkA2YV .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vj5sBkA2YV .content-wrap .title-wrapper {
  margin-bottom: 0;
}
.cid-vj5sBkA2YV .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vj5sBkA2YV .content-wrap .main-btn {
    margin-top: 10px;
  }
}
.cid-vj5sBkA2YV .items-wrapper {
  margin: 0 -6px;
}
.cid-vj5sBkA2YV .items-wrapper .item {
  padding: 0 6px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-vj5sBkA2YV .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vj5sBkA2YV .items-wrapper .item:hover .item-wrapper .item-img img,
.cid-vj5sBkA2YV .items-wrapper .item:focus .item-wrapper .item-img img {
  transform: scale(1.1);
}
.cid-vj5sBkA2YV .items-wrapper .item .item-wrapper {
  height: 100%;
}
.cid-vj5sBkA2YV .items-wrapper .item .item-wrapper .item-img {
  overflow: hidden;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-vj5sBkA2YV .items-wrapper .item .item-wrapper .item-img {
    margin-bottom: 20px;
  }
}
.cid-vj5sBkA2YV .items-wrapper .item .item-wrapper .item-img img {
  height: 310px;
  width: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-vj5sBkA2YV .items-wrapper .item .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-vj5sBkA2YV .items-wrapper .item .item-wrapper .card-box .item-date {
  margin-bottom: 16px;
}
.cid-vj5sBkA2YV .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 12px;
}
.cid-vj5sBkA2YV .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-vj5sBkA2YV .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 10px;
  margin-bottom: -9.6px;
}
.cid-vj5sBkA2YV .mbr-label {
  color: #707070;
}
.cid-vj5sBkA2YV .mbr-section-title {
  color: #000000;
}
.cid-vj5sBkA2YV .item-date {
  color: #707070;
}
.cid-vj5sBkA2YV .item-title {
  color: #000000;
}
.cid-vj5sBkA2YV .item-text {
  color: #fff6be;
}
.cid-vj5sBkA2YV .main-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vj5sBkA2YV .main-btn {
    text-align: left;
  }
}
.cid-vj5sBkA2YV .mbr-section-title,
.cid-vj5sBkA2YV .main-btn {
  color: #ff9370;
}
.cid-vj5sBkA2YV .item-title,
.cid-vj5sBkA2YV .item-btn {
  color: #fff6be;
}
.cid-viwxRKWKqh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-viwxRKWKqh .mbr-text {
  color: #303030;
}
.cid-viwxRKWKqh .media-container-row .mbr-text {
  color: #ffffff;
}
